Using an IBackingMap is the easiest way to implement it, if if you don't want to use transactions. NonTransactionalMap delegates to an IBackingMap. Otherwise, you have to implement several different classes yourself. See https://github.com/nathanmarz/storm/wiki/Trident-state for details.
Here's an existing trident-cassandra implementation that you can reference: https://github.com/Frostman/trident-cassandra -Cody On Mon, Feb 10, 2014 at 10:51 AM, Adrian Mocanu <[email protected]>wrote: > Hi group, > > I'm wondering, if I do some aggregation with trident and want to store > data in Cassandra [via .persistentAggregate(..)], but without caring about > fault tolerance, do I still need to implement IBackingMap? > > > > My guess is that I still do because I need to implement multiPut, but not > multiGet since I don't care about previous state. > > Is this correct? > > > > Thanks > > -Adrian > > > -- Cody A. Ray, LEED AP [email protected] 215.501.7891
