文章分类 -  elasticsearch

摘要:ES7 默认的单节点 shards 数量是 1000 个分片,那么在我们默认3个集群下就是 3000 的 shards 数量,今天在创建索引时提示 shards 数量不足,那么就使用下方代码进行修改 shards 数量配置 PUT /_cluster/settings { "persistent": 阅读全文
posted @ 2021-12-31 14:18 我就丶是逗比 阅读(1296) 评论(0) 推荐(0)
摘要:业务需求要在 ElasticSearch 中索引表中新增一个字段,直接使用 painless 操作 POST /index/_update_by_query { "script": { "lang": "painless", "inline": "if (ctx._source.type== nul 阅读全文
posted @ 2021-12-29 10:43 我就丶是逗比 阅读(275) 评论(0) 推荐(0)
摘要:Linux 安装 Elasticsearch 7.x Elasticsearch 官网:https://www.elastic.co/ Elasticsearch 下载地址:https://www.elastic.co/cn/downloads/elasticsearch Elasticsearch 阅读全文
posted @ 2021-12-06 20:28 我就丶是逗比 阅读(91) 评论(0) 推荐(0)
摘要:DELETE /索引表名称/type类型/ID值 阅读全文
posted @ 2021-11-05 14:48 我就丶是逗比 阅读(403) 评论(0) 推荐(0)