Elastic Stack 7 : Elasticsearch インストール2021/06/22 |
全文検索エンジン Elasticsearch をインストールします。
|
|
[1] | Elasticsearch をインストールして起動します。 Java のインストールは不要になりました。Elasticsearch に統合されています。 |
[root@dlp ~]#
cat > /etc/yum.repos.d/elasticsearch.repo <<EOF
[elasticsearch-7.x] name=Elasticsearch repository for 7.x packages baseurl=https://artifacts.elastic.co/packages/7.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md EOF
[root@dlp ~]#
dnf -y install elasticsearch
[root@dlp ~]#
systemctl enable --now elasticsearch
# 動作確認 [root@dlp ~]# curl http://127.0.0.1:9200 { "name" : "dlp.srv.world", "cluster_name" : "elasticsearch", "cluster_uuid" : "7qvvnLl8SueX33dp5HaGHA", "version" : { "number" : "7.13.2", "build_flavor" : "default", "build_type" : "rpm", "build_hash" : "4d960a0733be83dd2543ca018aa4ddc42e956800", "build_date" : "2021-06-10T21:01:55.251515791Z", "build_snapshot" : false, "lucene_version" : "8.8.2", "minimum_wire_compatibility_version" : "6.8.0", "minimum_index_compatibility_version" : "6.0.0-beta1" }, "tagline" : "You Know, for Search" } |
[2] |
Elasticsearch を他ホストからも利用する場合は、クラスターの設定を参照ください。
クラスター構成ではないシングルホストの場合でも、他ホストからのリクエストを受け付ける場合は、同様の設定が必要です。 |
[3] | 日本語が扱えるようにプラグインをインストールします。 |
# analysis-kuromoji インストール [root@dlp ~]# /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-kuromoji -> Installing analysis-kuromoji -> Downloading analysis-kuromoji from elastic [=================================================] 100% -> Installed analysis-kuromoji -> Please restart Elasticsearch to activate any plugins installed # インストール済みプラグイン表示 [root@dlp ~]# /usr/share/elasticsearch/bin/elasticsearch-plugin list analysis-kuromoji |
[4] | 基本的な使い方です。 まず最初に Index を作成します。RDB のデータベースに相当する概念です。 |
# Index 一覧を表示 (pretty は JSON 形式の表示を見易くするオプション) [root@dlp ~]# curl http://127.0.0.1:9200/_aliases?pretty { } # Index 作成 [root@dlp ~]# curl -X PUT "http://127.0.0.1:9200/test_index" {"acknowledged":true,"shards_acknowledged":true,"index":"test_index"} # 確認 [root@dlp ~]# curl http://127.0.0.1:9200/_aliases?pretty { "test_index" : { "aliases" : { } } }[root@dlp ~]# curl http://127.0.0.1:9200/test_index/_settings?pretty { "test_index" : { "settings" : { "index" : { "routing" : { "allocation" : { "include" : { "_tier_preference" : "data_content" } } }, "number_of_shards" : "1", "provided_name" : "test_index", "creation_date" : "1624321329152", "number_of_replicas" : "1", "uuid" : "Vh0HutpLRciaMWX3pFo7Zg", "version" : { "created" : "7130299" } } } } } |
[5] | Mapping とテストデータの投入を実行します。 Mapping は Index の構造を定義するものです。データを投入すると自動で Mapping 定義されますが、手動で定義することももちろん可能です。 |
# データ投入 [root@dlp ~]# curl -H "Content-Type: application/json" \
-X PUT "http://127.0.0.1:9200/test_index/doc01/1" -d '{ "subject" : "Test Post No.1", "description" : "This is the initial post", "content" : "This is the test message for using Elasticsearch." }' {"_index":"test_index","_type":"doc01","_id":"1","_version":1,"result":"created","_shards":{"total":2,"successful":1,"failed":0},"_seq_no":0,"_primary_term":1} # Mapping 確認 [root@dlp ~]# curl "http://127.0.0.1:9200/test_index/_mapping/?pretty" { "test_index" : { "mappings" : { "properties" : { "content" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } }, "description" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } }, "subject" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } } } } } } # データ確認 [root@dlp ~]# curl "http://127.0.0.1:9200/test_index/doc01/1?pretty" { "_index" : "test_index", "_type" : "doc01", "_id" : "1", "_version" : 1, "_seq_no" : 0, "_primary_term" : 1, "found" : true, "_source" : { "subject" : "Test Post No.1", "description" : "This is the initial post", "content" : "This is the test message for using Elasticsearch." } } # データ検索 # 例の検索条件は [description] に [initial] 含む [root@dlp ~]# curl "http://127.0.0.1:9200/test_index/doc01/_search?q=description:initial&pretty=true" { "took" : 114, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : { "value" : 1, "relation" : "eq" }, "max_score" : 0.2876821, "hits" : [ { "_index" : "test_index", "_type" : "doc01", "_id" : "1", "_score" : 0.2876821, "_source" : { "subject" : "Test Post No.1", "description" : "This is the initial post", "content" : "This is the test message for using Elasticsearch." } } ] } } |
Sponsored Link |