Amazon Elasticsearch Service 上的 Elasticsearch Circle Ingest 处理器

Elasticsearch Circle Ingest Processor on Amazon Elasticsearch Service

我正在尝试使用 circle 处理器创建摄取管道,将圆转换为多边形,因为 circle geo_shape 已被弃用,请参考文档:

https://www.elastic.co/guide/en/elasticsearch/reference/7.4/ingest-circle-processor.html#_example_circle_defined_in_geojson

但是,当我 运行 它针对我的 Amazon Elasticsearch 7.7 实例时,它给我以下错误:

{
   "error":{
      "processor_type":"circle",
      "reason":"No processor type exists with name [circle]",
      "root_cause":[
         {
            "processor_type":"'circle'",
            "reason":"'No processor type exists with name [circle]'",
            "suppressed":"[{'type': 'parse_exception', 'reason': 'No processor type exists with name [circle]', 'processor_type': 'circle'}]",
            "type":"'parse_exception'"
         }
      ],
      "suppressed":[
         {
            "processor_type":"'circle'",
            "reason":"'No processor type exists with name [circle]'",
            "type":"'parse_exception'"
         }
      ],
      "type":"parse_exception"
   },
   "status":400
}

据我了解,circle 处理器从 7.4 版开始可用。

这是一个已知问题吗?有没有办法将此处理器添加到 AWS 的 Elasticsearch?

圆形处理器仅适用于 x-pack。

x-pack 不附带标准 ES 包,需要付费。所以如果你想使用处理器请购买x-pack.

Link : https://www.elastic.co/guide/en/elasticsearch/reference/7.9/setup-xpack.html