Re: field with stored="false" is still stored

2017-04-17 Thread Maria Muslea
Thank you so much. This is the setting that I was missing. It is working as expected now. Maria On Mon, Apr 17, 2017 at 8:10 PM, Shawn Heisey wrote: > On 4/17/2017 4:40 PM, Maria Muslea wrote: > > I just upgraded to SOLR 6.4.1 from SOLR 4.10, and am having trouble with > > fields set as stored=

Re: field with stored="false" is still stored

2017-04-17 Thread Maria Muslea
One additional detail. In the Schema view the field appears as "unstored field", which is what I want, but still it seems to be stored. Thank you for your help. Field: concept Field-Type:org.apache.solr.schema.StrFieldDocs:1 Flags:Inde

Re: field with stored="false" is still stored

2017-04-17 Thread Shawn Heisey
On 4/17/2017 4:40 PM, Maria Muslea wrote: > I just upgraded to SOLR 6.4.1 from SOLR 4.10, and am having trouble with > fields set as stored="false". > > I edited solrconfig.xml according to the documentation, so I could edit the > schema using schema api. > > >true >managed-schema > > >

Re: field with stored="false" is still stored

2017-04-17 Thread Maria Muslea
Thank you for replying. While I did say "upgrade", I started with a "fresh" copy of Solr 6.4.1, I did not try to import anything from Solr 4. Once I saw that it isn't working as expected I only added one test document using SolrJ: SolrInputDocument p = new SolrInputDocument(); p.addField( "id", "

Re: field with stored="false" is still stored

2017-04-17 Thread Zheng Lin Edwin Yeo
Hi Maria, >From what you mentioned, you have upgraded directly from Solr 4 to Solr 6. If I'm not wrong, I don't think we can upgrade the index with a direct jump of 2 version. Was the field set to stored="false" before you upgrade? Regards, Edwin On 18 April 2017 at 06:40, Maria Muslea wrote

field with stored="false" is still stored

2017-04-17 Thread Maria Muslea
Hi, I just upgraded to SOLR 6.4.1 from SOLR 4.10, and am having trouble with fields set as stored="false". I edited solrconfig.xml according to the documentation, so I could edit the schema using schema api. true managed-schema I added a field using "Add Field" from the Schema GUI,