Re: This IndexSchema is not mutable. Solr 7.3.1

2020-05-20 Thread Shawn Heisey
On 5/20/2020 4:30 PM, Vincenzo D'Amore wrote: another update. I think I found the problem. This error is generated when I have defined add-schema-fields in the updateRequestProcessorChain. In other words you can have ClassicIndexSchemaFactory but (and make sense) add-schema-fields has to be remo

Re: This IndexSchema is not mutable. Solr 7.3.1

2020-05-20 Thread Vincenzo D'Amore
Hi all, another update. I think I found the problem. This error is generated when I have defined add-schema-fields in the updateRequestProcessorChain. In other words you can have ClassicIndexSchemaFactory but (and make sense) add-schema-fields has to be removed by the updateRequestProcessorChain:

Re: This IndexSchema is not mutable. Solr 7.3.1

2020-05-20 Thread Vincenzo D'Amore
Hi Erick, thanks for the prompt support, I'm sure all the fields are defined (after all they are all strings and only 6). It seems that you cannot use CSV with ClassicIndexSchemaFactory On Wed, May 20, 2020 at 8:20 PM Erick Erickson wrote: > It’s the _schema_ that’s not mutable. Which implies

Re: This IndexSchema is not mutable. Solr 7.3.1

2020-05-20 Thread Erick Erickson
It’s the _schema_ that’s not mutable. Which implies you have field guessing turned _off_ I’d take a look at the solr log, the error might be more informative. But at a guess, you need to define the fields you’re importing, namely id, name, surname, gender, eyeColor and hairColor in your schema.

This IndexSchema is not mutable. Solr 7.3.1

2020-05-20 Thread Vincenzo D'Amore
Hi all, I'm trying to import a csv file in solr id,name,surname,gender,eyeColor,hairColor 1,pippo,pluto,male,brown,brown I'm using this command curl ' http://localhost:8983/solr/videoid/update?commit=true&header=true&fieldnames=id,name,surname,gender,eyeColor,hairColor&separator=,' -H "Content-