[Query] [Solr 8.11.1] Retrieving non stored fields data

2022-11-02 Thread Nagarajan Muthupandian
Hi, I am working on POC of Re-Indexing for Solr Upgrade ( 8 to 9 ). Idea is to query the existing index data and re-index it to the new version. 3 Important field attributes when we query “q=*:*’ to retrieve the data. stored docValues useDocValuesAsStored I tried different combinations of

Re: [Query] [Solr 8.11.1] Retrieving non stored fields data

2022-11-02 Thread Jan Høydahl
Hi, Your screenshot image may not have made it to the list (I did not see it), so can you please upload it somewhere and share the link, or paste in your query and query results as text. Jan > 2. nov. 2022 kl. 11:55 skrev Nagarajan Muthupandian > : > > Hi, > > I am working on POC of Re-Inde

Re: [External] : Re: [Query] [Solr 8.11.1] Retrieving non stored fields data

2022-11-02 Thread Nagarajan Muthupandian
Hi Jan, Sharing the query response.. (“ curl 'http://localhost:8983/solr/TestCore_1/select?q=*:*&wt=xml&indent=true' ”) 0 3 *:* true xml 1 { "id": "1", "title": "Test 1" "test_field_1": "test_field_1_1" "test_field_2": "test_field_2_1" "test_field_3

Re: [External] : Re: [Query] [Solr 8.11.1] Retrieving non stored fields data

2022-11-02 Thread Jan Høydahl
Hi, First - you cannot use docValues=true on a text field, only numerics and string. There should have been an error. Consequently, none of the three fields should have been returned. I think you may have a different schema.xml live than you think. Go to Admin UI -> "Cores" -> TestCore_1 and s

Re: I cannot get nested objects to index - with image links

2022-11-02 Thread Matthew Castrigno
Hi Thomas, I am confused by your comments of "custom" JSON and "SOLR" JSON to me there is only one JSON. I cannot modify the format of this JSON object. How can I configure SOLR to index this object as is ? When I attempt to wrap this JSON with an array wrapper SOLR thinks I am trying to do an

external File field with solr cloud

2022-11-02 Thread Satya Nand
Hi, We are planning to use an external file field. How do we manage it in solr cloud? Do we need to make a copy of this file in every shard's data directory or somehow solr cloud can manage it. ?