Re: How to add a new field to already an existing index in Solr 6.6 ?

2019-12-08 Thread Dave
Or just do it the lazy way and use a dynamic field. I’ve found little to no drawbacks with them aside from a complete lack of documentation of the field in the schema itself > On Dec 8, 2019, at 8:07 AM, David Barnett wrote: > > Also - look at adding fields using Solr admin, this will these

Re: How to add a new field to already an existing index in Solr 6.6 ?

2019-12-08 Thread David Barnett
Also - look at adding fields using Solr admin, this will these will be available to use (I believe) without the need to restart and is very easy to do. On Sun, 8 Dec 2019, 13:03 David Barnett, wrote: > There is a few ways to add fields, adding the field definition in the > managed-schema will

Re: How to add a new field to already an existing index in Solr 6.6 ?

2019-12-08 Thread David Barnett
There is a few ways to add fields, adding the field definition in the managed-schema will do this for you but make sure you have downloaded the current config before you edit and reload the schema. Google - solr 6.6 upconfig downconfig for lots of guides on this On Tue, 3 Dec 2019, 13:21 Erick

Re: How to add a new field to already an existing index in Solr 6.6 ?

2019-12-07 Thread Vignan Malyala
How do I update my schema with new field? On Tue, Dec 3, 2019 at 6:51 PM Erick Erickson wrote: > Update your schema to include the new field and reload your collection. > > Then updating your field should work. > > Best, > Erick > > > On Dec 3, 2019, at 4:40 AM, Vignan Malyala wrote: > > > >

Re: How to add a new field to already an existing index in Solr 6.6 ?

2019-12-03 Thread Erick Erickson
Update your schema to include the new field and reload your collection. Then updating your field should work. Best, Erick > On Dec 3, 2019, at 4:40 AM, Vignan Malyala wrote: > > How to add a new field to already an existing index in Solr 6.6 ? > > I tried to use set for this, but it shows

How to add a new field to already an existing index in Solr 6.6 ?

2019-12-03 Thread Vignan Malyala
How to add a new field to already an existing index in Solr 6.6 ? I tried to use set for this, but it shows error as undefined field. But however I could create a new index with set. But, how to add new filed to already indexed data? Is it possible? Thank you! Regards, Sai