开发者

Should I keep the size of stored fields in Solr to a minimum?

开发者 https://www.devze.com 2023-03-24 07:19 出处:网络
I am looking to introduce Solr to po开发者_运维知识库wer the search for a business listing website. The site has around 2 million records.

I am looking to introduce Solr to po开发者_运维知识库wer the search for a business listing website. The site has around 2 million records.

There is a search results page which will display some key data for each result. I believe the data needed for this summary information is around 1KB per result.

I could simply index the fields needed for the search within Solr - but this means a separate database call for each result to populate the summary information. If Solr could return all of this data I would expect it to yield greater performance than ~40 database round-trips.

The concern is that Solr's memory usage would be too large (how might I calculate this?) and that indexing might take too long with the extra data.


You would benefit greatly to store those fields in Solr compared to the 40 db roundtrips. Just make sure that you marked the field as "not indexed" (indexed = false) in your schema config and maybe also compressed (compressed = true) (however this will of course use some CPU when indexing and retrieving).

When marking a field as "not indexed" no analyzers will process the field when indexing making it stored much faster than a indexed field.


It's a trade off, and you will have to analyze this yourself.

Solr's performance greatly depends on caching, not only of queries, but also of the documents themselves. Those caches depend on memory, and the bigger your documents are, the less you can fit in a fixed amount of memory.

Document size also affects index size and replication times. For large indices with master slave configurations, this can impact the rate at which you can update the index.

Ideally you should measure cache hit rates at different cache sizes, with and without the fields. If you can spend the memory to get a high enough cache hit rate with the fields, then by all means go for it. If you cannot, you may have to fetch the document content from another system.

There is a third alternative you didn't mention, which is to store the documents outside of the DB, but not in Solr. They should be stored in a format which is as close as possible to what you deliver with search results. The code which creates/updates the indices could create/update these documents as well. This is a lot of work, but like everything it comes down to how much performance you need and what you are willing to do to get it.

EDIT: For measuring cache hit rates and throughput, I've found the best test source is your current query logs. Take a day or two worth of live queries and run them against different indexes and configurations to see how well they work.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号