You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Ryan Yacyshyn <ry...@gmail.com> on 2017/08/15 16:00:32 UTC

SolrTextTagger on SolrCloud

Hi Everyone,

A quick question.. does the SolrTextTagger plugin (
https://github.com/OpenSextant/SolrTextTagger) work in SolrCould mode? It
works in standalone, but in SolrCloud, while I do get a response, it's
empty:

{
  "responseHeader": {
    "status": 0,
    "QTime": 36,
    "params": {
      "tagsLimit": "10",
      "field": "taggers",
      "echoParams": "all",
      "fl": "id,name,label",
      "overlaps": "NO_SUB",
      "collection": "tagger",
      "wt": "json"
    }
  },
  "tagsCount": 0,
  "tags": [],
  "response": {
    "numFound": 0,
    "start": 0,
    "docs": []
  }
}

Configs and content in both indices are the same.

Ryan