Hi all, My CQL query doesn't find row that i don't expect it to actually exist. This is the same if i try to use a SOLR query to try and retrieve the row contents (getting no row , it is normal). However, if i use a facet query looking for one of the fields row the row, i get back inconsistent results. At roughly once or twice out of 10 tries with the facet query i get back rows existing.
Although Apache Cassandra has consistent data across nodes, with repairs and reindexing correctly run, the data in Apache Solr with facet query is observed to be inconsistent. Below the facet query:
select scan from key.test where solr_query='{"fq":"testtype:DEVID AND model:HEAT AND readingtype:TR","q":"payloadtype:RECORDED AND testnumber:1007 AND reading:145 AND scan:15863","facet":{"field":"scan","mincount":1,"offset":0,"limit":10000,"sort":"reading asc"}}';
The question is why does the SOLR facet query find row counts while the CQL and SOLR queries return nothing ?
My dse version is 5.1.18.
Thank you for your help.