trynacode
trynacode

Reputation: 371

Maximum number of docs for Solr with Cassandra

I currently have a Cassandra database with around 50,000 rows and ~5 columns. However, when I check my numDocs/maxDocs on Core Admin using the Solr Admin UI, it only finds 10K numDocs & maxDocs. Is there a maximum that Solr is able to index? If so, where can I edit that number if possible? If not, am I doing something wrong when setting up Solr? I have every column indexed in my schema set-up.

Upvotes: 1

Views: 139

Answers (1)

Persimmonium
Persimmonium

Reputation: 15789

The max amount of docs Solr can index is way, way larger.

You most probably have 5 solr nodes and each one is holding 10k different docs. Just run some query, sort by something and verify it.

DSE does not use SolrCloud, they do their own clustering stuff, so the info you see in Solr dashboard is not totally equivalent to what you see in vanilla solr.

Upvotes: 1

Related Questions