热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ElasticSearch只能添加字段索引,而不能像luceneField.Store.NO一样保存原始值

我在MySQL中有一个很大的字段,并且不想将原始值保存到ElasticSearch。是否有像LuceneField.Stor

我在MySQL中有一个很大的字段,并且不想将原始值保存到ElasticSearch。是否有像Lucene Field.Store.NO一样的方法?
谢谢。


您只需要相应地定义“ store”映射,例如。 :

PUT your-index
{
"mappings": {
"properties": {
"some_field": {
"type": "text","index": true,"store": false
}
}
}
}

您可能还想禁用_source字段:


  

#disable-source-field
  _source字段包含在索引时间传递的原始JSON文档主体,尽管非常方便,但是source字段的确会在索引内产生存储开销。

因此,可以按以下方式禁用它:

PUT your-index
{
"mappings": {
"_source": {
"enabled": false
}
}
}

推荐阅读
author-avatar
mobiledu2502926333
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有