在Drupal搜索中未找到solr上索引的内容表单Nutch

在Drupal搜索中未找到solr上索引的内容表单Nutch,solr,drupal-7,nutch,Solr,Drupal 7,Nutch,我已经从nutch(1.12)抓取了数据,并将内容索引到ApacheSolr(4.10.4),我也将drupal(7)内容索引到了同一核心上的ApacheSolr。但是在搜索站点中的索引内容时,我只能得到从drupal索引的内容。搜索时未找到从apache nutch索引的内容。下面是从Drupal和Nutch索引的示例内容 索引到Solr的Drupal内容: { "id": "atrpeb/node/1", "site": "http://localhost/d

我已经从nutch(1.12)抓取了数据,并将内容索引到ApacheSolr(4.10.4),我也将drupal(7)内容索引到了同一核心上的ApacheSolr。但是在搜索站点中的索引内容时,我只能得到从drupal索引的内容。搜索时未找到从apache nutch索引的内容。下面是从Drupal和Nutch索引的示例内容

索引到Solr的Drupal内容:

{
        "id": "atrpeb/node/1",
        "site": "http://localhost/drupal-7.51/",
        "hash": "atrpeb",
        "entity_id": 1,
        "entity_type": "node",
        "bundle": "article",
        "bundle_name": "Article",
        "ss_language": "und",
        "path": "node/1",
        "url": "http://localhost/drupal-7.51/node/1",
        "label": "lorem",
        "spell": [
          "lorem",
          " dsgdsghjghjityjh dgsag ",
          "dgsag"
        ],
        "content": " dsgdsghjghjityjh dgsag ",
        "teaser": " dsgdsghjghjityjh dgsag ",
        "ss_name": "admin",
        "tos_name": "admin",
        "ss_name_formatted": "admin",
        "tos_name_formatted": "admin",
        "is_uid": 1,
        "bs_status": true,
        "bs_sticky": false,
        "bs_promote": true,
        "is_tnid": 0,
        "bs_translate": false,
        "ds_created": "2016-11-03T10:18:22Z",
        "ds_changed": "2016-11-03T10:18:22Z",
        "ds_last_comment_or_change": "2016-11-03T10:18:22Z",
        "im_field_tags": [
          1
        ],
        "tid": [
          1
        ],
        "im_vid_1": [
          1
        ],
        "sm_vid_Tags": [
          "dgsag"
        ],
        "tm_vid_1_names": [
          "dgsag"
        ],
        "_version_": 1551771958829383700,
        "timestamp": "2016-11-23T07:11:02.052Z"
},
{
        "id": "http://www.apple.com/apple-pay/",
        "url": "http://www.apple.com/apple-pay/",
        "content": "Apple Pay - Apple Open Menu Close Menu Apple Shopping Bag Apple Mac iPad iPhone Watch TV Music Support Search
                apple.com Shopping Bag Make secure purchases in stores, in apps, and
                now on the web.",
        "spell": [
                "Apple Pay - Apple Open Menu Close Menu Apple Shopping Bag Apple Mac iPad iPhone Watch TV Music Support Search apple.com Shopping Bag Make secure purchases in stores, in apps, and now on the web."
        ],
        "_version_": 1551772050149867500,
        "timestamp": "2016-11-23T07:12:28.977Z"
},
Nutch内容索引到Solr:

{
        "id": "atrpeb/node/1",
        "site": "http://localhost/drupal-7.51/",
        "hash": "atrpeb",
        "entity_id": 1,
        "entity_type": "node",
        "bundle": "article",
        "bundle_name": "Article",
        "ss_language": "und",
        "path": "node/1",
        "url": "http://localhost/drupal-7.51/node/1",
        "label": "lorem",
        "spell": [
          "lorem",
          " dsgdsghjghjityjh dgsag ",
          "dgsag"
        ],
        "content": " dsgdsghjghjityjh dgsag ",
        "teaser": " dsgdsghjghjityjh dgsag ",
        "ss_name": "admin",
        "tos_name": "admin",
        "ss_name_formatted": "admin",
        "tos_name_formatted": "admin",
        "is_uid": 1,
        "bs_status": true,
        "bs_sticky": false,
        "bs_promote": true,
        "is_tnid": 0,
        "bs_translate": false,
        "ds_created": "2016-11-03T10:18:22Z",
        "ds_changed": "2016-11-03T10:18:22Z",
        "ds_last_comment_or_change": "2016-11-03T10:18:22Z",
        "im_field_tags": [
          1
        ],
        "tid": [
          1
        ],
        "im_vid_1": [
          1
        ],
        "sm_vid_Tags": [
          "dgsag"
        ],
        "tm_vid_1_names": [
          "dgsag"
        ],
        "_version_": 1551771958829383700,
        "timestamp": "2016-11-23T07:11:02.052Z"
},
{
        "id": "http://www.apple.com/apple-pay/",
        "url": "http://www.apple.com/apple-pay/",
        "content": "Apple Pay - Apple Open Menu Close Menu Apple Shopping Bag Apple Mac iPad iPhone Watch TV Music Support Search
                apple.com Shopping Bag Make secure purchases in stores, in apps, and
                now on the web.",
        "spell": [
                "Apple Pay - Apple Open Menu Close Menu Apple Shopping Bag Apple Mac iPad iPhone Watch TV Music Support Search apple.com Shopping Bag Make secure purchases in stores, in apps, and now on the web."
        ],
        "_version_": 1551772050149867500,
        "timestamp": "2016-11-23T07:12:28.977Z"
},

您是否检查了Drupal应用于搜索的过滤器?(例如,如果它对Nutch内容中不存在的字段进行过滤,您将无法获得任何该内容)您如何实际搜索该内容?如果日志级别足够高,您可以在Solr日志中看到实际执行的查询。您是否检查了Drupal应用于搜索的过滤器?(例如,如果它对Nutch内容中不存在的字段进行过滤,您将无法获得任何该内容)您如何实际搜索该内容?如果日志级别足够高,您可以在Solr日志中看到实际执行的查询。