elasticsearch - 如何使用elasticsearch-ruby gem在Elasticsearch中创建摄取管道

标签 elasticsearch elasticsearch-ruby

我很挣扎,如何使用elasticsearch-ruby gem创建摄取附件管道?

对于此电话-

PUT _ingest/pipeline/attachment
{
  "description" : "Extract attachment information",
  "processors" : [
    {
      "attachment" : {
        "field" : "data"
      }
    }
  ]
}

这是我得到的异常(exception)-
2.2.5 :008 > client.ingest.put_pipeline({id: 'attachment', body: {description: "Extract attachment information", processors: { attachment: { field: 'document_content', indexed_chars: '-1', indexed_chars_field: "max_size"}}}})
2018-04-27 08:22:07 +0530: PUT http://localhost:9200/_ingest/pipeline/attachment [status:400, request:0.108s, query:N/A]
2018-04-27 08:22:07 +0530: > {"description":"Extract attachment information","processors":{"attachment":{"field":"document_content","indexed_chars":"-1","indexed_chars_field":"max_size"}}}
2018-04-27 08:22:07 +0530: < {"error":{"root_cause":[{"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}}],"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}},"status":400}
2018-04-27 08:22:07 +0530: [400] {"error":{"root_cause":[{"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}}],"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}},"status":400}
Elasticsearch::Transport::Transport::Errors::BadRequest: [400] {"error":{"root_cause":[{"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}}],"type":"parse_exception","reason":"[processors] property isn't a list, but of type [java.util.HashMap]","header":{"property_name":"processors"}},"status":400}

最佳答案

错误状态

[processors] property isn't a list, but of type [java.util.HashMap]



在REST调用中,您正确无误,因为processors是一个数组,但是在ruby调用中,您将其设置为哈希。

所以正确的方法是这样的:
 client.ingest.put_pipeline :id => 'attachment', :body => {description: "Extract attachment information", processors: [{ attachment: { field: 'document_content', indexed_chars: '-1', indexed_chars_field: "max_size"}}]}

关于elasticsearch - 如何使用elasticsearch-ruby gem在Elasticsearch中创建摄取管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50045373/

相关文章:

elasticsearch - Elasticsearch 中节点重启后的快速恢复

elasticsearch - 什么是 Elasticsearch 索引?

elasticsearch - 有没有办法更改elasticsearch 7的/etc/default/elasticsearch文件?

elasticsearch - 如何在 Elasticsearch Query 中传递特定字段的值列表

elasticsearch重新索引文档减少可用空间

ruby-on-rails - Elasticsearch 6.3.2术语匹配空数组 “plus”其他

elasticsearch - ElasticSearch评分问题

java - 限制Elasticsearch中的嵌套字段

elasticsearch - 在elasticsearch-ruby中使用percolate进行批量索引