elasticsearch
文章平均质量分 59
第二颗大白菜
每天写点什么,不是为了得到一些什么,也不是向谁证明一些什么,更不是为了存在感,而是让自己知道每天都做了些什么。
展开
-
initial heap size [268435456] not equal to maximum heap size [536870912];
启动elasticsearch报错,错误提示如下:initial heap size [268435456] not equal to maximum heap size [536870912]; this can cause resize pauses and prevents mlockall from locking the entire heap翻译一下:[1] :初始堆大小[268435456]不等于最大堆大小[536870912];这可能导致调整大小暂停,并阻止mlockall锁定原创 2021-01-07 10:56:07 · 6824 阅读 · 0 评论 -
在linux系统启动es,日志报错:java.lang.RuntimeException: can not run elasticsearch as root
[2020-03-15T18:04:47,710][ERROR][o.e.b.Bootstrap ] Exceptionjava.lang.RuntimeException: can not run elasticsearch as root at org.elasticsearch.bootstrap.Bootstrap.initializeNatives(Bootstr...原创 2020-03-15 18:07:48 · 3016 阅读 · 2 评论 -
linux环境下启动Elasticsearch报错:There is insufficient memory for the Java Runtime Environment to continue.
## There is insufficient memory for the Java Runtime Environment to continue.# Native memory allocation (mmap) failed to map 2060255232 bytes for committing reserved memory.# Possible reasons:# ...原创 2020-03-15 18:00:16 · 4309 阅读 · 6 评论 -
org.springframework.data.mapping.PropertyReferenceException: No property VF found for type LinkInfoE
启动Spring Boot项目报错!!!今天刚刚整合了Elasticsearch ,怎么启动就报错了呢????赶紧找原因。。。。OOrderBy ????? 写错了,OrderBy怎么会写成OOrderBy了?那么spirngboot jpa肯定启动报错。...原创 2020-03-14 20:24:22 · 1862 阅读 · 0 评论 -
关于某次查询es中数据,发现查询条件不变,但是数据的总计却一直在动态变化???
本质原因:es的数据写入,主分片和副本分片数据一致性问题。具体原因:由于项目中所搭建的es集群环境,使用了3个节点,然后我们考虑数据的大小,目前才100W条数据,然后我们考虑es读写的高可用,设计了1个主分片和对应2个副本分片,但是发现到生产环境,我们的配置注解并没有生效,或者说被DBA给手动改了。@Document(indexName = "xxxxxxx", type = "x...原创 2020-01-14 08:48:49 · 3760 阅读 · 0 评论 -
关于es集群分片设计注意事项
转载 2020-01-14 08:37:16 · 2379 阅读 · 0 评论 -
使用elasticsearch做分页查询时,当查询记录超过10000时报错
使用elasticsearch做分页查询时,当查询记录超过10000时,比如我每页100条数据,第100页没问题,101页就报错了;比如每页50条数据,第200页就没问题,201页就报错了,会报如下错误:org.elasticsearch.action.search.SearchPhaseExecutionException: all shards failed at org.ela...原创 2020-01-13 11:00:09 · 4117 阅读 · 0 评论