Questions tagged [fluentcassandra]

FluentCassandra is a .NET library for the Cassandra database.

FluentCassandra is a .NET library for the Cassandra database.

Interesting links:

24 questions
8
votes
2 answers

Fluent Cassandra vs Aquiles?

I am looking into the nosql databases and i am wondering which is better as an adaptor for the cassandra project. I develop in c#.net and so the site gave me a choice of two(very kind). But i want to know which will help me most and be best…
Daniel Casserly
  • 3,552
  • 2
  • 29
  • 60
5
votes
1 answer

FluentCassandra range selection problem

I have a problem in getting some data out from Cassandra using c# and FluentCassandra. In my Cassandra keyspace i have the following super column family definition:
kefer9
  • 334
  • 4
  • 7
4
votes
0 answers

cassandra - not able to insert decimal numbers using ruby client in a composite column

I have a composite column family with the following schema CREATE TABLE employees ( name varchar, month int, date int, salary decimal, …
3
votes
5 answers

Cassandra .Net driver and CQL driver (Aug 2012)

Questions have been asked on SO about this, but they are over a year old, so I'm re-posting. I'm not asking which is the "best" driver as that is subjective. I'm looking for data concerning stability, compliance to the latest Cassandra features,…
IamIC
  • 17,747
  • 20
  • 91
  • 154
2
votes
1 answer

Fluent Cassandra: What does "Apache.Cassandra.UnavailableException" mean?

I am using Cassandra 1.0.5 + newest Fluent Cassandra for my C# application. I followed the example (with a bit my own modification) in Fluent Cassandra site, but I got an exception called "Apache.Cassandra.UnavailableException". I am a Cassandra…
Jack
  • 3,913
  • 8
  • 41
  • 66
2
votes
2 answers

Fluentcassandra Filter Problem

i'm new in FluentCassandra and Cassandra. I have a Problem to filter data from a range of value. In my opinion i can use a Generic List to filter the result, but i don't no how?! In MSSQL i use this (SELECT * FROM TABLE WHERE Row1 like…
Calimero
  • 1,054
  • 1
  • 7
  • 17
2
votes
0 answers

Inserting composite row using fluent cassandra api

I created a composite primary key column family in cassandra CREATE TABLE rMessage ( Key varchar,msg_id varchar, msg blob, PRIMARY KEY(key,msg_id) ); I am trying to create a record via Fluent cassandra api. string key = "cat1"; …
Vytheese
  • 101
  • 1
  • 11
2
votes
1 answer

Unable to perform range queries in Cassandra 1.2

I'm accessing Cassandra 1.2 via FluentCassandra and C#. I used the DataStax installation package. The issue I have is I cannot execute the range query I show below. I have tried the following table create methods: CREATE TABLE Test (KEY text, p1…
IamIC
  • 17,747
  • 20
  • 91
  • 154
2
votes
2 answers

Stress testing Cassandra from C# consumes all network resources and fails after ~100K inserts

We are currently evaluating a Windows Cassandra deployment and I have managed to write a pretty straight-forward stress test. The test attempts to insert 1 million rows with various data into a single local node (to/from localhost, no replication,…
Kevin Coulombe
  • 1,517
  • 1
  • 17
  • 35
2
votes
1 answer

no viable alternative at character ']' when updating columnfamily

I'm new to Cassandra, but am trying to update a column family to have secondary indexes on some of the columns. After creating my column family, I run the following line of code: db.ExecuteNonQuery("UPDATE COLUMN FAMILY Targets with comparator =…
Ryan Caskey
  • 607
  • 8
  • 20
1
vote
2 answers

Connecting to Cassandra 0.7 in .NET

I am having a lot of trouble trying to upgrade my existing library from Cassandra 0.6 to 0.7 beta1. I had originally thought it was a order of operations issue, so I decided to break it down to the basics. Here is the basic setup that I will be…
Nick Berardi
  • 54,393
  • 15
  • 113
  • 135
1
vote
1 answer

Index Corruption in Cassandra

The Select all query works fine in a Cassandra KeySpace-Column Family. But when the Select by Key query is issued for a specific key, the FluentCassandra client throws a timeout exception. This happens for some of the keys in the same column family…
1
vote
3 answers

How to insert a new column to a row using CQL

i would like to know how to use CQL to insert a new column to a row... Is it possible? If not, how can i do that easily by using Fluent Cassandra? Thanks.
Lucas
  • 91
  • 1
  • 8
1
vote
1 answer

How to connect to Cassandra using FluentCassandra

I am new to Cassandra and FluentCassandra. In a real environment: we will have Cassandra installed in all the nodes(multiple servers). using (var db = new CassandraContext(keyspace: KeyspaceName, server: Server)) In this situation what should be…
Brainchild
  • 1,814
  • 5
  • 27
  • 52
1
vote
2 answers

How to query with FluentCassandra

I'm new to Cassandra and to FluentCassandra (C#.NET) too. I have heavy concepts of RDBMS (relational databases), like Microsoft SQL. Well... i was able to do some simple code, but, that is far of what i do when consulting with ADO.NET in RDBMS. What…
Lucas
  • 91
  • 1
  • 8
1
2