1
vote
3answers
84 views

Cassandra: Generate a unique ID?

I'm trying to generate a unique ID that will serve as a column family primary key in Cassandra. I read some articles about doing this with java using UUID but its seems like there is a probability for ...
1
vote
1answer
92 views

How do I generate UUID in PHPcassa

I have been searching google and stackoverflow for a tutorial on generating UUID using PHPcassa. I am a noob and I cant seem to figure this out. I am using the latest PHPcassa version, which is this ...
0
votes
0answers
67 views

phpCassa doesn't recognize UUID when passed as string

I'm having a problem with UUIDType in Cassandra. I'm using phpCassa. When I set the id as string I get an error saying: Notice: Trying to get property of non-object in ...
0
votes
1answer
124 views

How to increment/decrement a (version 1) TimeUUID?

How can I implement a function increment(uuid) that given version 1 TimeUUID A produces a valid version 1 TimeUUID B where: B > A There exists NO C where B > C > A And the same for decrement(uuid) ...
0
votes
1answer
103 views

How to increment/decrement a random (type 4) UUID?

How can I implement a function increment(uuid) that given version 4 UUID A produces a valid version 4 UUID B where: B > A There exists NO C where B > C > A And the same for decrement(uuid) that ...
1
vote
1answer
273 views

Astyanax retrieve by UUID

How do we retrieve a row in Cassandra using Astyanax? I have a web application which requires pagination to be done on the server side, the db is cassandra. The row key is a UUID and I have few ...
2
votes
1answer
532 views

how to generate unique id like facebook, google+ in NodeJS

I'm using nodeJS and cassandra I'm currently using UUID v1 as unique id but, I think uuid is too long I want to generate numeric unique id like fb and G+, which is shorter and don't have to check ...
2
votes
1answer
225 views

using UUID1 with phpcassa

Have following CF: create column family gr_ip2 with column_type = 'Standard' and comparator = 'TimeUUIDType(reversed=true)' ...; then do following code: $uuid1 = phpcassa\UUID::uuid1(null, $time); ...
1
vote
1answer
198 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 ...
1
vote
1answer
1k views

Slice query on TimeUUID columns

I've a cassandra db and column family with TimeUUIDType comparator. I use Hector and have keyspace using RandomPartitioner. I'd like to make slice query to get pageable results ordered by TimeUUID. ...
1
vote
1answer
198 views

Unique TimeUUID in cluster environment vs. Cassandra

I'd like to generate unique TimeUUID values which in next step will be stored in Cassandra as a key. As I checked out a creation of TimeUUID in com.eaio package is thread safe and it's fine but my ...
3
votes
3answers
589 views

Cassandra/Pycassa: Getting random rows

Is there a possibility to retrieve random rows from Cassandra (using it with Python/Pycassa)? Update: With random rows I mean randomly selected rows!
0
votes
1answer
269 views

How can I execute a query when columns comparator_type is in LexicalUUIDType?

I have created a column family with Comparator_type="LexicalUUIDType", Default_validation_class="UTF8Type" and Key_validation_class="UTF8Type". And set TimeUUID as column_name within the column ...
1
vote
1answer
475 views

PHPCassa - Can't insert when using uuid timestamp as key

I'm trying to store data into cassandra with it being ordered by time. Having trouble using the TimeUUIDType as the key. I get the following error with phpcassa... Fatal error: Uncaught exception ...
4
votes
1answer
603 views

UUID cassandra sorting?

Lets say i have an user column family with unique keyname + preset for specific client <?php uniqid ("serverA");//generate something like; serverA4b3403665fea6 ?> I can select them by ...
1
vote
1answer
519 views

cassandra-cli: unable to coerce 'allias' to version 1 UUID

I'm triyng to create a column family with TimeUUIDType as name of row: create column family users with column_type = 'Standard' and comparator = 'TimeUUIDType' and default_validation_class = ...
1
vote
2answers
800 views

How does UUID work with PHPCassa

I am using: CassandraUtil::uuid1(); This is what I get: ämªðÏBà=0£Ï‰ I though it would output a int. What is going on? Is it normal? Also should I use uuid1 or 2 or 3 or 4 or ...? Thanks in ...
2
votes
1answer
659 views

Migrating from Mysql to Cassandra

Previously I was using the class found here to convert userID to some random string. From his blog: Running: alphaID(9007199254740989); will return 'PpQXn7COf' and: alphaID('PpQXn7COf', true); ...
2
votes
1answer
1k views

Cassandra - How to insert an UUID

I'm using Cassandra 0.6.4 and I'm trying to insert an UUID for a column and I get an exception of: InvalidRequestException(why:UUIDs must be exactly 16 bytes). What is the correct way to insert an ...
4
votes
1answer
215 views

Is there a way to retroactively create time/node based UUID in PHP?

Most time-based (type 1) UUIDs are created using the current time. I'm migrating a MySQL database to cassandra and would like to create timebased UUIDs for archived items. Can someone provide an ...
2
votes
1answer
163 views

Why does Cassandra act strange with byte keys (with Lazyboy)?

I wrote a test program for testing Cassandra, and I had problems reading data. Seems like Cassandra sometimes takes one key for another. Here is my test program : from lazyboy import * from ...
1
vote
1answer
1k views

TimeUUID with Cassandra and Lazyboy

I try to insert column with UUID1 keys to be able to sort them by date. I always get the error "cassandra.ttypes.InvalidRequestException: InvalidRequestException(why='UUIDs must be exactly 16 ...
8
votes
2answers
1k views

Generate UUID for Cassandra in Python

Heh, I'm using cf.insert(uuid.uuid1().bytes_le, {'column1': 'val1'}) (pycassa) to create a TimeUUID for Cassandra, but getting the error InvalidRequestException: ...
4
votes
1answer
693 views

How do I store and retrieve TimeUUIDType types with Net::Cassandra::Easy?

Doing the following: my $c = Net::Cassandra::Easy->new(server => 'localhost', port => '9160', keyspace => 'Keyspace1'); $c->connect(); my $uuid_bin = ...
3
votes
1answer
271 views

Unique user ID in a Pylons web application

What is the best way to create a unique user ID in Python, using UUID?
3
votes
1answer
1k views

how to use timeuuid names in cassandra

I have a problem, I would like to build logging system which will be using timeuuid type as a column name which will allow me ask for it later. Since for range queries order by time I need to use ...
4
votes
1answer
3k views

How do I insert a row with a TimeUUIDType column in Cassandra?

In Cassandra, I have the following Column Family: <ColumnFamily CompareWith="TimeUUIDType" Name="Posts"/> I'm trying to insert a record into it as follows using a C++ generated function ...