ES报错IOException: failed to read(_state/state-42.s)

ES报错IOException: failed to read(_state/state-42.s)

4) Error injecting constructor, ElasticsearchException[java.io.IOException: failed to read [id:42, legacy:false, file:/data03/es/nodes/0/indices/7OnVKVcGQieslgR7mvZ4QQ/_state/state-42.st]];
 nested: IOException[failed to read [id:42, legacy:false, file:/data03/es/nodes/0/indices/7OnVKVcGQieslgR7mvZ4QQ/_state/state-42.st]]; nested: IllegalStateException[class org.apache.lucene.store.BufferedChecksumIndexInput cannot seek backwards (pos=-16 getFilePointer()=0)];  at org.elasticsearch.gateway.GatewayMetaState.<init>(Unknown Source)
  while locating org.elasticsearch.gateway.GatewayMetaState
Caused by: ElasticsearchException[java.io.IOException: failed to read [id:42, legacy:false, file:/data03/es/nodes/0/indices/7OnVKVcGQieslgR7mvZ4QQ/_state/state-42.st]]; nested: IOException[
failed to read [id:42, legacy:false, file:/data03/es/nodes/0/indices/7OnVKVcGQieslgR7mvZ4QQ/_state/state-42.st]]; nested: IllegalStateException[class org.apache.lucene.store.BufferedChecksumIndexInput cannot seek backwards (pos=-16 getFilePointer()=0)];

解决办法:
删除file:/data03/es/nodes/0/indices/7OnVKVcGQieslgR7mvZ4QQ/_state/state-42.st

 find /data*/es/nodes/0/indices/ -type f -name state-*.st -exec rm -rf {} \; 

Guess you like

Origin blog.51cto.com/fengyunshan911/2416108