Re: is it possible to mutate Columns and CounterColumn in the same batch mutation?

2011-03-25 Thread Patricio Echagüe
thank you both. That makes Hector design much easier as well.

On Fri, Mar 25, 2011 at 2:50 AM, Sylvain Lebresne wrote:

> 2011/3/25 Jonathan Ellis :
> > You can't have them both in the same Mutation struct, but you can have
> > them in the map>> that is the "batch."
>
> Actually you can't, because we created a different thrift structure
> (CounteMutation) to hold
> counter mutations. Looking back, we really just did that to have a
> totally separate API for
> counters, but not sure that was a good idea. I've created
> CASSANDRA-2384 to merge
> CounterMutation into Mutation.
>
> --
> Sylvain
>
> > 2011/3/24 Patricio Echagüe :
> >> Hi folks, I'm modeling the partitioned counters into Hector and given
> the
> >> non-inheritance of Thrift, I don't see how to add a ColumnCounter and a
> >> Column in the same batch mutation.
> >> Is it possible do achieve? or are both in fact different mutations?
> >> Thanks
> >
> >
> >
> > --
> > Jonathan Ellis
> > Project Chair, Apache Cassandra
> > co-founder of DataStax, the source for professional Cassandra support
> > http://www.datastax.com
> >
>


Re: is it possible to mutate Columns and CounterColumn in the same batch mutation?

2011-03-25 Thread Sylvain Lebresne
2011/3/25 Jonathan Ellis :
> You can't have them both in the same Mutation struct, but you can have
> them in the map>> that is the "batch."

Actually you can't, because we created a different thrift structure
(CounteMutation) to hold
counter mutations. Looking back, we really just did that to have a
totally separate API for
counters, but not sure that was a good idea. I've created
CASSANDRA-2384 to merge
CounterMutation into Mutation.

--
Sylvain

> 2011/3/24 Patricio Echagüe :
>> Hi folks, I'm modeling the partitioned counters into Hector and given the
>> non-inheritance of Thrift, I don't see how to add a ColumnCounter and a
>> Column in the same batch mutation.
>> Is it possible do achieve? or are both in fact different mutations?
>> Thanks
>
>
>
> --
> Jonathan Ellis
> Project Chair, Apache Cassandra
> co-founder of DataStax, the source for professional Cassandra support
> http://www.datastax.com
>


Re: is it possible to mutate Columns and CounterColumn in the same batch mutation?

2011-03-24 Thread Jonathan Ellis
You can't have them both in the same Mutation struct, but you can have
them in the map>> that is the "batch."

2011/3/24 Patricio Echagüe :
> Hi folks, I'm modeling the partitioned counters into Hector and given the
> non-inheritance of Thrift, I don't see how to add a ColumnCounter and a
> Column in the same batch mutation.
> Is it possible do achieve? or are both in fact different mutations?
> Thanks



-- 
Jonathan Ellis
Project Chair, Apache Cassandra
co-founder of DataStax, the source for professional Cassandra support
http://www.datastax.com


is it possible to mutate Columns and CounterColumn in the same batch mutation?

2011-03-24 Thread Patricio Echagüe
Hi folks, I'm modeling the partitioned counters into Hector and given the
non-inheritance of Thrift, I don't see how to add a ColumnCounter and a
Column in the same batch mutation.

Is it possible do achieve? or are both in fact different mutations?

Thanks