Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-5119

Managed schema problems after adding fields via Schema Rest API

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • 4.4
    • 4.5, 6.0
    • Schema and Analysis
    • None

    Description

      After adding fields with the Schema API the schema cannot be shown on the Admin UI anymore and reloading the Collection/Core throws an NullPointerException. The schema itself seems to work.

      Steps to reproduce:

      1. enable managed schema in example/solr/collection1/conf/solrconfig.xml

      2. upload that config

      sh example/cloud-scripts/zkcli.sh -z localhost:8575 -cmd upconfig -d example/solr/collection1/conf/ -n myconfig

      3. create a new collection

      curl "http://localhost:8983/solr/admin/collections?action=CREATE&name=mycollection&numShards=1&replicationFactor=1&collection.configName=myconfig"

      4. add some fields

      curl http://localhost:8983/solr/mycollection/schema/fields -X POST -H 'Content-type:application/json' --data-binary '[
      {
        "name": "my_field",
        "type": "string",
        "stored": true,
        "indexed": true
      },
      {
        "name": "my_field2",
        "type": "string",
        "stored": true,
        "indexed": true
      }
      ]'

      5. Problem 1: http://localhost:8983/solr/#/mycollection_shard1_replica1/schema

      <?xml version="1.0" encoding="UTF-8"?>
      <response>
      <lst name="responseHeader"><int name="status">404</int><int name="QTime">2</int></lst><lst name="error"><str name="msg">Can not find: /configs/myconfig/null</str><int name="code">404</int></lst>
      </response>
      

      6. Problem 2: http://localhost:8983/solr/admin/collections?action=RELOAD&name=mycollection

      <response>
      <lst name="responseHeader"><int name="status">0</int><int name="QTime">845</int></lst><lst name="failure"><str name="10.147.252.2:8983_solr">org.apache.solr.client.solrj.impl.HttpSolrServer$RemoteSolrException:Server at http://10.147.252.2:8983/solr returned non ok status:500, message:Server Error</str></lst>
      </response>
      

      7. when restarting Solr, both 5 and 6 work

      Attachments

        1. SOLR-5119.patch
          2 kB
          Steven Rowe

        Activity

          People

            sarowe Steven Rowe
            wakka NilsK
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: