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

Empty fields in update messages confuse DataImportHandler

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 1.4, 1.4.1
    • 3.1, 4.0-ALPHA
    • None
    • CentOS 5, Java 1.6, Tomcat 6

    Description

      I seem to be running into an issue with Solr (maybe just the DataImportHandler?) not liking empty field elements in the docs, and getting the wrong values into the fields of the index. Here's the entity declaration from data-config.xml for my isolated example:

      <document>
      <entity name="contentAsSolrAdd"
      dataSource="xml"
      processor="XPathEntityProcessor"
      stream="true"
      url="http://example.com/Content.xml"
      useSolrAddSchema="true">
      </entity>
      </document>

      And here's the Content.xml being pulled in by the DIH:

      <add>
      <doc>
      <field name="empty"></field>
      <field name="full">Lorem Ipsum Dolor</field>
      <field name="other">Some content is me!</field>
      </doc>
      </add>

      And here's the relevant portion of the output from the DIH in debug mode:

      <lst name="document#1">
      <str name="query">
      http://example.com/Content.xml
      </str>
      <str name="time-taken">0:0:0.6</str>
      <str>----------- row #1-------------</str>
      <str name="full">Some content is me!</str>
      <str name="empty">Lorem Ipsum Dolor</str>
      <str>---------------------------------------------</str>
      </lst>

      Notice that the field "full" doesn't appear here, but the following field "empty" has the content that was there for "full". The "other" field, which was non-empty, and preceded by a non-empty field, shows up correctly.

      Attachments

        1. SOLR-1973.patch
          4 kB
          Koji Sekiguchi
        2. SOLR-1973.patch
          2 kB
          Koji Sekiguchi
        3. SOLR-1973-test.patch
          2 kB
          Koji Sekiguchi

        Activity

          People

            koji Koji Sekiguchi
            sfkotto Sixten Otto
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: