DataStax Enterprise: No Solr search results

Im using DataStax 3.2.7 and have 2 lines in Cassandra that show up in cqlsh.

I can't find these entries in Solr though, even after a kernel reboot and full reindex.

Any suggestions?

I also see this in the log: type mapping types older than 2 are not supported for the linkcurrent_search.content_items CQL3 table, forcing version 2.

+3


source to share


1 answer


When you use dynamic fields to request Maps in Cassandra, you must start the Key on your map with an alphabetic character prefix. In your case, literals with a map prefix:

score_calculated _

score_value_

score_velocity_

shared_on_



The reason for the "undefined field realtime" error occurs because the prefix specified for this field in schema.xml is not prefixed in real time.

An example of what one of your posts would look like:

{'score_value_realtime': 18.432}

Do the same for all map values.

See this url for details: http://www.datastax.com/documentation/datastax_enterprise/3.2/datastax_enterprise/srch/srchDynFlds.html

+2


source







All Articles