Apache nutch通过REST索引到solr [英] apache nutch to index to solr via REST

查看:199
本文介绍了Apache nutch通过REST索引到solr的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Apache Nuch中的新手-编写客户端以通过REST使用它. 在所有步骤(INJECT,FETCH ...)中都成功-在最后一步-尝试索引到solr时-无法传递参数. 请求(我在某些网站上对其进行了格式化)

newbie in apache nutch - writing a client to use it via REST. succeed in all the steps (INJECT, FETCH...) - in the last step - when trying to index to solr - it fails to pass the parameter. The Request (I formatted it in some website)

{
  "args": {
    "batch": "1463743197862",
    "crawlId": "sample-crawl-01",
    "solr.server.url": "http:\/\/x.x.x.x:8081\/solr\/"
  },
  "confId": "default",
  "type": "INDEX",
  "crawlId": "sample-crawl-01"
}

Nutch日志:

java.lang.Exception: java.lang.RuntimeException: Missing SOLR URL. Should be set via -D solr.server.url
SOLRIndexWriter
        solr.server.url : URL of the SOLR instance (mandatory)
        solr.commit.size : buffer size when sending to SOLR (default 1000)
        solr.mapping.file : name of the mapping file for fields (default solrindex-mapping.xml)
        solr.auth : use authentication (default false)
        solr.auth.username : username for authentication
        solr.auth.password : password for authentication
        at org.apache.hadoop.mapred.LocalJobRunner$Job.runTasks(LocalJobRunner.java:462)
        at org.apache.hadoop.mapred.LocalJobRunner$Job.run(LocalJobRunner.java:522)

实施了吗?传递给solr插件的参数?

Was that implemented? the param passing to solr plugin?

推荐答案

您需要使用/config/create/端点创建/更新配置,并带有POST请求和类似于以下内容的有效负载:

You need to create/update a configuration using the /config/create/ endpoint, with a POST request and a payload similar to:

{
    "configId":"solr-config",
    "force":"true",
    "params":{"solr.server.url":"http://127.0.0.1:8983/solr/"}
}

在这种情况下,我将创建一个新配置并指定solr.server.url参数.您可以验证它是否正在处理对/config/solr-config的GET请求(solr-config是先前指定的configId),输出应包含所有默认参数,请参见

In this case I'm creating a new configuration and specifying the solr.server.url parameter. You can verify this is working with a GET request to /config/solr-config (solr-config is the previously specified configId), the output should contain all the default parameters see https://gist.github.com/jorgelbg/689b1d66d116fa55a1ee14d7193d71b4 for an example/default output. If everything worked fine in the returned JSON you should see the solr.server.url option with the desired value https://gist.github.com/jorgelbg/689b1d66d116fa55a1ee14d7193d71b4#file-nutch-solr-config-json-L464.

在这之后,只需点击/job/create端点以创建新的INDEX Job,则有效负载应类似于:

After this just hit the /job/create endpoint to create a new INDEX Job, the payload should be something like:

{
    "type":"INDEX",
    "confId":"solr-config",
    "crawlId":"crawl01",
    "args": {}
}

这个想法是,您需要传递使用指定的solr.server.url以及crawlId和其他参数创建的configId.这应该返回类似于以下内容的内容:

The idea is that need to you pass the configId that you created with the solr.server.url specified along with the crawlId and other args. This should return something similar to:

{
  "id": "crawl01-solr-config-INDEX-1252914231",
  "type": "INDEX",
  "confId": "solr-config",
  "args": {},
  "result": null,
  "state": "RUNNING",
  "msg": "OK",
  "crawlId": "crawl01"
}

最重要的是,您需要使用设置的solr.server.url创建新配置,而不是通过JSON有效负载中的args键进行指定.

Bottom line you need to create a new configuration with the solr.server.url setted instead of specifying it through the args key in the JSON payload.

这篇关于Apache nutch通过REST索引到solr的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