I build a storm trident topology like this:
tridentTopology.newStream(spoutId, spout).parallelismHint(spoutParallel)
.each(new Fields("tId", "message"), new VerifyFilter())
.each(new Fields("tId", "message"), new ParseFunction(), new Fields("rowKey", "column", "value"))
.groupBy(new Fields("rowKey", "column"))
.aggregate(new Fields("value"),new Count(),new Fields("count"))
.each(new Fields("rowKey", "column", "count"), new SaveFunction(), new Fields(columns))
.shuffle()
.partitionPersist(factory, new Fields(rowKeyANdColumns), new HBaseUpdater())
.parallelismHint(boltParallel);
util execute each(new Fields("rowKey", "column", "count"), new SaveFunction(), new Fields(columns)
, I got print log in SaveFunction,
but partitionPersist not wirte date into hbase, and no error in all topology;
Who can give some suggestions?