Re: Large number of elements in multivalued field

2022-07-13 Thread Ryan Yacyshyn
Thanks Markus, The field does not need to be returned in the response so setting stored to false. Regards, Ryan On Wed, Jul 13, 2022, 06:02 Markus Jelsma wrote: > Hello Ryan, > > Solr should have no issues for indexing these kinds of documents, > retrieving them is another thing. For multiV

Re: Large number of elements in multivalued field

2022-07-12 Thread Markus Jelsma
Hello Ryan, Solr should have no issues for indexing these kinds of documents, retrieving them is another thing. For multiValued a lot of datastructures are created when serializing the document, that is probably the problem. If you do not need the field returned, do not stored=true the field. If

Large number of elements in multivalued field

2022-07-12 Thread Ryan Yacyshyn
Hi all, I have a data modelling question. A department of ours is indexing companies and including a multivalued field in the doc to store a set of tickers related to the company. Sounded fine at first until I saw one document where the multivalued field had over 50,000 elements in it. There are o