我有以下代码使用 Cloud ID 连接到 Elastic Search
const { Client } = require('@elastic/elasticsearch')
//or using elastic.Client from ('elasticsearch')
var client = new Client({
cloud: {
id: 'cloudId'
},
auth: {
username: "elastic",
password: "eleastic_password",
},
});
我可以使用上述连接添加和查询数据,但我希望从中查询数据并将其添加到我拥有的企业搜索集群中。如何使用 nodejs 连接到企业搜索而不是 Kibana?除了使用 http 请求/axios,我是否可以使用 Endpoint API Url 连接到 Elastic Search 上的 Enterprise Search App 集群?