日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

03.德国博士练习_02_admin_cluster

發布時間:2024/2/28 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 03.德国博士练习_02_admin_cluster 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章目錄

    • 1. exercise: allocation filter
    • 2. exercise02: backup and cross-cluster search

1. exercise: allocation filter

# ** EXAM OBJECTIVE: CLUSTER ADMINISTRATION ** # GOAL: Allocate the shards in a way that satisfies a given set of # requirements # REQUIRED SETUP: /# Download the exam version of Elasticsearch # Deploy the cluster `eoc-06-cluster`, with three nodes named # `node1`, `node2`, and `node3` # Configure the Zen Discovery module of each node so that they can # communicate # Start the cluster # Create the index `hamlet-1` with two primary shards and one replica# Add some documents to `hamlet-1` by running the command below PUT hamlet-1/_doc/_bulk {"index":{"_index":"hamlet-1","_id":0}} {"line_number":"1","speaker":"BERNARDO","text_entry":"Whos there?"} {"index":{"_index":"hamlet-1","_id":1}} {"line_number":"2","speaker":"FRANCISCO","text_entry":"Nay, answer me: stand, and unfold yourself."} {"index":{"_index":"hamlet-1","_id":2}} {"line_number":"3","speaker":"BERNARDO","text_entry":"Long live the king!"} {"index":{"_index":"hamlet-1","_id":3}} {"line_number":"4","speaker":"FRANCISCO","text_entry":"Bernardo?"} {"index":{"_index":"hamlet-1","_id":4}} {"line_number":"5","speaker":"BERNARDO","text_entry":"He."}# Create the index `hamlet-2` with two primary shard and one replica # Add some documents to `hamlet-2` by running the command belowPUThamlet-2/_doc/_bulk {"index":{"_index":"hamlet-2","_id":5}} {"line_number":"6","speaker":"FRANCISCO","text_entry":"You come most carefully upon your hour."} {"index":{"_index":"hamlet-2","_id":6}} {"line_number":"7","speaker":"BERNARDO","text_entry":"Tis now struck twelve; get thee to bed, Francisco."} {"index":{"_index":"hamlet-2","_id":7}} {"line_number":"8","speaker":"FRANCISCO","text_entry":"For this relief much thanks: tis bitter cold,"} {"index":{"_index":"hamlet-2","_id":8}} {"line_number":"9","speaker":"FRANCISCO","text_entry":"And I am sick at heart."} {"index":{"_index":"hamlet-2","_id":9}} {"line_number":"10","speaker":"BERNARDO","text_entry":"Have you had quiet guard?"} PUT hamlet-1 {"settings": {"number_of_replicas": 1,"number_of_shards": 2} }PUT hamlet-2 {"settings": {"number_of_replicas": 1,"number_of_shards": 2} }

驗證

# Check that the replicas of indices `hamlet-1` and `hamlet-2` have # been allocated # Check the distribution of primary shards and replicas of indices # `hamlet-1` and `hamlet-2` across the nodes of the clusterGET _cat/shards/hamlet-1?v GET _cat/shards/hamlet-2?v # Configure `hamlet-1` to allocate both primary shards to `node2`, # using the node name # Verify the success of the last action by using the _cat API # Configure `hamlet-2` so that no primary shard is allocated to # `node3` # Verify the success of the last action by using the _cat API # Remove any allocation filter setting associated with `hamlet-1` # and `hamlet-2` PUT hamlet-1/_settings {"number_of_replicas": 0 }這里一開始眼殘,把_name看成 _node了,還是手寫了,整了半天沒有成,哎,千萬別犯這種低級錯誤啊,要相信官方,多去排查自己到底哪里出錯了。 認真仔細,可能是一個很簡單的錯誤,耽誤了你,這就是應試的心態,注意調整PUT hamlet-1/_settings {"index.routing.allocation.include._name":"node3" }PUT hamlet-2/_settings {"index.routing.allocation.exclude._name":"node3" }恢復PUT hamlet-1/_settings {"index.routing.allocation.include._name":null }PUT hamlet-2/_settings {"index.routing.allocation.exclude._name":null }

force awaness

# Let's assume that we deployed the `eoc-06-cluster` cluster across # two availability zones, named `earth` and `mars`. Add the # attribute `AZ` to the nodes configuration, and set its value # to "earth" for `node1` and `node2`, and to "mars" for `node3` # Restart the cluster # Configure the cluster to force shard allocation awareness based on # the two availability zones, and persist such configuration # across cluster restarts # Verify the success of the last action by using the _cat APIoPUT _cluster/settings {"persistent": {"cluster.routing.allocation.awareness.attributes":"AZ","cluster.routing.allocation.awareness.force.AZ.values": ["earth","mars"]} }

index-filter

