Re: Composite partition key token

2017-02-09 Thread Branislav Janosik -T (bjanosik - AAP3 INC at Cisco)
Works great, thank you! On 2/9/17, 6:26 AM, "Michael Burman" wrote: Hi, How about taking it from the BoundStatement directly? ByteBuffer routingKey = b.getRoutingKey(ProtocolVersion.NEWEST_SUPPORTED, codecRegistry); Token token =

Re: Composite partition key token

2017-02-09 Thread Edward Capriolo
On Thu, Feb 9, 2017 at 9:26 AM, Michael Burman wrote: > Hi, > > How about taking it from the BoundStatement directly? > > ByteBuffer routingKey = b.getRoutingKey(ProtocolVersion.NEWEST_SUPPORTED, > codecRegistry); > Token token = metadata.newToken(routingKey); > > In this

Re: Composite partition key token

2017-02-09 Thread Michael Burman
Hi, How about taking it from the BoundStatement directly? ByteBuffer routingKey = b.getRoutingKey(ProtocolVersion.NEWEST_SUPPORTED, codecRegistry); Token token = metadata.newToken(routingKey); In this case the b is the "BoundStatement". Replace codecRegistry & ProtocolVersion with what you

Composite partition key token

2017-02-08 Thread Branislav Janosik -T (bjanosik - AAP3 INC at Cisco)
Hi, I would like to ask how to calculate token for composite partition key using java api? For partition key made of one column I use cluster.getMetadata().newToken(newBuffer); But what if my key looks like this PRIMARY KEY ((parentResourceId,timeRT), childName)? I read that “:” is a separator