中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

ElasticSearch如何使用

這篇文章主要為大家展示了“ElasticSearch如何使用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“ElasticSearch如何使用”這篇文章吧。

作為一家“創(chuàng)意+整合+營銷”的成都網(wǎng)站建設(shè)機(jī)構(gòu),我們在業(yè)內(nèi)良好的客戶口碑。創(chuàng)新互聯(lián)提供從前期的網(wǎng)站品牌分析策劃、網(wǎng)站設(shè)計、做網(wǎng)站、網(wǎng)站設(shè)計、創(chuàng)意表現(xiàn)、網(wǎng)頁制作、系統(tǒng)開發(fā)以及后續(xù)網(wǎng)站營銷運營等一系列服務(wù),幫助企業(yè)打造創(chuàng)新的互聯(lián)網(wǎng)品牌經(jīng)營模式與有效的網(wǎng)絡(luò)營銷方法,創(chuàng)造更大的價值。

1)安裝ES

下載ElasticSearch_版本號.tar.gz,官網(wǎng)上有,下載好之后。

tar -zvxf elasticsearch-1.1.0.tar.gz 
cd elasticsearch-1.1.0

 安裝一下插件,也可以不安裝,這個插件用來監(jiān)控用的

./bin/plugin -i elasticsearch/marvel/latest

 想了解這個插件可以參考官方文檔

http://www.elasticsearch.org/guide/en/marvel/current/index.html

2)執(zhí)行程序

./elasticsearch

看到以下的就表示成功了

[2014-04-09 10:12:41,414][INFO ][node                     ] [Lorna Dane] version[1.1.0], pid[839], build[2181e11/2014-03-25T15:59:51Z]
[2014-04-09 10:12:41,415][INFO ][node                     ] [Lorna Dane] initializing ...
[2014-04-09 10:12:41,431][INFO ][plugins                  ] [Lorna Dane] loaded [], sites []
[2014-04-09 10:12:44,383][INFO ][node                     ] [Lorna Dane] initialized
[2014-04-09 10:12:44,384][INFO ][node                     ] [Lorna Dane] starting ...
[2014-04-09 10:12:44,495][INFO ][transport                ] [Lorna Dane] bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/XXXXXX:9300]}
[2014-04-09 10:12:47,522][INFO ][cluster.service          ] [Lorna Dane] new_master [Lorna Dane][Ml-gTu_ZTniHR2mkpbMQ_A][XXXXX][inet[/XXXXXX:9300]], reason: zen-disco-join (elected_as_master)
[2014-04-09 10:12:47,545][INFO ][discovery                ] [Lorna Dane] elasticsearch/Ml-gTu_ZTniHR2mkpbMQ_A
[2014-04-09 10:12:47,572][INFO ][http                     ] [Lorna Dane] bound_address {inet[/0:0:0:0:0:0:0:0:9200]}, publish_address {inet[/XXXXX:9200]}
[2014-04-09 10:12:47,607][INFO ][gateway                  ] [Lorna Dane] recovered [0] indices into cluster_state
[2014-04-09 10:12:47,607][INFO ][node                     ] [Lorna Dane] started

如果想后臺運行,則執(zhí)行

./elasticsearch -d

想確認(rèn)程序是否運行,則運行

lsof -i:9200
lsof -i:9300
一個是節(jié)點對外服務(wù)端口,一個是節(jié)點間交互端口(如果有集群的話)。

3)建立集群

配置文件路徑是:

.....(你的實際路徑)/config/elasticsearch.yml

默認(rèn)是全部配置項都屏蔽的,

我修改后配置項如下:

cluster.name: ctoes   ---配置集群的名字
node.name: "QiangZiGeGe"---配置節(jié)點的名字,注意有雙引號
bootstrap.mlockall: true

 沒有提到的配置項都采用默認(rèn)值,具體參數(shù)如何設(shè)置,還需要具體情況具體分析。

修改好后,啟動es,可以看到打印的消息里有別的節(jié)點名字,就表示建立集群成功。

注意:es是自動探測局域網(wǎng)內(nèi)的同名集群節(jié)點的。 

 查看集群的狀態(tài),可以通過:

curl 'http://localhost:9200/_cluster/health?pretty'
響應(yīng)如下:
{
  "cluster_name" : "ctoes",
  "status" : "green",
  "timed_out" : false,
  "number_of_nodes" : 2,
  "number_of_data_nodes" : 2,
  "active_primary_shards" : 5,
  "active_shards" : 10,
  "relocating_shards" : 0,
  "initializing_shards" : 0,
  "unassigned_shards" : 0
}

接下來來使用一下來得到直觀感受

4)使用數(shù)據(jù)庫感受一下

創(chuàng)建索引(相當(dāng)于創(chuàng)建數(shù)據(jù)庫)

示例如下:

[deployer@XXXXXXX0013 ~]$ curl -XPUT 'http://localhost:9200/test1?pretty' -d'
> {
>  "settings":{
> "number_of_shards":2,
> "number_of_replicas":1
> }
> }
> '
{
  "acknowledged" : true
}

注意,這里的number_of_shards參數(shù)是一次性設(shè)置,設(shè)置之后永遠(yuǎn)不可以再修改的,但是number_of_replicas是可以隨后可以修改的。

上面的url里的test1其實就是建立的索引(數(shù)據(jù)庫)的名字,根據(jù)需要自己修改即可。

創(chuàng)建文檔

curl -XPUT 'http://localhost:9200/test1/table1/1' -d '
{ "first":"dewmobile",
"last":"technology",
"age":3000,
"about":"hello,world",
"interest":["basketball","music"]
}
'
響應(yīng)如下:
{"_index":"test1","_type":"table1","_id":"1","_version":1,"created":true}

表明創(chuàng)建文檔成功

test1:建立的數(shù)據(jù)庫名字

table1:建立的type名字,type與關(guān)系數(shù)據(jù)庫的table對應(yīng)

1:自己制定的文檔的主鍵,也可以不指定主鍵由數(shù)據(jù)庫自己分配。

5)安裝數(shù)據(jù)庫同步插件

由于我們的數(shù)據(jù)源是放在MongoDB中的,所以這里只講MongoDB數(shù)據(jù)源的數(shù)據(jù)同步。

插件源碼:https://github.com/richardwilly98/elasticsearch-river-mongodb/ 

MongoDB River Plugin (作者 Richard Louapre)

簡介:mongodb同步插件,mongodb必須搭成副本集的模式,因為這個插件的原理是通過定期讀取mongodb中的oplog來同步數(shù)據(jù)。

如何安裝使用呢?需要安裝2個插件

1)插件1

./plugin -install elasticsearch/elasticsearch-mapper-attachments/2.0.0

2)插件2

./bin/plugin --install com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.0

安裝過程如下:

./bin/plugin --install com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.0
-> Installing com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.0...
Trying http://download.elasticsearch.org/com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/elasticsearch-river-mongodb-2.0.0.zip...
Trying http://search.maven.org/remotecontent?filepath=com/github/richardwilly98/elasticsearch/elasticsearch-river-mongodb/2.0.0/elasticsearch-river-mongodb-2.0.0.zip...
Trying https://oss.sonatype.org/service/local/repositories/releases/content/com/github/richardwilly98/elasticsearch/elasticsearch-river-mongodb/2.0.0/elasticsearch-river-mongodb-2.0.0.zip...
Downloading .............................................................................................DONE
Installed com.github.richardwilly98.elasticsearch/elasticsearch-river-mongodb/2.0.0 into /usr/local/elasticsearch_1.1.0/elasticsearch/elasticsearch-1.1.0/plugins/river-mongodb

3)安裝elasticsearch-MySQL插件

具體請參考:

https://github.com/jprante/elasticsearch-river-jdbc可以直接下載二進(jìn)制jar包。

https://github.com/jprante/elasticsearch-river-jdbc

 4)安裝mysql驅(qū)動jar包(必須!)

這樣,插件就裝好了。

6)使用插件告知ES添加監(jiān)聽數(shù)據(jù)庫任務(wù)

模板如下:

curl -XPUT localhost:9200/_river/mongo_resource/_meta -d '
{
"type":"mongodb",
"mongodb":{
"servers":
[{"host":"10.XX.XX.XX","port":"60004"}
],
"db":"zapya_api",
"collection":"resources"
},
"index":{
"name":"mongotest",
"type":"resources"
}}'

 如果看到下面的內(nèi)容表示創(chuàng)建成功

{"_index":"_river","_type":"mongodb","_id":"_meta","_version":1,"created":true}

 然后,數(shù)據(jù)就導(dǎo)入到了es中了,索引建立成功。

~~~~~~~~~~~~~~~~

如果是導(dǎo)入mysql,模板如下:

[deployer@XXX0014 ~]$ curl -XPUT 'localhost:9200/_river/my_jdbc_river/_meta' -d '{
> "type":"jdbc",
> "jdbc":{
> "url":"jdbc:mysql://localhost:3306/fastooth",
> "user":"XXX",
> "password":"XXX",
> "sql":"select *,base62Decode(display_name) as name from users"
> }
> }
> '

 更詳細(xì)的是:

