赞
踩
Elasticsearch 中的管道(Pipeline)是一种强大的数据预处理机制,用于在文档被索引前对它们执行一系列有序的处理步骤。以下是一系列关于管道使用的实战操作和示例:
编写管道配置,指定处理器(Processor)及其参数。例如,创建一个包含 trim
(去除字符串首尾空格)、remove
(删除字段)和 date
(解析日期)处理器的管道:
PUT _ingest/pipeline/my_pipeline { "description": "A pipeline to clean and enrich documents", "processors": [ { "trim": { "field": "message" } }, { "remove": { "field": "unused_field" } }, { "date": { "field": "event_timestamp", "target_field": "@timestamp", "formats": ["ISO8601"] } } ] }
管道中的处理器按照定义顺序执行,每个处理器处理后的文档作为下一个处理器的输入。处理器可以对文档进行各种变换,如字段值修改、新增字段、数据格式转换、条件逻辑处理等。
在索引文档时指定管道名称,让摄取节点使用该管道处理文档:
PUT my_index/_doc/1?pipeline=my_pipeline
{
"message": " Hello, World! ",
"unused_field": "Remove me",
"event_timestamp": "2024-05-01T12:00:00Z"
}
设置索引的 index.default_pipeline
属性,让所有进入该索引的文档自动使用指定的管道:
PUT my_index
{
"settings": {
"index.default_pipeline": "my_pipeline"
}
}
在批量索引(_bulk
API)中指定管道:
POST _bulk?pipeline=my_pipeline
{"index":{"_index":"my_index","_id":"1"}}
{"message":" Hello, World! ","unused_field":"Remove me","event_timestamp":"2024-05-01T12:00:00Z"}
Elasticsearch 提供了多种处理器类型,包括但不限于:
使用 simulate
API 模拟文档通过管道的处理过程,查看处理前后文档的变化:
POST _ingest/pipeline/_simulate { "pipeline": { "processors": [ ... ] }, "docs": [ { "_source": { "message": " Hello, World! ", ... } } ] }
查询管道统计信息,了解管道处理效率、失败情况等:
GET _ingest/pipeline/my_pipeline/_stats
在实际操作中,请始终参考Elasticsearch官方文档以获取最新的处理器类型、配置选项和最佳实践。摄取管道是提升Elasticsearch数据质量和处理效率的重要工具,应充分利用其功能进行数据预处理。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。