# Configure the cluster to reflect a hot/warm architecture, with # `node1` as the only hot node # Configure the `hamlet-1` index to allocate its shards only to warm # nodes # Verify the success of the last action by using the _cat API \ # Remove the hot/warm shard filtering configuration from the # `hamlet-1` configuration# Let's assume that the nodes have either a "large" or "small" local # storage. Add the attribute `storage` to the nodes config, and # set its value so that `node2` is the only with a "small" # storage # Configure the `hamlet-2` index to allocate its shards only to # nodes with a large storage size # Verify the success of the last action by using the _cat API 當時把node寫成onde了,也是服了我自己了,暈,搞了半天,千萬不能急,而且盡可能從doc上復制node.attr.tempreture: hot node.attr.tempreture: warm node.attr.tempreture: warm 重啟PUT hamlet-1/_settings {"index.routing.allocation.include.tempreture":"warm" }GET _cat/shards/hamlet-1 node.attr.storage: large node.attr.storage: small node.attr.storage: large重啟PUT hamlet-2/_settings {"index.routing.allocation.include.storage":"large" }GET _cat/shards/hamlet-2

2. exercise02: backup and cross-cluster search

# ** EXAM OBJECTIVE: CLUSTER ADMINISTRATION ** # GOAL: Backup and cross-cluster search# REQUIRED SETUP: / Let’s create a one-node cluster and index some data in it. # Download the exam version of Elasticsearch # Deploy the cluster `eoc-06-original-cluster`, with one node named # `node-1` # Start the cluster # Create the index `hamlet` and add some documents by running the # following _bulk commandPUT hamlet/_doc/_bulk {"index":{"_index":"hamlet","_id":0}} {"line_number":"1","speaker":"BERNARDO","text_entry":"Whos there?"} {"index":{"_index":"hamlet","_id":1}} {"line_number":"2","speaker":"FRANCISCO","text_entry":"Nay, answer me: stand, and unfold yourself."} {"index":{"_index":"hamlet","_id":2}} {"line_number":"3","speaker":"BERNARDO","text_entry":"Long live the king!"} {"index":{"_index":"hamlet","_id":3}} {"line_number":"4","speaker":"FRANCISCO","text_entry":"Bernardo?"} {"index":{"_index":"hamlet","_id":4}} {"line_number":"5","speaker":"BERNARDO","text_entry":"He."}

題目一

# Configure `node-1` to support a shared file system repository for # backups located in # (i) "[home_folder]/repo" and # (ii) "[home_folder]/elastic/repo" - e.g., "glc/elastic/repo" # Create the `hamlet_backup` shared file system repository in # "[home_folder]/elastic/repo" # Create a snapshot of the `hamlet` index, so that the snapshot # (i) is named `hamlet_snapshot_1`, # (ii) is stored into `hamlet_backup` # Delete the index `hamlet` # Restore the index `hamlet` using `hamlet_snapshot_1`

題解

mkdir repo mkdir -p elastic/repoyml中設置 path.repo: ["/home/deploy/search/log-manager/germany/single-node01/elasticsearch-7.2.0/repo","/home/deploy/search/log-manager/germany/single-node01/elasticsearch-7.2.0/elastic/repo"]下面均為kibana操作PUT _snapshot/hamlet_backup {"type": "fs","settings": {"location": "/home/deploy/search/log-manager/germany/single-node01/elasticsearch-7.2.0/elastic/repo"} }PUT _snapshot/hamlet_backup/hamlet_snapshot_1 {"indices": "hamlet" }GET _cat/indices/*GET _snapshot/hamlet_backup/*DELETE hamletPOST _snapshot/hamlet_backup/hamlet_snapshot_1/_restoreGET hamlet/_count

題目二

# Deploy a second cluster `eoc-06-adaptation-cluster`, with one node # named `node-2` # Start the cluster # Create the index `hamlet-pirate` on `node-2` and add documents # using the _bulk command PUT hamlet-pirate/_doc/_bulk {"index":{"_index":"hamlet-pirate","_id":5}} {"line_number":"6","speaker":"FRANCISCO","text_entry":"Ahoy Matey! Ye come most carefully upon yer hour."} {"index":{"_index":"hamlet-pirate","_id":6}} {"line_number":"7","speaker":"BERNARDO","text_entry":"Aye! Tis now struck twelve; get ye to bed, Francisco."} {"index":{"_index":"hamlet-pirate","_id":7}} {"line_number":"8","speaker":"FRANCISCO","text_entry":"For this relief much thanks, son of a biscuit eater"} {"index":{"_index":"hamlet-pirate","_id":8}} {"line_number":"9","speaker":"BERNARDO","text_entry":"Arrrrrrrrh!"}# Enable cross cluster search on `eoc-06-adaptation-cluster`, so # that # (i) the name of the remote cluster is `original`, # (ii) the seed is `node-1`, which is listening on the default # transport port, # (iii) the cross cluster configuration persists across multiple # restarts # Run the cross-cluster query below to check your setupGET /original:hamlet,hamlet-pirate/_search {"query": {"match": {"speaker": "BERNARDO"}} }

配置的時候最開始把端口寫錯了,需要注意

PUT _cluster/settings {"persistent": {"cluster": {"remote": {"original": {"seeds": ["10.76.3.145:20300"],"transport.ping_schedule": "30s"}}}} }GET original:hamlet,hamlet-pirate/_search {"query": {"match": {"speaker": "BERNARDO"}} }

總結

以上是生活随笔為你收集整理的03.德国博士练习_02_admin_cluster的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。