Apache Beam Elastic IO 模块是否支持通过文档ID对现有文档进行更新?

huangapple go评论50阅读模式
英文:

Does Apache Beam Elastic IO module support updates to existing documents by Id?

问题

Apache Beam是否支持Elasticsearch文档的更新,我无法找到相关文档。

英文:

I could not find any documentation for updates of documents on elastic search with apache beam.
Does apache beam support updates for elastic search?

答案1

得分: 1

使用Beam Java,您可以使用ElasticsearchIO

PCollection写入ElasticSearch的示例:

pipeline
    .apply(...)
    .apply(ElasticsearchIO.write().withConnectionConfiguration(
       ElasticsearchIO.ConnectionConfiguration.create("http://host:9200", "my-index", "my-type")
    )

重要澄清:此IO不支持update类型操作,write方法允许在Elastic添加元素。

如果您必须执行更新操作,有三种解决方案:

  • 使用write和带有重复数据的现有IO,并在Beam之外的分离进程中删除重复项,仅保留Elastic中的最后一个元素。例如,您可以使用DAG编排器,在Dataflow作业之后执行一个服务。
  • 使用现有的Elastic客户端和update方法,在ParDo中使用它。
  • 基于具有更新方法的现有客户端开发自己的IO。

此IO在Beam Python中不存在。

您可以查看此链接以获取Beam中现有IO的列表。

英文:

With Beam Java, you can use ElasticsearchIO.

Example to write a PCollection to ElasticSearch :

pipeline
    .apply(...)
    .apply(ElasticsearchIO.write().withConnectionConfiguration(
       ElasticsearchIO.ConnectionConfiguration.create("http://host:9200", "my-index", "my-type")
    )

Important clarification, the IO does not support update type operations, the write method allows adding an element in Elastic.

If it's mandatory for you to apply update operations, you have 3 solutions :

  • Use the write and existing IO with duplicates, and in a separated process outise of Beam, remove duplicate and keep only the last element in Elastic. For example you can use a DAG orchestrator and execute a service after the Dataflow job
  • Use an existing Elastic client with update method and use it in a ParDo
  • Develop your own IO based on an existing client with the update method

This IO doesn't exists natively for Beam Python.

You can check this link to have the list of existing IO in Beam.

huangapple
  • 本文由 发表于 2023年2月27日 11:57:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/75576666.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定