2025-03-16 12:08PM
我在elasticsearch中导入数据,使用导入脚本,发现数据的条数不会增加,但是数据大小一直在增加:
$ curl -u elastic:666888elasticsearch -X GET "http://localhost:9200/_cat/indices/social_data?v"
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open social_data RTmd-ZA_Tly5mVym8JlX5Q 1 0 2052700529 94782990 582.3gb 582.3gb
我手动插入了一条数据,看是否可以正常插入:
$ curl -u elastic:666888elasticsearch -X POST "http://localhost:9200/social_data/_doc" -H 'Content-Type: application/json' -d'
{
"message": "test2",
"level": "INFO",
"timestamp": "2023-10-01T12:00:00"
}'
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Number of documents in the index can't exceed [2147483519]"}],"type":"illegal_argument_exception","reason":"Number of documents in the index can't exceed [2147483519]"},"status":400}
报错了:Number of documents in the index can't exceed [2147483519]
这是因为 Elasticsearch的索引文档数量达到了最大限制(2147483519
),这个限制是Elasticsearch的硬编码上限。
Elasticsearch 的单个索引文档数量上限是 2147483519(2^31 - 1),这是一个硬编码的限制,无法直接修改,这个限制是由 Lucene(Elasticsearch 的底层搜索引擎)的设计决定的。
我这边就又创建了一个索引 social_data1 用来导入剩下的数据。
$ curl -u elastic:666888elasticsearch -X PUT "http://localhost:9200/social_data1" -H 'Content-Type: application/json' -d'
{
"settings": {
"number_of_shards": 5,
"number_of_replicas": 1
},
"mappings": {
"properties": {
"message": { "type": "text" },
"level": { "type": "keyword" },
"timestamp": { "type": "date" }
}
}
}'
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论