On 2022/03/14 12:19:10 Eric Pugh wrote: > Let me propose a slightly different approach ;-) > > Since you don’t need Solrcloud to support scaling needs, but instead > for redundancy, then I like to set things up where my indexer just > sends the updates to TWO SEPARATE single server Solr nodes.
Are you suggesting to use Standalone Solr instead of SolrCloud? If I am understanding this correctly, you are suggesting to use three servers: one for indexing, and two for clients to query. Wouldn't there be downtime if the indexer goes offline? Thank you.