例: ジオロケーションに基づいてデータを強化する
geo_match
強化ポリシー は、地理的位置に基づいて受信ドキュメントに強化データを一致させるために、geo_shape
クエリ を使用します。
次の例では、座標のセットに基づいて受信ドキュメントに郵便番号を追加する geo_match
強化ポリシーを作成します。その後、geo_match
強化ポリシーをインジェストパイプラインのプロセッサに追加します。
少なくとも1つの geo_shape
フィールドを含むソースインデックスを作成するには、インデックス作成API を使用します。
Python
resp = client.indices.create(
index="postal_codes",
mappings={
"properties": {
"location": {
"type": "geo_shape"
},
"postal_code": {
"type": "keyword"
}
}
},
)
print(resp)
Ruby
response = client.indices.create(
index: 'postal_codes',
body: {
mappings: {
properties: {
location: {
type: 'geo_shape'
},
postal_code: {
type: 'keyword'
}
}
}
}
)
puts response
Js
const response = await client.indices.create({
index: "postal_codes",
mappings: {
properties: {
location: {
type: "geo_shape",
},
postal_code: {
type: "keyword",
},
},
},
});
console.log(response);
コンソール
PUT /postal_codes
{
"mappings": {
"properties": {
"location": {
"type": "geo_shape"
},
"postal_code": {
"type": "keyword"
}
}
}
}
インデックスAPI を使用して、このソースインデックスに強化データをインデックスします。
Python
resp = client.index(
index="postal_codes",
id="1",
refresh="wait_for",
document={
"location": {
"type": "envelope",
"coordinates": [
[
13,
53
],
[
14,
52
]
]
},
"postal_code": "96598"
},
)
print(resp)
Ruby
response = client.index(
index: 'postal_codes',
id: 1,
refresh: 'wait_for',
body: {
location: {
type: 'envelope',
coordinates: [
[
13,
53
],
[
14,
52
]
]
},
postal_code: '96598'
}
)
puts response
Js
const response = await client.index({
index: "postal_codes",
id: 1,
refresh: "wait_for",
document: {
location: {
type: "envelope",
coordinates: [
[13, 53],
[14, 52],
],
},
postal_code: "96598",
},
});
console.log(response);
コンソール
PUT /postal_codes/_doc/1?refresh=wait_for
{
"location": {
"type": "envelope",
"coordinates": [ [ 13.0, 53.0 ], [ 14.0, 52.0 ] ]
},
"postal_code": "96598"
}
geo_match
ポリシータイプ を使用して強化ポリシーを作成するには、強化ポリシー作成API を使用します。このポリシーには次のものが含まれている必要があります:
- 1つ以上のソースインデックス
- 受信ドキュメントと一致させるために使用されるソースインデックスからの
match_field
、geo_shape
フィールド - 受信ドキュメントに追加したいソースインデックスからの強化フィールド
Python
resp = client.enrich.put_policy(
name="postal_policy",
geo_match={
"indices": "postal_codes",
"match_field": "location",
"enrich_fields": [
"location",
"postal_code"
]
},
)
print(resp)
Ruby
response = client.enrich.put_policy(
name: 'postal_policy',
body: {
geo_match: {
indices: 'postal_codes',
match_field: 'location',
enrich_fields: [
'location',
'postal_code'
]
}
}
)
puts response
Js
const response = await client.enrich.putPolicy({
name: "postal_policy",
geo_match: {
indices: "postal_codes",
match_field: "location",
enrich_fields: ["location", "postal_code"],
},
});
console.log(response);
コンソール
PUT /_enrich/policy/postal_policy
{
"geo_match": {
"indices": "postal_codes",
"match_field": "location",
"enrich_fields": [ "location", "postal_code" ]
}
}
強化ポリシー実行API を使用して、ポリシーのための強化インデックスを作成します。
コンソール
POST /_enrich/policy/postal_policy/_execute?wait_for_completion=false
パイプラインの作成または更新API を使用してインジェストパイプラインを作成します。パイプラインには、次のものを含む強化プロセッサを追加します:
- あなたの強化ポリシー。
- 強化インデックスからのドキュメントのジオシェイプと一致させるために使用される受信ドキュメントの
field
。 - 受信ドキュメントに追加された強化データを格納するために使用される
target_field
。このフィールドには、あなたの強化ポリシーで指定されたmatch_field
とenrich_fields
が含まれます。 - プロセッサが受信ドキュメントのジオシェイプを強化インデックスのドキュメントのジオシェイプと一致させる方法を示す
shape_relation
。有効なオプションと詳細については、空間関係を参照してください。
Python
resp = client.ingest.put_pipeline(
id="postal_lookup",
processors=[
{
"enrich": {
"description": "Add 'geo_data' based on 'geo_location'",
"policy_name": "postal_policy",
"field": "geo_location",
"target_field": "geo_data",
"shape_relation": "INTERSECTS"
}
}
],
)
print(resp)
Js
const response = await client.ingest.putPipeline({
id: "postal_lookup",
processors: [
{
enrich: {
description: "Add 'geo_data' based on 'geo_location'",
policy_name: "postal_policy",
field: "geo_location",
target_field: "geo_data",
shape_relation: "INTERSECTS",
},
},
],
});
console.log(response);
コンソール
PUT /_ingest/pipeline/postal_lookup
{
"processors": [
{
"enrich": {
"description": "Add 'geo_data' based on 'geo_location'",
"policy_name": "postal_policy",
"field": "geo_location",
"target_field": "geo_data",
"shape_relation": "INTERSECTS"
}
}
]
}
インジェストパイプラインを使用してドキュメントをインデックスします。受信ドキュメントには、あなたの強化プロセッサで指定された field
が含まれている必要があります。
Python
resp = client.index(
index="users",
id="0",
pipeline="postal_lookup",
document={
"first_name": "Mardy",
"last_name": "Brown",
"geo_location": "POINT (13.5 52.5)"
},
)
print(resp)
Js
const response = await client.index({
index: "users",
id: 0,
pipeline: "postal_lookup",
document: {
first_name: "Mardy",
last_name: "Brown",
geo_location: "POINT (13.5 52.5)",
},
});
console.log(response);
コンソール
PUT /users/_doc/0?pipeline=postal_lookup
{
"first_name": "Mardy",
"last_name": "Brown",
"geo_location": "POINT (13.5 52.5)"
}
強化プロセッサが適切なフィールドデータを一致させて追加したことを確認するには、取得API を使用してインデックスされたドキュメントを表示します。
Python
resp = client.get(
index="users",
id="0",
)
print(resp)
Ruby
response = client.get(
index: 'users',
id: 0
)
puts response
Js
const response = await client.get({
index: "users",
id: 0,
});
console.log(response);
コンソール
GET /users/_doc/0
コンソール-結果
{
"found": true,
"_index": "users",
"_id": "0",
"_version": 1,
"_seq_no": 55,
"_primary_term": 1,
"_source": {
"geo_data": {
"location": {
"type": "envelope",
"coordinates": [[13.0, 53.0], [14.0, 52.0]]
},
"postal_code": "96598"
},
"first_name": "Mardy",
"last_name": "Brown",
"geo_location": "POINT (13.5 52.5)"
}
}