search - How to designate searcher and indexer in SOLR cloud? -
i have 2 node solr (4.10.3) cloud cluster configured 1 shard 2 replicas (with 3 node external zookeeper ensemble). how can setup solr cloud use 1 box searching, , 1 box indexing?
is simple pointing clients specific nodes?
for example if have solr01(indexer) , solr02(searcher). point clients solr02 when perform search, , clients solr01 when need add new data. main downside can see reduce redundancy.
is there way configure solr cloud handle automatically?
mmmm think idea fits better classic master / slaves architecture [1]. in solrcloud don't have such "dedicated" roles (indexer , searcher) because each node (potentially). doesn't make sense have cloud distinct roles between instances.
using classic replication instead, scenario: (offline) indexer replicates index changes on several searcher can queried in round-robin mode load balancing.
Comments
Post a Comment