dynamic
新しいフィールドを含むドキュメントをインデックスすると、Elasticsearchはドキュメントまたはドキュメント内の内部オブジェクトにフィールドを動的に追加します。次のドキュメントは、文字列フィールドusername
、オブジェクトフィールドname
、およびname
オブジェクトの下にある2つの文字列フィールドを追加します:
Python
resp = client.index(
index="my-index-000001",
id="1",
document={
"username": "johnsmith",
"name": {
"first": "John",
"last": "Smith"
}
},
)
print(resp)
resp1 = client.indices.get_mapping(
index="my-index-000001",
)
print(resp1)
Ruby
response = client.index(
index: 'my-index-000001',
id: 1,
body: {
username: 'johnsmith',
name: {
first: 'John',
last: 'Smith'
}
}
)
puts response
response = client.indices.get_mapping(
index: 'my-index-000001'
)
puts response
Js
const response = await client.index({
index: "my-index-000001",
id: 1,
document: {
username: "johnsmith",
name: {
first: "John",
last: "Smith",
},
},
});
console.log(response);
const response1 = await client.indices.getMapping({
index: "my-index-000001",
});
console.log(response1);
Console
PUT my-index-000001/_doc/1
{
"username": "johnsmith",
"name": {
"first": "John",
"last": "Smith"
}
}
GET my-index-000001/_mapping
name オブジェクトの下のフィールドをname.first およびname.last として参照します。 |
|
変更を表示するにはマッピングを確認してください。 |
次のドキュメントは、2つの文字列フィールドemail
およびname.middle
を追加します:
Python
resp = client.index(
index="my-index-000001",
id="2",
document={
"username": "marywhite",
"email": "[email protected]",
"name": {
"first": "Mary",
"middle": "Alice",
"last": "White"
}
},
)
print(resp)
resp1 = client.indices.get_mapping(
index="my-index-000001",
)
print(resp1)
Ruby
response = client.index(
index: 'my-index-000001',
id: 2,
body: {
username: 'marywhite',
email: '[email protected]',
name: {
first: 'Mary',
middle: 'Alice',
last: 'White'
}
}
)
puts response
response = client.indices.get_mapping(
index: 'my-index-000001'
)
puts response
Js
const response = await client.index({
index: "my-index-000001",
id: 2,
document: {
username: "marywhite",
email: "[email protected]",
name: {
first: "Mary",
middle: "Alice",
last: "White",
},
},
});
console.log(response);
const response1 = await client.indices.getMapping({
index: "my-index-000001",
});
console.log(response1);
Console
PUT my-index-000001/_doc/2
{
"username": "marywhite",
"email": "[email protected]",
"name": {
"first": "Mary",
"middle": "Alice",
"last": "White"
}
}
GET my-index-000001/_mapping
Setting dynamic on inner objects
内部オブジェクトは、親オブジェクトからdynamic
設定を継承します。次の例では、タイプレベルで動的マッピングが無効になっているため、新しいトップレベルフィールドは動的に追加されません。
ただし、user.social_networks
オブジェクトは動的マッピングを有効にしているため、この内部オブジェクトにフィールドを追加できます。
Python
resp = client.indices.create(
index="my-index-000001",
mappings={
"dynamic": False,
"properties": {
"user": {
"properties": {
"name": {
"type": "text"
},
"social_networks": {
"dynamic": True,
"properties": {}
}
}
}
}
},
)
print(resp)
Ruby
response = client.indices.create(
index: 'my-index-000001',
body: {
mappings: {
dynamic: false,
properties: {
user: {
properties: {
name: {
type: 'text'
},
social_networks: {
dynamic: true,
properties: {}
}
}
}
}
}
}
)
puts response
Js
const response = await client.indices.create({
index: "my-index-000001",
mappings: {
dynamic: false,
properties: {
user: {
properties: {
name: {
type: "text",
},
social_networks: {
dynamic: true,
properties: {},
},
},
},
},
},
});
console.log(response);
Console
PUT my-index-000001
{
"mappings": {
"dynamic": false,
"properties": {
"user": {
"properties": {
"name": {
"type": "text"
},
"social_networks": {
"dynamic": true,
"properties": {}
}
}
}
}
}
}
タイプレベルで動的マッピングを無効にします。 | |
user オブジェクトはタイプレベルの設定を継承します。 |
|
この内部オブジェクトの動的マッピングを有効にします。 |
Parameters for dynamic
dynamic
パラメータは、新しいフィールドが動的に追加されるかどうかを制御し、次のパラメータを受け入れます:
true |
新しいフィールドがマッピングに追加されます(デフォルト)。 |
runtime |
新しいフィールドがランタイムフィールドとしてマッピングに追加されます。 これらのフィールドはインデックスされず、クエリ時に _source から読み込まれます。 |
false |
新しいフィールドは無視されます。これらのフィールドはインデックスされず、検索可能ではありませんが、返されたヒットの_source フィールドには表示されます。これらのフィールドはマッピングに追加されず、新しいフィールドは明示的に追加する必要があります。 |
| strict
| 新しいフィールドが検出された場合、例外がスローされ、ドキュメントは拒否されます。新しいフィールドはマッピングに明示的に追加する必要があります。
Behavior when reaching the field limit
dynamic
をtrue
またはruntime
のいずれかに設定すると、index.mapping.total_fields.limit
に達するまで動的フィールドが追加されます。デフォルトでは、フィールド制限を超えるドキュメントのインデックスリクエストは失敗しますが、index.mapping.total_fields.ignore_dynamic_beyond_limit
がtrue
に設定されている場合を除きます。その場合、無視されたフィールドは_ignored
メタデータフィールドに追加されます。