Click here to Skip to main content
15,885,914 members
Everything / Cassandra

Cassandra

Cassandra

Great Reads

by Sacha Barber
Looking at Spark/Cassandra working together
by Sacha Barber
Looking at Spark/Cassandra working together
by otark777
Some thoughts about one page angular site based on ASP.NET Web API 2 and Cassandra NOSQL database
by otark777
Some thoughts about one page Angular site based on ASP.NET Web API 2 and Cassandra NOSQL database

Latest Articles

by Gerardo Recinto
Scaleable Objects Persistence, a Micro Service companion database engine, i.e., a code library
by Gerardo Recinto
Scaleable objects persistence, ACID transaction adapter
by Mohammad Nasirifar
Overview of my solution to “Existing multi-node data-intensive application” translates to cassandra
by Quest Software
If you wanted to ramp up database DevOps, which development tasks would be most important for you?

All Articles

Sort by Score

Cassandra 

20 Jan 2016 by Sacha Barber
Looking at Spark/Cassandra working together
10 Feb 2016 by Sacha Barber
Looking at Spark/Cassandra working together
25 Feb 2016 by otark777
Some thoughts about one page angular site based on ASP.NET Web API 2 and Cassandra NOSQL database
8 Mar 2016 by otark777
Some thoughts about one page Angular site based on ASP.NET Web API 2 and Cassandra NOSQL database
27 May 2020 by Mohammad Nasirifar
Overview of my solution to “Existing multi-node data-intensive application” translates to cassandra
25 Jan 2024 by Gerardo Recinto
Scaleable objects persistence, ACID transaction adapter
23 May 2017 by Wendelius
As far as I know, there is no direct equivalent for a procedure in Cassandra. If you need a function in a SELECT, INSERT or UPDATE statement, you can create an UDF, see CREATE FUNCTION[^] On the other hand if you need a block of DML statements, you could use BATCH[^]. However, since this is...
30 May 2017 by Richard MacCutchan
Same answer as your other two questions on the same subject. Please do your own research before posting here.
30 Jan 2018 by Quest Software
If you wanted to ramp up database DevOps, which development tasks would be most important for you?
15 Apr 2018 by mikcutu
Hello, I am interested in working in Oracle and Cassandra in same application. Is there a possibility to interrogate Cassandra from Oracle? If yes, should it be done via a DBLink from Oracle to Cassandra? Can someone provide a tutorial for this approach, please? Thank you, What I have tried:...
1 Dec 2020 by Member 15008824
In our use case we want to show some charts, metrices and grid based on Kafka topics data.( All Topics are already loaded with Json data from different systems ) We are planning to use Kafka connect and will sync topics data to Cassandra...
31 Dec 2020 by Richard MacCutchan
You already posted this question at Cassandra sink connector : how to add whole topic JSON as it is into single cassandra table column[^]. Please do not repost.
2 May 2023 by Member 15226818
I was trying to connect to Postman, but I received an error message that says "error: Not Found, path: /api/postService/getPost". Apache Cassandra is also running perfectly, and I have created a keyspace too.Here is my controller class . can...
30 Jan 2024 by Gerardo Recinto
Scaleable Objects Persistence, a Micro Service companion database engine, i.e., a code library
23 Feb 2016 by otark777
Some thoughts about one page Angular site based on ASP.NET Web API 2 and Cassandra NOSQL database
23 May 2017 by Member 13218984
I have already done some function but i cant able to do so please let me know the examples What I have tried: Function and stored procedure in cassandra
30 Dec 2020 by Member 15008824
I am using Cassandra Sink Connector with Kafka, now i want to insert whole topic JSON as it is into single Cassandra table column instead of creating diff cols. so what should be the connector KCQL expression ? INSERT�INTO�connector_json_table...
19 Sep 2022 by Jasmine L
it works with ALLOW FILTERING, but I dont want to use that.How do I get max value of a row when value is not in primary key? What I have tried: stmt = session.prepare("Select *, max(price) from clothing_sales where tag = 123 and price=?) ...