Pycassa is a python client for the Cassandra key-value (NoSQL) data store.
1
vote
1answer
35 views
python pycassa encoding issue
Having issue encoding issue in inserting data in cassandra using pycassa. The field name is 'text' and content is tweet which can have non-ascii characters. I tried to encode using encode('UTF-8') the ...
0
votes
0answers
27 views
python pycassa throwing mutation_map error
I use pycassa.batch Mutator, for batch processing of of bulk loads. So,
Mutator.insert(mut, column_family, *a, **kw)
Mutator.send(self, *a, **kw) -----------------> Throws exception
send throws an ...
0
votes
0answers
6 views
get_range and get_indexed_slices in pycassa
I want to retrieve data with the key and a filter in a column, but I can see that pycassa does not allow to do that easily
How can I combine two functions get_range and get_indexed_slices at once?
0
votes
0answers
30 views
Store a collection in Cassandra with Pycassa
I want to store a list of data in Cassandra with Pycassa and columnfamilymap
row_key -> {
[column_name; entry1] -> "",
[column_name; entry2] -> "",
...
}
The problem is, ...
0
votes
1answer
31 views
Specify column type in pycassa
I want to do the equivalence of these CLI command in pycassa:
CREATE COLUMN FAMILY users
WITH comparator = UTF8Type
AND key_validation_class=UTF8Type
AND column_metadata = [
{column_name: full_name, ...
3
votes
2answers
104 views
loading all rows from cassandra using multiple (python) clients in parallel
When using Cassandra's recommended RandomPartitioner (or Murmur3Partitioner), it is not possible to do meaningful range queries on keys, because the rows are distributed around the cluster using the ...
1
vote
1answer
40 views
How do I delete all the columns in a row using pycassa?
I have a row with multiple simple columns and i need to delete only the columns in the row without deleting the row key itself.
I tried using remove('row key') but it deletes the row key itself. How ...
0
votes
0answers
35 views
How to handle AllServersUnavailable Exception
I wanted to do a simple write operation to a Cassandra instance (v1.1.10) on a single node. I just wanted to see how it handles constant writes and if it can keep up with the write speed.
pool = ...
2
votes
1answer
139 views
Best Cassandra 1.2 driver for Python, Should I forget about CQL? [closed]
I'm looking for a good driver for python:
1) Pycassa. It doesn't support CQL, and they dont think to do it soon.
2) https://code.google.com/a/apache-extras.org/p/cassandra-dbapi2/.
I thought to ...
1
vote
1answer
50 views
Cassandra inserts throttled on cluster
I'm experiencing a weird issue with Cassandra. My understanding was that Cassandra was scale-able for inserts. Meaning that if I was getting 1500 writes/s with a cluster of 2 servers that I could ...
0
votes
0answers
28 views
Several non primary key column in Cassandra, , and use Pycassa
My requirement is to have a column family like the following:
mac_ap text,
proto int,
stime int,
total_data int,
total_assoc int,
location_id int,
location_name text
...
2
votes
1answer
53 views
how to get rows in reverse sorted order using pycassa get_range?
I want to get the rows returned by get_range in pycassa to be in reverse sorted order..i.e. from finish to start.
I know that there exists a parameter column_reversed for getting columns in reverse ...
0
votes
1answer
26 views
Can DDL be dumped using PycassaShell before actually creating column famiy
PycassaShell uses SYSTEM_MANAGER.create_column_family() to create column families in cassandra ? Is there a way to dump the DDL before actually making the commit in cassandra? Do I have to modify ...
1
vote
1answer
140 views
Updating TimeUUID columns in cassandra
I'm trying to store some time series data on the following column family:
create column family t_data with comparator=TimeUUIDType and default_validation_class=UTF8Type and ...
0
votes
1answer
54 views
Is slicing and dicing of distributed counter data in cassandra using pycassa possible?
I read and googled a lot but could not find a way to slice n dice a counter data based on a condition. Is there a way in Cassandra to do this? If yes, pl ease help me with it.
For example:
If I am ...
0
votes
0answers
34 views
When load increases Cassandra Error : Uncaught exception 'Exception' with message 'describe_keyspace failed: unknown result'
I have implemented cassandra with 3 node cluster and it was working fine. All of sudden I got the error in my error log - Uncaught exception 'Exception' with message 'describe_keyspace failed: unknown ...
0
votes
2answers
64 views
Cassandra - Get on CF with key returning 0 results, but key exists when retrieving whole table using pycassa
We have a table in Cassandra 1.2.0. That has an VarInt key. When we search keys we can see that they exist.
Table description:
CREATE TABLE u (
key varint PRIMARY KEY,
) WITH COMPACT STORAGE AND
...
0
votes
0answers
22 views
how to install pycassa on osx
Does anyone have a detailed and working instruction to install pycassa on osx? I've trying the options found on linke, such as use pip and pypm etc, but none of them works.
Thanks,
0
votes
3answers
420 views
Reading Cassandra 1.2 table with pycassa
Using Cassandra 1.2. I created a table using CQL 3 the following way:
CREATE TABLE foo (
user text PRIMARY KEY,
emails set<text>
);
Now I am trying to query the data through pycassa:
...
1
vote
1answer
60 views
pycassa - Remove multiple rows by their secondary index?
I have a column family with a secondary index 'pointer'. How do I remove multiple rows that have the same 'pointer' value (e.g. abc)?
The only option I know is:
expr = ...
1
vote
1answer
92 views
How to repair cassandra. I am not sure how to use the nodetool after changing snitch
I am an intern with not much experience so I am sure you guys can help me out here a bit. I get all types of nodetool syntax from google and I am not sure how to use it and when i should use it.
My 3 ...
1
vote
1answer
268 views
Cassandra Pycassa connection pool, how to use properly?
In order to get a Cassandra insert going faster I'm using multithreading, its working ok, but if I add more threads it doesnt make any difference, I think I'm not generating more connections, I think ...
1
vote
1answer
178 views
Pycassa, threadpool, “Exception in thread Thread-3 (most likely raised during interpreter shutdown):”
.I'm trying to speed up an insert into Cassandra using pycassa.
I heard that using multithreading and opening multiple connections speeds it up a lot. I'm inserting a load of tweets in json format.
My ...
1
vote
1answer
35 views
How to get pycassaShell working in windows?
EDIT: I got it working, I went into the pycassa directory and typed python pycassaShell but the 2nd part of my question (at the bottom there) is still valid: how do I run a script in pycassaShell?
I ...
0
votes
1answer
91 views
Quering Cassandra columns with Pycassa
I have Cassandra DB similar to this:
key | name | client
1 A C1
2 B C2
3 C C1
I access to my cassandra db with Pyhton (pycassa).
Is there a way to query the database in ...
0
votes
1answer
80 views
Python Append JSON list within for loop
I have the following Python code which takes data from cassandra database.
What i want to achieve is to have json encoded variable at the end.
However, not surprisingly, my code only attaches the ...
0
votes
0answers
12 views
don't care fields in pycassa composite column query [duplicate]
Possible Duplicate:
Is it possible to search second component of composite column with phpcassa for cassandra
I am using pycassa interface to cassandra. I have a composite column of type
...
4
votes
1answer
329 views
pycassa TypeError: A str or unicode, unable to do cassandra insert
My scripting is python and cassandra is data stax community edition.
TypeError: A str or unicode value was expected, but int was received instead (3902503)
this is the error I'm getting while ...
1
vote
2answers
244 views
How to get_range for available rows in Cassandra?
In my application, I want to get all the rows in a column family, but to ignore the rows that are temporarily unavailable (e.g. some nodes are down).
I have multiple nodes. If one of the node is ...
-1
votes
1answer
86 views
Specifying primary key with create_column_family
How do you specify a primary key when using pycassa's SystemManager.create_column_family ?
Thanks.
1
vote
1answer
73 views
pycassa index with multiple values
I would like to query an indexed column family for multiple values. e.g.:
key, {key1: val1, key2: val2, key3, val1}
so if I query for [val1, val2], then [key1, key3] will be returned.
Is this ...
1
vote
1answer
89 views
pycassa timeseries data on multiple keys
I am trying to make a newsfeed for twitter clone - that shows the newest tweets for a selection of users, rather than newest tweets from all users or newest tweets from a single user.
I have UUID ...
3
votes
1answer
564 views
Why Cassandra secondary indexes are so slow on just 350k rows?
I have a column family with the secondary index. The secondary index is basically a binary field, but I'm using a string for it. The field called is_exported and can be 'true' or 'false'. After ...
1
vote
1answer
94 views
Filtering columns in Cassandra
I am new to Cassandra.
Lets say I have 1,000,000 columns. I would like to return only columns that have the string 'test' in the column name.
Is it possible with Cassandra/Pycassa?
1
vote
1answer
589 views
How to store a multi-dimensional array in cassandra
I would like to store array-like objects in cassandra, but I need to access every element also with cql, therefore I need to build indexes. Unfortunately the size of the arrays is dynamic (but not the ...
0
votes
1answer
136 views
Ideal method for storing hierarchical data in HDF5
Hello Oracles of StackOverflow,
First time I managed to ask a question on stack overflow, so feel free to throw your cabbages at me. (or correct the way I should be asking my question)
I have this ...
0
votes
2answers
73 views
Equivalent of ReferenceField in Pycassa?
I'm trying to get my head around Cassandra/Pycassa db design.
With Mongoengine, you can refer to another class using "ReferenceField", as follows:
from mongoengine import *
class User(Document):
...
1
vote
1answer
470 views
Cassandra crashes, no idea whats going wrong
The system crashes after sometime with following exceptions:
Python Pycassa Exception reads:
Error: An attempt was made to connect to each of the servers twice,
but none of the attempts ...
0
votes
1answer
410 views
Cassandra sort by key (TimeUUID)
I'm having trouble sorting by key when calling get_range() on a column family.
The keys are TimeUUID
the key validation class is org.apache.cassandra.db.marshal.TimeUUIDType
the partitioner is ...
11
votes
4answers
167 views
Getting an unexpected NameError in pycassaShell when invoking one function from another
I'm playing with pycassaShell (as part of the Cassandra and the Twissandra tutorial).
When trying to add two functions inside the shell, and call one from the other I get an error that the Name is not ...
2
votes
1answer
98 views
Creating Data models in cassandra using Django
How data model creates in cassandra using Django backend?
I have refered twissandra , but i'm confused with how the datamodel created(like in a relational database)
1
vote
1answer
203 views
how to get the data using pycassa with uuid key
I inserted the data like this.
import pycassa, datetime
cf.insert(pycassa.util.convert_time_to_uuid(datetime.datetime.now()),{str(i): 'val'})
......
data
dbed33be-cc9e-11e1-8080-808080808080 ...
0
votes
0answers
114 views
pycassa changing composite type column validators
I have composite types on a column family.
How do I make cassandra accept that all data that exists in ('time', <anything>) will be a timestamp?
I have tried
sys.alter_column('test01', ...
2
votes
1answer
223 views
pycassa remove specific key from super column
I know how to remove an entire super column, but not an individual key within. My google kung fu has failed me.
so, to remove a super column:
cf_accounts.remove('key', ['super_column'])
Am I ...
1
vote
1answer
126 views
Does pycassa's ColumnFamily.get_indexed_slices return a generator?
The documentation at [1] says that ColumnFamily.get_range() returns a python generator over (key, {column_name: column_value}). I wonder if ColumnFamily.get_indexed_slices() also returns a generator.
...
0
votes
1answer
39 views
pycassaShell keybindings arrows don't work ^[[A
When in pycassaShell, If I press arrow keys to move the cursor,
I see ^[[A to ^[[D characters appended,
it doesn't happen with normal python console interpreter
nb:
Python 2.6.5, / Ubuntu 10.04
...
0
votes
1answer
90 views
How to print a superCF with pycassa
The following code fails (ValueError: too many values to unpack
, under pycassaShell)
Is there some way to pretty print the supercolumns?
cf = pycassa.ColumnFamily(pool, 'Super1')
res = ...
0
votes
0answers
284 views
django template iterate ordered dict generator
I have an ordered dict generator (output from pycassa query). It has the format {'key_0': 'value_0'}
I am having trouble iterating over it.
I am trying
{% for k in results %}
{{ k }}
{% end for ...
2
votes
3answers
2k views
best Cassandra library/wrapper for Python?
I found lazyboy and pycassa - maybe there are others too. I've seen many sites recommending lazyboy. IMHO the project seems dead, see ...
2
votes
1answer
1k views
How to retrieve the timestamp from cassandra?
In the below cassandra, "get result"..we can able to retrieve the column name and values. But how to retrieve the timestamp..Is there any better idea to get the values by using timestamp
...