インデックス回復の優先順位
未割り当てのシャードは、可能な限り優先順位の順に回復されます。インデックスは以下のように優先順位の順にソートされます:
- オプションの
index.priority
設定(高いものが低いものの前) - インデックス作成日(新しいものが古いものの前)
- インデックス名(高いものが低いものの前)
これは、デフォルトでは新しいインデックスが古いインデックスの前に回復されることを意味します。
インデックスの優先順位をカスタマイズするには、インデックスごとの動的に更新可能な index.priority
設定を使用します。例えば:
Python
resp = client.indices.create(
index="index_1",
)
print(resp)
resp1 = client.indices.create(
index="index_2",
)
print(resp1)
resp2 = client.indices.create(
index="index_3",
settings={
"index.priority": 10
},
)
print(resp2)
resp3 = client.indices.create(
index="index_4",
settings={
"index.priority": 5
},
)
print(resp3)
Ruby
response = client.indices.create(
index: 'index_1'
)
puts response
response = client.indices.create(
index: 'index_2'
)
puts response
response = client.indices.create(
index: 'index_3',
body: {
settings: {
'index.priority' => 10
}
}
)
puts response
response = client.indices.create(
index: 'index_4',
body: {
settings: {
'index.priority' => 5
}
}
)
puts response
Js
const response = await client.indices.create({
index: "index_1",
});
console.log(response);
const response1 = await client.indices.create({
index: "index_2",
});
console.log(response1);
const response2 = await client.indices.create({
index: "index_3",
settings: {
"index.priority": 10,
},
});
console.log(response2);
const response3 = await client.indices.create({
index: "index_4",
settings: {
"index.priority": 5,
},
});
console.log(response3);
コンソール
PUT index_1
PUT index_2
PUT index_3
{
"settings": {
"index.priority": 10
}
}
PUT index_4
{
"settings": {
"index.priority": 5
}
}
上記の例では:
index_3
は最も高いindex.priority
を持っているため、最初に回復されます。index_4
は次に高い優先順位を持っているため、次に回復されます。index_2
は最近作成されたため、次に回復されます。index_1
は最後に回復されます。
この設定は整数を受け入れ、インデックス設定の更新APIを使用してライブインデックスで更新できます:
Python
resp = client.indices.put_settings(
index="index_4",
settings={
"index.priority": 1
},
)
print(resp)
Ruby
response = client.indices.put_settings(
index: 'index_4',
body: {
'index.priority' => 1
}
)
puts response
Js
const response = await client.indices.putSettings({
index: "index_4",
settings: {
"index.priority": 1,
},
});
console.log(response);
コンソール
PUT index_4/_settings
{
"index.priority": 1
}