gpt4 book ai didi

api - 有没有一种方法可以将具有特定_id的文档索引到Elasticsearch中?

转载 作者:行者123 更新时间:2023-12-02 23:09:25 24 4
gpt4 key购买 nike

我正在寻找一种模拟在索引内有特定_id字段的状态。
假设我想在示例中从index1获取完全相同的日志,然后将其索引到index2中。
像这样:
这是我的 index1

{
_index: "index-number-one",
_type: "doc",
_id: "S0meSpec!f!cID",
_score: 1,
_source: {
message: "message1",
type: "type1",
tags: [
"_bla"],
number: 3
}
}
现在我要在 index2 中使用完全相同的日志
{
_index: "index-number-two",
_type: "doc",
_id: "S0meSpec!f!cID",
_score: 1,
_source: {
message: "message1",
type: "type1",
tags: [
"_bla"],
number: 3
}
}
在Elasticsearch中找不到可以将文档插入具有特定_id字段的索引的API ...(?)
如果无法执行此操作,从而使Elasticsearch集群在_id字段中没有重复项,我可以想象是因为他们希望保留通过_id搜索文档的功能
该字段需要唯一,在这种情况下,假设我不介意从 index1 删除整个文档(也许将其另存为代码中的某些变量),但是最后,我需要在 中保存该文档index2 ,使EXACT _id曾经是 index1
而且,如果有一种方法可以编辑现有的_id字段,那么它也可以解决我的问题。
任何人都可以阐明如何实现该目标吗?

最佳答案

对我自己回答
我发现可以在索引的POST请求中完成,如下所示:

POST twitter/test-index-1234/abctype/Som3Cust0mID
{
"user" : "kimchy",
"post_date" : "2009-11-15T14:12:12",
"message" : "trying out Elasticsearch"
}

ES中的结果:
{
_index: "test-index-1234",
_type: "abctype",
_id: "Som3Cust0mID",
_score: 1,
_source: {
user: "kimchy",
post_date: "2009-11-15T14:12:12",
message: "trying out Elasticsearch"
}
}

关于api - 有没有一种方法可以将具有特定_id的文档索引到Elasticsearch中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61911834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com