Questions tagged [cassandra-lucene-index]

Question is about the Cassandra Lucene Index plugin created by Stratio

Should be used when the question is about the Cassandra Lucene Index plugin created by Stratio placed in https://github.com/Stratio/cassandra-lucene-index

23 questions
4
votes
1 answer

How to Search In cassandra?

i wanna to search in cassandra database. After much research, I found Stratio’s Cassandra Lucene Index Is there another way to simple search on Cassandra? I mean a simple search query something like in Mysql I've used this query but his…
3
votes
1 answer

Multiple filters per search cassandra lucene index

Is there a way to use multiple filters (using the builder) for a cassandra lucene index search? Here's an example of what I'm doing: // Age Filter conditionsToFilter.add(range("age") .lower(indexFormatDate(preferences.getAgeMax())) …
Programmer9000
  • 1,959
  • 3
  • 17
  • 27
2
votes
2 answers

Unable to find custom indexer class 'com.stratio.cassandra.lucene.Index'

I am using apache-cassandra-3.0.10. I have placed cassandra lucene jar with version 3.0.10.3 in cassandra lib folder. When i am trying to create lucene index it is showing the message Unable to find custom indexer class…
Seena V P
  • 934
  • 3
  • 9
  • 26
2
votes
1 answer

Cassandra Lucene Index boolean syntax

I am performing a user search system in my Cassandra database. For that purpose I installed Cassandra Lucene Index from Stratio. I am able to lookup users by username, but the problem is as follows: This is my Cassandra users table and the Lucene…
Ezequiel Adrian
  • 726
  • 1
  • 11
  • 29
1
vote
0 answers

Use of cassandra-lucene-index on high cardinality columns

I have use case which requires choosing either Stratio cassandra-lucene-index or Elastic Search on Cassandra. I am more aligned towards the Stratio implementation as it doesn't require creating/managing ES clusters. However, the below scenario puts…
1
vote
1 answer

PHP-CASSANDRA-LUCENE Paging with sorting

I am trying to fetch sorted records with paging in cassandra which is using lucene indexes for searching and sorting Note : There are total 26 rows in user table Case 1 : Sorting in ascending order with paging cqlsh > paging 10; cqlsh > SELECT…
Anil Singh
  • 81
  • 1
  • 1
  • 6
1
vote
1 answer

Is their any way to make "stratio cassandra-lucene-index" query from node js

I am using "stratio cassandra-lucene-index" plugin for making spatial queries to cassandra below is my query which i am making from cqlsh and is working fine, SELECT * FROM user_location WHERE expr(user_location_index, '{filter:{type:"geo_distance",…
spider1983
  • 1,098
  • 1
  • 7
  • 14
1
vote
1 answer

Cassandra (Datastax v3.5) using Stratio Lucene Index plugin - Windows

I'm trying to look at using the Stratios Lucene index plugin (on Windows)installation of Cassandra (Datastax v3.5) but can't get Cassandra to recognize it. I'm aware that you must use the corresponding version to Cassandra and have tried with 3.0.5…
1
vote
1 answer

How do you do lowercase prefix filtering with Stratio Cassandra Lucene Index

Is it possible to do lowercase prefix filtering/querying with Stratio Cassandra Lucene Index? I haven't been able to find documentation on this particular use case.
Programmer9000
  • 1,959
  • 3
  • 17
  • 27
1
vote
1 answer

saveToCassandra works with Cassandra Lucene plugin?

I am implementing the example on Lucene plugin for Cassandra page (https://github.com/Stratio/cassandra-lucene-index) and when I try to save the data using saveToCassandra I get the exception NoSuchElementException. If I use…
Cleosson
  • 128
  • 1
  • 6
1
vote
2 answers

Stratio cassandra-lucene-index plugin + BoundStatements

I just installed the Stratio cassandra-lucene-index Cassandra plugin. Is it possible to use the Stratio cassandra-lucene-index via BoundStatements somehow ? Or Using the Builder is the closest as it can get ? The reason I am asking is because I…
user3395041
  • 325
  • 1
  • 3
  • 11
0
votes
0 answers

Lucene index Query is stopped working suddenly

We are using Cassandra 4.0 version and their Lucene jar plugin have used in the lib folder of Cassandra to run the Lucene index queries but internment the Lucene queries are not working. They suddenly stopped working. We then dropped the index and…
0
votes
1 answer

After restart Cassandra, Lucene index is not working

Also check the error log file of the Cassandra and didn't find any warning or error in log file. Trying to rebuild the index but not working. Again need to insert for continuing Lucene index. But my other tables are working fine. Following my…
meteorx
  • 19
  • 9
0
votes
1 answer

Stratio cassandra maxClauseCount is set to 1024

I am using lucene index for Cassandra. com.stratio.cassandra cassandra-lucene-index-builder 3.9.4 I am getting the following…
user1860447
  • 1,316
  • 8
  • 25
  • 46
0
votes
1 answer

cassandra lucene - how to score a field higher

I want that a field in my table scores higher than another field. For example, I have two columns name and surname. If I search after "Hans" i want that the content in name scores higher. How can I do this using a cql statement like in the official…
Tugi
  • 3
  • 1
1
2