0

http://docs.datastax.com/en/cassandra/3.0/cassandra/operations/opsAddRplSingleTokenNodes.htmlAbstractSolrSecondaryIndex.java:1884 - 找不到我又增加了3個單令牌節點爲datastax文檔中指定我們現有的數據中心核心/無法啓動DSE服務器

目前,所有3個新的節點都顯示連接狀態。

Datacenter: SearchGraph 
========== 
Address  Rack  Status State Load  Owns  Token          
10.10.1.46 rack1  Up  Normal 381.13 MiB  ? -9223372036854775808       
10.10.2.66 rack2  Up  Joining 277.94 MiB  ? -6148914691236517206       
10.10.1.36 rack1  Up  Normal 414.47 MiB  ? -3074457345618258603       
10.10.2.76 rack2  Up  Joining 251.52 MiB  ? -2           
10.10.1.56 rack1  Up  Normal 409.32 MiB  ? 3074457345618258602       
10.10.2.86 rack2  Up  Joining 332.89 MiB  ? 6148914691236517202 

但是我們在加入節點時出現以下錯誤。

AbstractSolrSecondaryIndex.java:1884 - Cannot find core chat.chat_history 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core chat.history 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.business_units 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.feeds 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.feeds_2 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.knowledegmodule 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.userdetails 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.userdetails_2 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.vault_details 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core search.workgroup 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.feeds 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.knowledgemodule 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.organizations 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.userdetails 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.vaults 
AbstractSolrSecondaryIndex.java:1884 - Cannot find core cloud.workgroup 

帖子更新時間:

節點加入失敗,以下錯誤:

ERROR [main] 2017-08-10 04:22:08,449 DseDaemon.java:488 - Unable to start DSE server. 
com.datastax.bdp.plugin.PluginManager$PluginActivationException: Unable to activate plugin com.datastax.bdp.plugin.SolrContainerPlugin 


Caused by: java.lang.IllegalStateException: Cannot find secondary index for core ekamsearch.userdetails_2, did you create it? 
If yes, please consider increasing the value of the dse.yaml option load_max_time_per_core, current value in minutes is: 10 

ERROR [main] 2017-08-10 04:22:08,450 CassandraDaemon.java:705 - Exception encountered during startup 
java.lang.RuntimeException: com.datastax.bdp.plugin.PluginManager$PluginActivationException: Unable to activate plugin 

有沒有人遇到這些錯誤或警告過嗎?

+0

試圖增加在DSE load_max_time_per_core的價值.yaml我們仍然收到錯誤 –

+0

我很確定這是因爲您添加了節點,但您可能沒有加載Solr內核?你在這裏跑什麼版本的DSE? – markc

+0

@markc當前的DSE版本是5.1.2。請提及如何在新的加入節點中加載solr內核。 –

回答

0

解決的問題: 在dse.yaml配置文件中增加load_max_time_per_core價值,我仍然是receving的error.Finalys通過下面的方法來解決這個問題

 1) Started the new nodes as non-solr and wait for all cassandra data 
     to migrate to joining nodes. 
    2) Add the parameter auto_bootstrap: False directive to the 
     cassandra.yaml file 
    3) Re-start the same nodes after enabling solr. Changed parameter 
     SOLR_ENABLED=1 in /etc/default/dse 
    3) Re-index in all new joined nodes. I had to reloaded all core 
     required with the reindex=true and distributed=false parameters in 
     new joined nodes. 
     Ref : http://docs.datastax.com/en/archived/datastax_enterprise/4.0/datastax_enterprise/srch/srchReldCore.html 
相關問題