Questions tagged [elassandra]

Elassandra = Elasticsearch as a Cassandra secondary index. Elassandra tightly integrates elasticsearch within cassandra as a secondary index, allowing near-realtime search with all existing elasticsearch APIs. Use this tag for questions referring to the Elassandra.

Elassandra Homepage

Elassandra Documentation

Elassandra Github

74 questions
7
votes
2 answers

Cassandra: NoSpamLogger log Maximum memory usage reached

Every 15 min I see this log entry: 2018-07-30 10:29:57,529 INFO [pool-1-thread-2] NoSpamLogger.java:91 log Maximum memory usage reached (512.000MiB), cannot allocate chunk of 1.000MiB I´ve been reading through this Question, but I cant see…
Alex Tbk
  • 1,574
  • 2
  • 14
  • 31
4
votes
0 answers

Count of Elastic Search index varying when querying through Presto

We are using Elassandra (Elastic Search and Cassandra) and querying on Elastic search index using presto. When we get count of index using _count API then it comes correct each time, but when we query on index to find out count using presto then it…
3
votes
3 answers

Elasticsearch query from JSON formatted string?

I am working with Elasticsearch and I need to query value from the document which stored as JSON formatted string. Is there any option to query form Elasticsearch which stored JSON formatted string? Please see my use case I am saving my application…
Jamsheer
  • 3,161
  • 3
  • 23
  • 50
3
votes
1 answer

return only _source data from elasticsearch query

I want to get only _source fields by the query.but it returns hits which are unnecessary for me.so how to remove this hits before the _source data. GET fms/user/_search?filter_path=hits.hits._source{"query": {"match_all": {}}}
Sachin Arora
  • 73
  • 1
  • 14
2
votes
1 answer

Inconsistent Elassandra cluster state after node restart - less data on one node

I have migrated my existing data in 4 nodes Cassandra (with RF=3) to Elassandra and after putting my mappings whole data got indexed into Elassandra. After the completion of indexing, all nodes show a consistent result in /_cat/indices?v API. But as…
2
votes
1 answer

Indexing Cassandra using Elassandra

I'm trying to use Elassandra as a standalone instance locally. Using bin/cqlsh I've created a keyspace and have added a test table to it. I want to create an index on this table to run elasticsearch queries, but I'm not sure how to go about it. I…
Snowy Coder Girl
  • 5,162
  • 10
  • 36
  • 65
2
votes
1 answer

Elassandra not indexing UDT

This error occurs with elassandra 5.5.018 and 6.2.3.2. I have this table structure: CREATE TYPE applicationinfo ( industry text, area_of_application text, product_group text, sic_code text, conveyed_product text, flowability…
Alex Tbk
  • 1,574
  • 2
  • 14
  • 31
2
votes
1 answer

Connect Cassandra NoSQL DB and get the response as JSON response

One of our project , we have to get the data from Cassandra tables and populate it in JSON format in response. What are the possible ways to do it for the same. Some time , we require to get the data from more than one Cassandra table . Kindly let…
2
votes
1 answer

Elastic search - Retrieve data from multiple types

I am working with elasticsearch and I have two types which hold my data. Now I need to retrieve data from both types by using a single query. Please see my use case I have two types called basic and marks and I saved document as…
Jamsheer
  • 3,161
  • 3
  • 23
  • 50
2
votes
1 answer

Integrate existing cassandra data to elassandra

Is there any way to intigrate existing cassandra cluster link with the elassandra running instance.We have lot's of data in the existing cassandra cluster and when we intigrate my application with elassandra its work well but my existing data is not…
1
vote
1 answer

Elassandra: UDT List Match Query- No Results

I am using Elassandra. In Cassandra, I have a UDT: CREATE TYPE test.entity_attributes ( attribute_key text, attribute_value text ); It is used in table CREATE TABLE test.attributes_test ( id text PRIMARY KEY, attr…
1
vote
1 answer

Delete records from cassandra

I have written wrong update command. update table_name set col_val = 'x' where PRI_KEY_1 IN ( 50 values ) and PRI_KEY_2 IN ( 50 values ) and CLUSTER_KEY IN ( 10 Values ); This has created 40000 records where there was only 150. I can see only…
1
vote
1 answer

Elassandra single node cluster not starting. Stuck in Mutation Stage

I have a single node Elassandra cluster running on a box. It crashed light night. The following was the last line systemctl status output: Main process exited, code=killed, status=6/ABRT Upon restart however, it got stuck in mutation stage with…
Aditya
  • 13
  • 3
1
vote
1 answer

How to define datacenter.group in conf/elasticsearch.yml in order to run Elassandra multi data center?

I've 2DC DC1 x.x.x.1 running Elassandra 6.2.3 (seed) x.x.x.2 running Elassandra 5.5.0 (seed) DC2 x.x.x.3 running Elassandra 6.2.3 (seed) Actually I didn't want to create a multi data center, at first I have only two nodes in DC1 but they're unable…
BTH.S3
  • 137
  • 1
  • 7
1
vote
1 answer

Cassandra new node unable to join the cluster

Actually I'm adding new Elassandra node but the issue obviously involved to the Cassandra configurations. Previously, I have two nodes in the cluster. There're perfectly connect with each other. Using nodetool status also returns both nodes…
BTH.S3
  • 137
  • 1
  • 7
1
2 3 4 5