RaditzLawliet
RaditzLawliet

Reputation: 503

Solr scaling multiple instance and shard or multiple solr for different collection

I'm new with solr, and have some case with scaling. I have plan with 2 collection in solr and planning to scale it

currently i have 3 solrcloud connect with zk, and have rare case solr down because too many indexing data to traffic collection.

which one is good for performance all, moreover the server only have 3 Server each is 32x3GB RAM and 16 core (shared)

Or maybe any other solution.

Upvotes: 0

Views: 318

Answers (1)

Persimmonium
Persimmonium

Reputation: 15789

You should look at keeping a single cluster as long as is manageable. But you can improve how you deal with the traffic collection (songs collection sounds ok):

  • at this rate it will be too large for a single collection eventually
  • show why not index traffic in daily/weekly/or yearlly collections?
  • your collections will remain manageable size, and when querying you will be more efficient, as many times you don't need to query the whole history, just last day, last month etc

This is a very recurrent set up.

Upvotes: 0

Related Questions