我打算使用es-hadoop将数据插入弹性搜索。在弹性搜索中启用安全性之前,一切工作都很好。
curl -X PUT "https://hostname:9200/twitter/_doc/1" -H 'Content-Type: application/json' --insecure -u username:password -d'{"user" : "kimchy","post_date" : "2009-11-15T14:12:12","message" : "trying out Elasticsearch"}'
上面的curl命令将数据插入弹性搜索。有人可以提到我需要传递以获得ES-hadoop的属性 saveJsonToEs可以工作?
当前使用的属性是
"es.nodes": "server.com",
"es.port": "9200",
"es.index.auto.create": "true"
我们在ES Hadoop 6.x中是否支持https
?