我想从我的火花转换中在Elasticsearch中创建索引。我想知道使用elasticsearch-spark库的最佳方法是什么? 问候
答案 0 :(得分:0)
在写入elasticsearch时,它将创建一个索引(如果不存在)
df.write
.format("org.elasticsearch.spark.sql")
.option("es.nodes.wan.only","true")
.option("es.port","443")
.option("es.nodes", esURL)
.mode("Overwrite")
.save("index/dogs")