Solr之定時重建索引-yellowcong
阿新 • • 發佈:2019-01-26
定時更新solr的索引,通過interval 來設定的是多長事件建立索引。同時需要注意的是dataimport.properties的配置檔案目錄。(測試的最簡單方法,是將索引全部刪除,然後就會自動將索引建立好了)
jar包(solr-dataimportscheduler)下載地址
http://yellowcong.qiniudn.com/solr-dataimportscheduler-1.1.jar
環境搭建
1. 匯入依賴包
將 apache-solr-dataimportscheduler-1.0.jar(這個是自己找的,不是自帶的) 和solr自帶的 apache-solr-dataimporthandler-.jar, apache-solr-dataimporthandler-extras-.jar 放到solr.war的lib目錄下面
2. 配置WEB-INF/web.xml
我直接配置在了web.xml最後面了
<listener>
<listener-class>org.apache.solr.handler.dataimport.scheduler.ApplicationListener</listener-class>
</listener>
3.新建檔案:dataimport.properties
syncCores 修改為自己需要同步的core , 這個地方,最重要的是注意目錄是/usr/local/solr/solr-4.10.3/example/solr/conf
,而不是collection1裡面的conf
#################################################
# #
# dataimport scheduler properties #
# #
#################################################
# to sync or not to sync
# 1 - active; anything else - inactive
# 這裡的配置不用修改
syncEnabled=1
# which cores to schedule
# in a multi-core environment you can decide which cores you want syncronized
# leave empty or comment it out if using single-core deployment
# 修改成你所使用的core,我這裡是我自定義的core:simple
# 多個的配置方法
# syncCores=core1,core2
syncCores=collection1
# solr server name or IP address
# [defaults to localhost if empty]
# 這個一般都是localhost不會變
server=localhost
# solr server port
# [defaults to 80 if empty]
# 安裝solr的tomcat埠,如果你使用的是預設的埠,就不用改了,否則改成自己的埠就好了
port=8080
# application name/context
# [defaults to current ServletContextListener's context (app) name]
# 這裡預設不改
webapp=solr
# URL params [mandatory]
# remainder of URL
# 這裡改成下面的形式,solr同步資料時請求的連結
params=/dataimport?command=delta-import&clean=false&commit=true
# schedule interval
# number of minutes between two runs
# [defaults to 30 if empty]
#這裡是設定定時任務的,單位是分鐘,也就是多長時間你檢測一次資料同步,根據專案需求修改
# 開始測試的時候為了方便看到效果,時間可以設定短一點
# 每隔1 分鐘更新一次索引
interval=1
# 重做索引的時間間隔,單位分鐘,預設7200,即5天;
# 為空,為0,或者註釋掉:表示永不重做索引
reBuildIndexInterval=7200
# 重做索引的引數
reBuildIndexParams=/select?qt=/dataimport&command=full-import&clean=true&commit=true
# 重做索引時間間隔的計時開始時間,第一次真正執行的時間=reBuildIndexBeginTime+reBuildIndexInterval*60*1000;
# 兩種格式:2012-04-11 03:10:00 或者 03:10:00,後一種會自動補全日期部分為服務啟動時的日期
reBuildIndexBeginTime=03:10:00
錯誤合集
找不到dataimport.properties 檔案
ERROR - 2017-12-05 16:42:17.686; org.apache.solr.handler.dataimport.scheduler.SolrDataImportProperties; Error locating DataImportScheduler dataimport.properties file
java.io.FileNotFoundException: /usr/local/solr/solr-4.10.3/example/solr/conf/dataimport.properties (沒有那個檔案或目錄)
#建立目錄
mkdir - p /usr/local/solr/solr-4.10.3/example/solr/conf
#建立檔案
vim dataimport.properties