将字段写入elasticsearch through spark时限制字段索引因此,该字段不能用于查询,但仍作为文档存储在es中

p8h8hvxi  于 2021-05-29  发布在  Spark
关注(0)|答案(0)|浏览(256)

这可以通过为特定字段指定“index”:false来实现。现在的问题是如何在spark中复制它。

PUT hostname:9200/index1

{
    "index1": {
        "aliases": {},
        "mappings": {
            "properties": {
                "business_address": {
                    "type": "text",
                    "index": false,
                    "fields": {
                        "keyword": {
                            "type": "keyword",
                            "ignore_above": 256
                        }
                    }
                },
                "business_city": {
                    "type": "text",
                    "fields": {
                        "keyword": {
                            "type": "keyword",
                            "ignore_above": 256
                        }
                    }
                }

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题