fallhunter
fallhunter

Reputation: 551

how to reduce solr memory usage?

I use solr in my application, there is just hundreds of documents. the memory usage is about 80M, how to reduce it?

Upvotes: 6

Views: 4170

Answers (1)

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99730

80M is not much, in fact it's pretty much the mininum, you won't go much lower than that.

Some factors that affect memory usage:

  • Input document size
  • Multi-threaded document updates
  • Cache size
  • Facet queries
  • Sorting

References:

Upvotes: 10

Related Questions