dqprf0976 2017-03-07 10:37 采纳率: 100%
浏览 97
已采纳

从Apache Solr中的CSV文件索引数据

I have followed the tutorials given in below link

Indexing csv file in solr

I have configured solr server in my local and

But when i try to post csv file using the below command

java -Dtype=text/csv -Durl=http://localhost:8983/solr/jcg/update -jar post.jar  books.csv

I am getting below error response in command prompt

Any one help why i am getting the error response

Error:

<response>
<lst name="responseHeader"><int name="status">400</int><int name="QTime">111</int></lst><lst name="error"><lst name="metadata"><str name="error-class">org.apache.solr.common.SolrException</str><str name="root-error-class">org.apache.solr.common.SolrException</str></lst><str name=
"msg">ERROR: [doc=0553573403] unknown field 'cat'</str><int name="code">400</int></lst>
</response>
  • 写回答

1条回答 默认 最新

  • dquv73115 2017-03-07 13:21
    关注

    The tutorial you're following is quite old, so if you want follow the tutorial there are two options:

    1. the tutorial you're following misses the creation of Schema configuration in jcg collection. In this case you should fix your managed-schema file to jcg configuration taking care to add the following fields as suggested in the Tutorial, then reload the configuration (or restart Solr). At this point the "Indexing the Data" step should work correctly.
     <uniqueKey>id</uniqueKey>
     <!-- Fields added for books.csv load-->
     <field name="cat" type="text_general" indexed="true" stored="true"/>
     <field name="name" type="text_general" indexed="true" stored="true"/>
     <field name="price" type="tdouble" indexed="true" stored="true"/>
     <field name="inStock" type="boolean" indexed="true" stored="true"/>
     <field name="author" type="text_general" indexed="true" stored="true"/>
    
    1. You have correctly added schema and fields but not reloaded the configuration, but not reloaded the collection. So just reload the configuration (or restart Solr) and continue with the tutorial.

    On the other hand, if you're using an earlier version of Solr (6.4) I suggest to delete jcg collection and create it again:

    bin/solr delete -c jcg
    bin/solr create -c jcg -d ./server/solr/configsets/sample_techproducts_configs  
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?