91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ElasticSearch如何使用

發布時間:2021-12-04 15:07:22 來源:億速云 閱讀:179 作者:小新 欄目:云計算

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

1)安裝ES

下載ElasticSearch_版本號.tar.gz,官網上有,下載好之后。

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

 安裝一下插件,也可以不安裝,這個插件用來監控用的

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

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

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

2)執行程序

./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

如果想后臺運行,則執行

./elasticsearch -d

想確認程序是否運行,則運行

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

3)建立集群

配置文件路徑是:

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

默認是全部配置項都屏蔽的,

我修改后配置項如下:

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


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

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

注意:es是自動探測局域網內的同名集群節點的。 

 查看集群的狀態,可以通過:

curl 'http://localhost:9200/_cluster/health?pretty'
響應如下:
{
  "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)使用數據庫感受一下

創建索引(相當于創建數據庫)

示例如下:

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

注意,這里的number_of_shards參數是一次性設置,設置之后永遠不可以再修改的,但是number_of_replicas是可以隨后可以修改的。

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

創建文檔

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

表明創建文檔成功

test1:建立的數據庫名字

table1:建立的type名字,type與關系數據庫的table對應

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

5)安裝數據庫同步插件

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

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

MongoDB River Plugin (作者 Richard Louapre)

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

如何安裝使用呢?需要安裝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可以直接下載二進制jar包。

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

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

這樣,插件就裝好了。

6)使用插件告知ES添加監聽數據庫任務

模板如下:

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"
}}'

 如果看到下面的內容表示創建成功

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

 然后,數據就導入到了es中了,索引建立成功。

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

如果是導入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"
> }
> }
> '

 更詳細的是:

{
    "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參數:設置調度時刻的

格式參考: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(包含如何刪除任務)

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

測試過程中,會出現錯誤:

[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

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

參考:

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

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

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

關于客戶端,我們使用了Play框架,正如數據庫都需要驅動包一樣,我們從官方網站上看到了這個

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

關于中文分詞,可以嘗試使用Ansj.

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

關于創建索引:

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

~~~~~~~~~~~

創建映射

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"
  }
 }

}
'


 

全量任務:

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如何使用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

教育| 成武县| 禄劝| 桦南县| 泰州市| 阿荣旗| 巴林左旗| 山阳县| 宜阳县| 墨脱县| 中方县| 河曲县| 平顶山市| 克山县| 惠安县| 敦煌市| 新泰市| 龙州县| 田林县| 工布江达县| 九台市| 阿拉善左旗| 双桥区| 乡城县| 大埔县| 新兴县| 仪征市| 平潭县| 伊通| 普安县| 潍坊市| 扎鲁特旗| 石景山区| 什邡市| 珲春市| 建湖县| 沿河| 洪泽县| 长武县| 东海县| 云浮市|