zoukankan      html  css  js  c++  java
  • solr 做索引时报 Lock obtain timed out: SingleInstanceLock: write.lock

    有个频繁做索引的应用,它同时也对外提供搜索服务。大部分是 solr 1.3 的默认配置。solr 做索引,有时候报:

    2009-7-13 9:48:06 org.apache.solr.common.SolrException log
    严重: org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SingleInstanceLock: write.lock
    at org.apache.lucene.store.Lock.obtain(Lock.java:85)
    at org.apache.lucene.index.IndexWriter.init(IndexWriter.java:1140)
    at org.apache.lucene.index.IndexWriter.<init>(IndexWriter.java:938)
    at org.apache.solr.update.SolrIndexWriter.<init>(SolrIndexWriter.java:116)
    ...

    是写锁取不到。但重启 solr 又可以正常做,主要是运行时间长了就报这个错了。还是看下配置吧。

    看到 solr 1.3 默认的配置是:

    1. <indexDefaults>  
    2.     <!-- ... -->  
    3.     <!--  
    4.       This option specifies which Lucene LockFactory implementation to use.  
    5.   
    6.       single = SingleInstanceLockFactory - suggested for a read-only index  
    7.                or when there is no possibility of another process trying  
    8.                to modify the index.  
    9.       native = NativeFSLockFactory  
    10.       simple = SimpleFSLockFactory  
    11.   
    12.       (For backwards compatibility with Solr 1.2, 'simple' is the default  
    13.        if not specified.)  
    14.     -->  
    15.     <lockType>single</lockType>  
    16. </indexDefaults>  

    默认锁是 single ,只读的。solr 1.2 是 simple,把它改回去了,运行了几天,没事。

  • 相关阅读:
    ubuntu 14.04 下试用Sublime Text 3
    闲来无事,温习一下快速排序法
    学艺不精,又被shell的管道给坑了
    ssh登录失败处理步骤
    linux文件权限整理
    使用ssh远程执行命令批量导出数据库到本地
    leetcode-easy-design-384 Shuffle an Array
    leetcode-easy-dynamic-198 House Robber-NO
    leetcode-easy-dynamic-53 Maximum Subarray
    leetcode-easy-dynamic-121 Best Time to Buy and Sell Stock
  • 原文地址:https://www.cnblogs.com/wycg1984/p/1567641.html
Copyright © 2011-2022 走看看