gpt4 book ai didi

scala - 更新映射定义是使用Scala的ELasticSearch

转载 作者:行者123 更新时间:2023-12-03 02:30:28 25 4
gpt4 key购买 nike

我想知道如何更新现有INDEX的映射。
所以我有一个索引:

{
"state": "xxx",
"settings": {
"index": {
"creation_date": "xxx",
"number_of_shards": "xxx",
"number_of_replicas": "xxx",
"uuid": "xxx",
"version": {
"created": "xxx"
}
}
},
"mappings": {
"es_content_entry": {
"properties": {
"input": {
"properties": {
"zipCode": {
"type": "string"
},
"address": {
"type": "string"
},
"cityName": {
"type": "string"
},
}
}
}
}
}
}


我正在使用scala更新此INDEX的映射,如下所示:
CheckFieldMappingResult是具有以下内容的对象
indexName: String,
entryType: String,
path: Seq[String],
localMapping: Option[TypedFieldDefinition],
remoteJsonMapping : Option[JsObject],
isConsistent: Boolean,
status: String

val remoteMissingObject: Seq[CheckFieldMappingResult] = mappingConsistensyResult.filter(p => p.status == "REMOTE_MISSING")

val entryType: Seq[String] = remoteMissingObject.map(_.entryType)
val path: Seq[Seq[String]] = remoteMissingObject.map(_.path)
val foo: Seq[TypedFieldDefinition] = remoteMissingObject.map(_.localMapping.get)
print(foo)

for (remote <- remoteMissingObject)yield {
esClient.execute{put
putMapping(INDEX_NAME/remote.entryType).fields {
val too: String = path.flatten.head
println(too)
val foo: TypedFieldDefinition = remote.localMapping.get
foo
}

}
}

它给了我这个输出:
{
"state": "xxx",
"settings": {
"index": {
"creation_date": "xxx",
"number_of_shards": "xxx",
"number_of_replicas": "xxx",
"uuid": "xxx",
"version": {
"created": "xxx"
}
}
},
"mappings": {
"es_content_entry": {
"properties": {
"additionnalInfos": {
"type": "string"
},
"input": {
"properties": {
"zipCode": {
"type": "string"
},
"address": {
"type": "string"
},
"cityName": {
"type": "string"
},
}
}
}
}
}
}

它在索引的开头添加 其他信息,但我希望它添加此路径 INDEX_NAME\es_content_entry\input\addtionalinfos我怎样才能做到这一点?

最佳答案

elastic4s是基于Scala的lib,它支持创建索引。

https://github.com/sksamuel/elastic4s

关于scala - 更新映射定义是使用Scala的ELasticSearch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60117545/

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