perlcassa icon indicating copy to clipboard operation
perlcassa copied to clipboard

a Perl client for Apache Cassandra

Results 16 perlcassa issues
Sort by recently updated
recently updated
newest added

I noticed two required modules were not listed in the README. I updated it to be all-inclusive.

Tried to add authentication support for perlcassa. Please feel free to re-factor. It works for me on a single-node Cassandra 2.1 cluster with PasswordAuthenticator. ``` my $client = new perlcassa(...

My Cassandra DB uses internal authentication, so I need to pass in a username/password in order to connect? I don't see a way to do this in percassa.

Is it possible to insert a null value using a client exec function? Example: $obj->exec("INSERT INTO cf1(key, value) VALUES(:key, :value)", {key => 1, value => NULL?? }); thx

I'm looking for a way to bulk insert into one column family with different keys and different col-keys: e.g.: column family "test" "key1" => "col1" => "data1" "key2" => "col1"...

Hello, I am using perlcassa 0.060. The cassandra DB I am interfacing with has several columns of the timestamp type: scheduled_time, generation_start_time, and generation_end_time. When I execute a select query...

bug

Found a bug in get_validators function. Changes made in the perlcassa.pm in function get_validators. The validation does not work for column values because the key_validator is being columns_validators array. However...

I am getting the following error from time to time, which however cannot reproduce. It just happens and when I run my script after sometime it succeeds. The data is...

Silly little issue. When connecting to a cassandra cluster with only one node seed_nodes currently does not work. ``` [ERROR] There were no available Cassandra servers left at .../perlcassa/lib/perlcassa/Client.pm line...

bug
enhancement

If there is only one node in the cluster the seed_nodes option does not work. This may be related to the fact that the system.peers table does not contain the...