Finally got it to straighten out.
So I have two collections, my test collection and my production collection.
I "fat fingered" the test collection and both collections were
complaining about the missing "id" field.
I downloaded the config from both collections and it was showing the id
field in place (?)
I restarted the zookeeper I was talking to and then redownloaded the
configs and now it was gone.
Added it (and _version_) back, re-upped, restarted the solr node local
to that zookeeper and it stopped complaining about the missing id field.
Now waiting on the node I restarted to show "green".
-MIke
On 07/26/2016 04:32 PM, Alexandre Drouin wrote:
@Michael - there are GUI available for ZooKeeper:
http://stackoverflow.com/questions/24551835/available-gui-for-zookeeper
I used the Eclipse plugin before and while it is a bit clunky it gets the job
done.
Alexandre Drouin
-----Original Message-----
From: John Bickerstaff [mailto:j...@johnbickerstaff.com]
Sent: July 26, 2016 4:21 PM
To: solr-user@lucene.apache.org
Subject: Re: Can't load schema managed-schema: unknown field 'id'
Importance: High
@Michael - somewhere there should be a "conf" directory for your SOLR instance.
For my Dev efforts, I moved it to a different directory and I forget where it was,
originally -- but if you search for solrconfig.xml or schema.xml, you should find it.
It could be on your servers (or on only one of them) or, if someone has done a
really good job, it's in source control somewhere...
On Tue, Jul 26, 2016 at 2:17 PM, John Bickerstaff <j...@johnbickerstaff.com>
wrote:
<!-- Only remove the "id" field if you have a very good reason to.
While not strictly required, it is highly recommended. A <uniqueKey>
is present in almost all Solr installations. See the <uniqueKey>
declaration below where <uniqueKey> is set to "id". --> <field name="id"
type="string"
indexed="true" stored="true" required="true" multiValued="false" />
and further on in the file...
<!-- Field to use to determine and enforce document uniqueness. Unless
this field is marked with required="false", it will be a required
field --> <uniqueKey>id</uniqueKey>
On Tue, Jul 26, 2016 at 2:17 PM, John Bickerstaff <
j...@johnbickerstaff.com> wrote:
I don't see a managed schema file. As far as I understand it, id is
set as a "uniqueKey" in the schema.xml file...
On Tue, Jul 26, 2016 at 2:11 PM, Michael Joyner <mich...@newsrx.com>
wrote:
ok, I think I need to do a manual edit on the managed-schema file
but I get "NoNode" for /managed-schema when trying to use the zkcli.sh file?
How can I get to this file and edit it?
On 07/26/2016 03:05 PM, Alexandre Drouin wrote:
Hello,
You may have a uniqueKey that points to a field that do not exists
anymore. You can try adding an "id" field using Solr's UI or the
schema API since you are using the managed-schema.
Alexandre Drouin
-----Original Message-----
From: Michael Joyner [mailto:mich...@newsrx.com]
Sent: July 26, 2016 2:34 PM
To: solr-user@lucene.apache.org
Subject: Can't load schema managed-schema: unknown field 'id'
|Help!|
|
|
|What is the best way to recover from: |
Can't load schema managed-schema: unknown field 'id'
|I was managing the schema on a test collection, fat fingered it,
|but
now
I find out the schema ops seem to altering all collections on the core?
SolrCloud 5.5.1 |||
|
-Mike|||