{
    "jdbc" :{
        "strategy" : "simple",
        "url" : null,
        "user" : null,
        "password" : null,
        "sql" : null,
        "schedule" : null,
        "poolsize" : 1,
        "rounding" : null,
        "scale" : 2,
        "autocommit" : false,
        "fetchsize" : 10, /* Integer.MIN for MySQL */
        "max_rows" : 0,
        "max_retries" : 3,
        "max_retries_wait" : "30s",
        "locale" : Locale.getDefault().toLanguageTag(),
        "index" : "jdbc",
        "type" : "jdbc",
        "bulk_size" : 100,
        "max_bulk_requests" : 30,
        "bulk_flush_interval" : "5s",
        "index_settings" : null,
        "type_mapping" : null
    }
}

對于schedule參數(shù):設(shè)置調(diào)度時刻的

格式參考:http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

http://elasticsearch-users.115913.n3.nabble.com/Ann-JDBC-River-Plugin-for-ElasticSearch-td4019418.html

http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

https://github.com/jprante/elasticsearch-river-jdbc/issues/186

官方文檔:

http://elasticsearch-users.115913.n3.nabble.com/Ann-JDBC-River-Plugin-for-ElasticSearch-td4019418.html

https://github.com/jprante/elasticsearch-river-jdbc/wiki/JDBC-River-parameters

https://github.com/jprante/elasticsearch-river-jdbc/wiki/Quickstart(包含如何刪除任務(wù))

附錄:http://my.oschina.net/wenhaowu/blog/215219#OSC_h3_7 

測試過程中,會出現(xiàn)錯誤:

[7]: index [yyyy], type [rrrr], id [1964986], message [RemoteTransportException[[2sdfsdf][inet[/xxxxxxxxxx:9300]][bulk/shard]]; nested: EsRejectedExecutionException[rejected execution (queue capacity 50) on org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction$1@3e82ee89]; ]

修改配置文件,在最后增加:

threadpool:
    bulk:
        type: fixed
        size: 60
        queue_size: 1000

至于這幾個參數(shù)是什么意思,還請讀者自己去弄明白。

參考:

http://stackoverflow.com/questions/20683440/elasticsearch-gives-error-about-queue-size

http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-threadpool.html

~~~~~~~~~~~~~~~

關(guān)于客戶端,我們使用了Play框架,正如數(shù)據(jù)庫都需要驅(qū)動包一樣,我們從官方網(wǎng)站上看到了這個

https://github.com/cleverage/play2-elasticsearch

關(guān)于中文分詞,可以嘗試使用Ansj.

~~~~~~~~~~~~~~~~~~~~~

關(guān)于創(chuàng)建索引:

curl -i -XPUT  'XXX:9200/fasth' -d '
{
   "settings" :
   {
      "number_of_shards" : 3 ,
      "number_of_replicas" : 1
   }
  
}
'

~~~~~~~~~~~

創(chuàng)建映射

curl -i -XPUT  'http://localhost:9200/fa/users/_mapping' -d '
{

 "properties":
 {
  "_id":
  { 
  "type":"string",
  "index":"not_analyzed"
  },
  "name":
  {
  "type":"string"
  },
  "gender":
  {
  "type":"string",
  "index":"not_analyzed"
  },
  "primary_avatar":
  {
  "type":"string",
  "index":"not_analyzed"
  },
  "signature":
  {
  "type":"string",
  "index":"not_analyzed"
  }
 }

}
'


 

全量任務(wù):

curl -XPUT  'xxx:9200/_river/mysql_users/_meta' -d '
{
 "type":"jdbc",
 "jdbc":
 {
 "url":"jdbc:mysql://XXX:3306/fastooth",
 "user":"XXX",
 "password":"XXX",
 "sql":"select distinct _id,base62Decode(display_name) as name,gender,primary_avatar,signature from users",
 "index":"XXX",
 "type":"XXX"
 }
}
'

以上是“ElasticSearch如何使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

文章名稱:ElasticSearch如何使用
本文URL:http://www.rwnh.cn/article48/jiecep.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)手機(jī)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站、營銷型網(wǎng)站建設(shè)網(wǎng)站策劃、企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁設(shè)計
长白| 呼和浩特市| 葫芦岛市| 铅山县| 贡山| 马尔康县| 丰县| 攀枝花市| 綦江县| 沐川县| 松滋市| 汾阳市| 蓬溪县| 祁东县| 锡林郭勒盟| 宣武区| 宣武区| 霞浦县| 潢川县| 保康县| 南陵县| 云浮市| 黄梅县| 昌图县| 德钦县| 东辽县| 伊川县| 山西省| 芒康县| 永嘉县| 南充市| 云阳县| 安平县| 巩义市| 神木县| 蒙自县| 锡林浩特市| 大城县| 内江市| 攀枝花市| 邵武市|