user2372074
user2372074

Reputation: 851

solr indexing is stored in memory or disk

I have about 30GB in memory on server. However, due to large data volume, the indexing takes about 28GB. Is there any way to configure the solr so the indexing of data can be store in hard disk, not in memory? Or if I can assign certain amount of data in memory while the rest in disk?

Upvotes: 0

Views: 1171

Answers (1)

forzayalta
forzayalta

Reputation: 34

While indexing data, SolR is creating cache folders and file on the hard drive only.

Memory is just used to:

  • index data
  • retrieve data
  • delete or update data

The strength of SolR is that it creates several indexes to improve data retrieval.

Upvotes: 1

Related Questions