1.ES的安装与环境配置
首先请先去了解下ES的一些基本概念:cluster,node,index,shard,replica shard,plugin,river;这里就不一一赘述了。
ES的安装很简单:
– 确保机器上已经安装了JDK7以上版本
– 下载:官网下载地址:https://www.elastic.co/downloads/elasticsearch
– 将下载后的文件解压到/opt/eshome(默认的es home,可更改)
– 进入到bin文件夹下,执行“./elasticsearch -d”(-d表示在后台执行)
安装结束后,访问 http://ip:9200/,出现下面的返回结果。默认的cluster名为elasticsearch
{ "status" : 200,
"name" : "test_node_196",
"cluster_name" : " test_cluster1",
"version" : {
"number" : "1.7.0",
"build_hash" : "929b9739cae115e73c346cb5f9a6f24ba735a743",
"build_timestamp" : "2015-07-16T14:31:07Z",
"build_snapshot" : false,
"lucene_version" : "4.10.4"
},
"tagline" : "You Know, for Search"
} |
ES环境配置
ES的配置文件在conf/elasticsearch.yml。
master节点、data节点和river节点都在该配置文件里面配备。(river节点在后面介绍)
master节点的配备如下:
cluster.name: test_cluster1 ##cluster名
node.name: " test_node_196" ##节点名称
node.master: true ##是否是master节点 node.data: true ##该节点上是否保存数据 index.number_of_replicas: 1 ##备份的数量,这里设为1 path.data: /opt/esdata ##该节点上数据存储的path transport.tcp.port: 9300 ##tcp的端口号 http.port: 9200 ##http的端口号 discovery.zen.minimum_master_nodes: 1 discovery.zen.ping.timeout: 3s ##节点间自动发现的响应时间 discovery.zen.ping.unicast.hosts: ["localhost"] ##节点间自动发现,master节点为localhost |
data节点的配备如下
cluster.name: test_cluster1 ##cluster名,注意和master节点保持一致
node.name: " test_node_197"
node.master: false ##不是master节点 node.data: true index.number_of_replicas: 1 path.data: /opt/esdata transport.tcp.port: 9300 http.port: 9200 discovery.zen.minimum_master_nodes: 1 discovery.zen.ping.timeout: 3s ##节点间自动发现的响应时间 discovery.zen.ping.unicast.hosts: ["10.19.220.196"] ##节点间自动发现,这里要写master节点的IP,多个要用逗号隔开 |
注意:1.为了测试,多个node可以在同一台服务器上启动,但通常一个服务器只放一个node。
2.系统启动时,node会使用广播来发现一个现有的cluster,并且试图加入该cluster
3.配置文件中的冒号后要加空格,否则启动es时会报load配置文件发生错误
4.为了防止脑裂,需要将discovery.zen.minimum_master_nodes设为[master节点数/2+1]。
关于脑裂,请参见http://blog.trifork.com/2013/10/24/how-to-avoid-the-split-brain-problem-in-elasticsearch/
5.当将一个节点的index.number_of_replicas从0变为1时,ES中现有的索引的分片仍然是没有备份的,但修改后新建的索引的分片都有一个备份
使用curl操作es
下面是一些通过curl操作es的例子,_cat用于查看,_update用于更新,_bulk用于批量操作,_search用于查询。
具体的就不一一解释了。可参见官网:https://www.elastic.co/guide/en/elasticsearch/reference/current/getting-started.html
##To check the cluster health curl 'localhost:9200/_cat/health?v' ##get a list of nodes in our cluster curl 'localhost:9200/_cat/nodes?v' ##take a peek at our indices curl 'localhost:9200/_cat/indices?v' ##create an index named "customer" curl -XPUT 'localhost:9200/customer?pretty' ##index a simple customer document into the customer index, "external" type, with an ID of 1 curl -XPUT 'localhost:9200/customer/external/1?pretty'-d ' { "name": "John Doe" }' ##retrieve that document curl -XGET 'localhost:9200/customer/external/1?pretty' ##delete the index curl -XDELETE 'localhost:9200/bankfortest?pretty' ##update our previous document curl -XPOST 'localhost:9200/customer/external/1/_update?pretty'-d ' { "doc": { "name": "Jane Doe", "age": 20 } }' ##注意:要运行下面的语句,需要在配置文件中加上“script.disable_dynamic: false” curl -XPOST 'localhost:9200/customer/external/1/_update?pretty'-d ' { "script" : "ctx._source.age += 5" }' ##delete multiple documents that match a query condition curl -XDELETE 'localhost:9200/customer/external/_query?pretty'-d ' { "query": { "match": { "name": "John" } } }' ##批量操作 curl -XPOST 'localhost:9200/customer/external/_bulk?pretty'-d ' {"index":{"_id":"5"}} {"name": "John Doe" } {"index":{"_id":"6"}} {"name": "Jane Doe" } ' curl -XPOST 'localhost:9200/customer/external/_bulk?pretty'-d ' {"update":{"_id":"1"}} {"doc": { "name": "John Doe becomes Jane Doe" } } {"delete":{"_id":"2"}} ' curl -XPOST 'localhost:9200/bankfortest/account/_bulk?pretty' --data-binary @accounts.json ##查询 curl 'localhost:9200/bank/_search?q=*&pretty' curl -XPOST 'localhost:9200/bank/_search?pretty'-d ' { "query": { "match_all": {} } }' curl -XPOST 'localhost:9200/bank/_search?pretty' -d ' { "query": { "match_all": {} },
"_source": ["account_number", "balance"]
}' curl -XPOST 'localhost:9200/bank/_search?pretty' -d ' { "query": { "match": { "account_number": 20 } }
}' |
2.常用的插件head,bigdesk,essql
首先请到官网上下载这些插件,安装指令如下:
bin/plugin --url file:///path/to/plugin --install plugin-name |
head插件相当于es的一个管理控制台,可以看到es中节点、数据等内容
访问地址:http://ip:9600/_plugin/head/
bigdesk插件相当于一个es的监控插件,访问地址http://ip:9200/_plugin/bigdesk/
essql插件是一个sql插件,你可以使用普通sql语句去访问es里面的数据。
访问地址:http://ip:9200/_plugin/essql/
3.从es中读取数据
es中数据读取有两种方法:一种是通过restful API,一种是通过TransportClient,这里主要介绍第二种方式,效率更高,更易编码。
下面是一些简单的增删改查的例子。
(具体的ES的Java API请参照官网https://www.elastic.co/guide/en/elasticsearch/client/java-api/current/java-api.html)
public class EsIndexTest {
public static Client client;
@Before
public void init() {
TransportClient transportClient = new TransportClient();
Settings settings = ImmutableSettings.settingsBuilder().put( "cluster.name" , " test_cluster1" ).build();
transportClient = new TransportClient(settings);
//这里的端口号要与配置文件中的transport.tcp.port保持一致,否则会出现NoNodeAvailableException
client = transportClient.addTransportAddress( new InetSocketTransportAddress(
"10.19.220.196" , 9300 ));
}
public static DateTimeFormatter dateFormatter = DateTimeFormat.forPattern(
"yyyy-MM-dd'T'HH:mm:ss.SSS" ).withZone(
DateTimeZone.forOffsetHours( 8 ));
public static String obj2JsonData() {
String jsonData = null ;
try {
// 使用XContentBuilder创建json数据
Date date = new Date();
//Gson gson = new Gson();
//System.err.println("date-->" + gson.toJson(date));
XContentBuilder jsonBuilder = XContentFactory.jsonBuilder();
jsonBuilder
.startObject()
.field( "id" , 78 )
.field( "name" , " test" )
.field( "funciton" , date, dateFormatter)
.endObject();
jsonData = jsonBuilder.string();
System.out.println(jsonData);
} catch (IOException e) {
e.printStackTrace();
}
return jsonData;
}
@Test
//创建一个index,并向里面写入json数据
public void createIndexResponse() {
String jsonData = obj2JsonData();
IndexRequestBuilder ib = client.prepareIndex( "bank2" , "account2" ).setSource(
jsonData);
IndexResponse response = ib.execute().actionGet();
// Index name
String _index = response.getIndex();
System.out.println(_index);
// Type name
String _type = response.getType();
System.out.println(_type);
// Document ID (generated or not)
String _id = response.getId();
System.out.println(_id);
// Version (if it's the first time you index this document, you will get: 1)
long _version = response.getVersion();
System.out.println(_version);
// isCreated() is true if the document is a new one, false if it has been updated
boolean created = response.isCreated();
System.out.println(created);
}
@Test
//更新操作,为既有的index添加一列
public void testUpdateIndex() throws IOException, InterruptedException, ExecutionException{
UpdateRequest updateRequest = new UpdateRequest( "bank2" , "account2" , "AU_04YOqvDFJcKoDMaDT" )
.doc(XContentFactory.jsonBuilder()
.startObject()
.field( "gender" , "male" )
.endObject());
client.update(updateRequest).get();
/*IndexRequest indexRequest = new IndexRequest("bank2", "account2", "2")
.source(XContentFactory.jsonBuilder()
.startObject()
.field("name", "Joe Smith")
//.field("gender", "male")
.endObject());
UpdateRequest updateRequest = new UpdateRequest("bank2", "account2", "2")
.doc(XContentFactory.jsonBuilder()
.startObject()
.field("gender", "female")
.endObject())
.upsert(indexRequest);
client.update(updateRequest).get();*/
}
@Test
//查询
public void testSearchIndex(){
SearchResponse response = client.prepareSearch( "bankfortest" )
.setTypes( "account" )
.setSearchType(SearchType.DFS_QUERY_THEN_FETCH)
.setQuery(QueryBuilders.termQuery( "lastname" , "fox" )) // Query
.setFrom( 0 ).setSize( 10 ).setExplain( true ).execute().actionGet();
SearchHits hits = response.getHits();
System.out.println(hits.getTotalHits());
for ( int i = 0 ; i < hits.getHits().length; i++) {
System.out.println(hits.getHits()[i].getSourceAsString());
}
}
@Test
//删除一条记录
public void testDeleteIndex(){
DeleteResponse response = client.prepareDelete( "bank1" , "account1" , "AU_02Z00vDFJcKoDMaDS" )
.execute()
.actionGet();
}
} |
相关推荐
在本篇文章中,我们将深入探讨如何搭建Spring Data ElasticSearch环境,并了解如何使用注解来建立Java对象与Elasticsearch文档之间的映射关系。 1. **映射类**: 映射类是Spring Data ElasticSearch的核心概念,它...
本文档提供了ElasticSearch的详细安装说明,包括Head、和IK分词插件。 1、安装ElasticSearch 安装ElasticSearch的前提条件:JDK1.8及以上 ElasticSearch安装文件的下载地址为 ...
在本文中,我们将深入探讨如何搭建Elasticsearch集群以及索引分片的相关概念。Elasticsearch是一个分布式的、实时的搜索和分析引擎,它能够处理大量数据并提供高效的检索服务。在多节点环境下构建Elasticsearch集群...
**Elasticsearch 开发环境搭建与 BBoss 入门教程** Elasticsearch 是一个高度可扩展的开源全文搜索引擎,设计用于快速提供近实时的搜索和分析能力。BBoss(Business Boss)是基于Elasticsearch的一个强大且灵活的...
### Elasticsearch Linux环境搭建详解 Elasticsearch是一款基于Lucene的搜索服务器,因其高效的数据检索能力,在日志处理、全文检索等方面被广泛应用。本文将详细解释如何在Linux环境下部署Elasticsearch,并解决...
### Elasticsearch搭建教程 #### 一、Elasticsearch简介与适用场景 Elasticsearch是一个基于Lucene的搜索引擎。...希望这篇教程能帮助初学者顺利搭建起自己的Elasticsearch环境,并为进一步的学习打下坚实的基础。
在本文中,我们将深入探讨如何搭建Elasticsearch的主节点,以及与之相关的配置和依赖。Elasticsearch是一个分布式、开源的搜索和分析引擎,常用于实时数据分析和大规模日志处理。在这个场景中,我们专注于搭建一个由...
Elasticsearch搭建文档 Elasticsearch是一个基于Apache Lucene的搜索和数据分析引擎。下面我们将从头开始搭建一个Elasticsearch系统,并讨论其安装、配置和运行过程。 1. Elasticsearch的安装 Elasticsearch的...
### ELK环境搭建知识点详解 #### 一、Virtualbox/Vagrant安装 在搭建ELK环境时,使用虚拟化工具如...这些知识点覆盖了从环境准备、安装配置到具体的应用场景配置等方面,旨在帮助读者全面理解ELK栈的搭建与使用过程。
搭建Elasticsearch环境是使用其进行数据索引、检索等操作的前提。 在Windows系统中,可通过下载ZIP格式的压缩包来安装Elasticsearch,解压后直接运行bin目录下的elasticsearch.bat即可启动服务。而在Linux系统中,...
Elasticsearch 是一个分布式、高扩展、高实时的搜索与数据分析引擎。它能很方便的使大量数据具有搜索、分析和探索的能力。充分利用Elasticsearch的水平伸缩性,能使数据在生产环境变得更有价值。Elasticsearch 的...
**Elasticsearch与Kibana环境安装** 在安装Elasticsearch和Kibana之前,确保你的Linux环境已经安装了Java Development Kit (JDK)。Elasticsearch和Kibana都需要JDK来运行。接下来,你需要下载对应的安装包,这里是...
搭建Elasticsearch-Kibana环境是IT运维和数据开发领域的一个常见任务,用于实现数据的存储、检索和可视化。Elasticsearch 是一个高度可扩展的开源全文搜索引擎,基于Apache Lucene构建,并且能够在大数据量下提供...
本文详细介绍了如何在新主机上进行 Elasticsearch 集群的搭建,包括配置文件的迁移与调整、集群构建与测试、解决索引断裂问题等关键步骤。通过本文的操作指南,可以快速完成 Elasticsearch 集群的部署,并解决常见的...
总之,"elasticsearch服务器安装包"提供了搭建Elasticsearch环境的基础,通过解压、配置、启动和管理,你可以构建一个功能强大的搜索和分析平台。同时,配合Kibana和Logstash等工具,能够构建完整的ELK(Elastic...
通过以上步骤,你可以在Windows环境中搭建一套完整的Elasticsearch、Kibana和IK分词器的系统,用于数据的存储、检索和可视化。这个组合对于日志分析、全文搜索、大数据处理等场景非常实用。记得在实际使用中根据需求...
Elasticsearch 7.12.1 是一个强大的开源全文搜索引擎,它基于 Lucene 库进行构建,提供了分布式、...同时,持续关注官方更新和社区资源,确保分词器与 Elasticsearch 的最新版本保持兼容,是维护高效搜索系统的关键。