溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

solr上線下線core的方法是什么

發(fā)布時(shí)間:2021-12-22 11:38:21 來源:億速云 閱讀:213 作者:iii 欄目:云計(jì)算

本篇內(nèi)容介紹了“solr上線下線core的方法是什么”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

solr上線下線core

有時(shí)候我們需要shard不存在replica的時(shí)候做測試。比如下面的情況。

solr上線下線core的方法是什么

現(xiàn)在我們每個(gè)shard保留一個(gè)副本。

我們可以用unloud命令

下線

http://slave3:8983/solr/admin/cores?action=UNLOAD&core=ZGCPWSWCORE2_shard1_replica2

重啟

http://slave3:8983/solr/admin/cores?action=RELOAD&core=ZGCPWSWCORE2_shard1_replica2

發(fā)現(xiàn)此時(shí)重啟,不能發(fā)現(xiàn)這個(gè)core,這里注意,unload并不是下線,而是卸載。說明這個(gè)索引已經(jīng)被卸載了,刪除了,比如用下面的方法:

創(chuàng)建

http://slave3:8983/solr/admin/cores?action=CREATE&name=ZGCPWSWCORE2_shard1_replica2&collection=ZGCPWSWCORE2&shard=shard1

此時(shí)他會(huì)自動(dòng)同步索引。

問題:我們需求是暫時(shí)下線core,等會(huì)又上線。并不是刪除,查看core的操作。參考:

http://blog.csdn.net/a925907195/article/details/45421529

里面有下線core

6.下線core

官方示例:http://localhost:8983/solr/admin/cores?action=UNLOAD&core=core0

可選參數(shù):

1.    deleteIndex: if true, will remove the index when unloading the core.

·         deleteDataDir: if true, removes the data directory and all sub-directories.

·         deleteInstanceDir: if true, removes everything related to the core, including the index directory, configuration files, and other related files.

·            async: if set to a value, makes the call asynchronous. This call can then be tracked using the REQUESTSTATUS API.

所以,只有加上參數(shù),才會(huì)刪除數(shù)據(jù)。我們用

http://slave3:8983/solr/admin/cores?action=UNLOAD&core=ZGCPWSWCORE2_shard1_replica2

并沒有刪除數(shù)據(jù),一定是做了一個(gè)標(biāo)志,進(jìn)入管理界面。

solr上線下線core的方法是什么

右上角:Instance:/var/lib/solr/ZGCPWSWCORE2_shard2_replica2

當(dāng)此節(jié)點(diǎn)沒下線的時(shí)候,進(jìn)入這個(gè)文件夾:輸入ll

drwxr-xr-x  2 solr solr 4096 May 16 15:51 ./

drwxr-xr-x 15 solr solr 4096 May 16 15:52 ../

-rw-r--r--  1 solr solr  171 Mar 28 09:57 core.properties

打開core.properties

#Written by CorePropertiesLocator

#Mon Mar 28 09:57:27 CST 2016

numShards=5

name=ZGCPWSWCORE2_shard2_replica2

shard=shard2

collection=ZGCPWSWCORE2

coreNodeName=core_node2

這個(gè)core的信息。現(xiàn)在把這個(gè)core下線:

http://master:8983/solr/admin/cores?action=UNLOAD&core=ZGCPWSWCORE2_shard2_replica2

進(jìn)入/var/lib/solr/ZGCPWSWCORE2_shard2_replica2

會(huì)發(fā)現(xiàn)

drwxr-xr-x  2 solr solr 4096 May 16 15:50 ./

drwxr-xr-x 15 solr solr 4096 Mar 30 16:19 ../

-rw-r--r--  1 solr solr  171 Mar 28 09:57 core.properties.unloaded

這里做了一個(gè)標(biāo)記,用 mv   core.properties.unloaded    core.properties

重新啟動(dòng)solr服務(wù),就會(huì)找到這個(gè)core了。

“solr上線下線core的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI