I am using banana dashboard for generating a non time series dashboard for my solr indexed data. The "location
" field in the indexed data doesn't display correctly in the banana dashboard facets widget with names like "San Francisco
", "New York
" being shown as "San
" and "Francisco
" and "New
" and "York
".
However when I cross check my Solr Query results these fields are correctly shown as a single entity "San Francisco" and "New York".
In the Solr core the managed-schema.xml file has the below entries:
<field name="content" type="opennlp-en-tokenization" indexed="true" stored="true" multiValued="true"/>
<field name="person" type="text_general" indexed="true" stored="true" multiValued="true"/>
<field name="organization" type="text_general" indexed="true" stored="true" multiValued="true"/>
<field name="location" type="text_general" indexed="true" stored="true" multiValued="true"/>
Any idea where I might be going wrong?
Banana Dashboard With Loc Names having Space Wrongly Tokenized As Two Different Places
Solr Dashboard With Loc Names Having Space Correctly Shown As One Single Location