Re: kafka streaming: passing config string to Processor

2016-04-18 Thread rss rss
r approach that each application developer code their > logic using a Kafka Streams library would be better. > > That being said, I am very interested in comparing Kafka Streams > performance with Flink and Storm in Yahoo streaming benchmarks. If you are > interested in doing so plea

Re: kafka streaming: passing config string to Processor

2016-04-17 Thread rss rss
/2.1.0-alpha1/streams/architecture.html#parallelism-model > > > -Matthias > > On 04/17/2016 01:29 PM, rss rss wrote: > > Ok... Is it really perform distribution of the field to several instances > > of a cluster? I expected to see some way via ProcessorContext... > > But

Re: kafka streaming: passing config string to Processor

2016-04-17 Thread rss rss
tupleList.forEach(x -> { > > String[] tuple = x; > > String campaign_id = tuple[0]; > > String event_time = tuple[2]; > > > this.campaignProcessorCommon.execute(campaign_id, event_time); > >

kafka streaming: passing config string to Processor

2016-04-16 Thread rss rss
Hello, I'm implementing yahoo streaming benchmark with Kafka streaming processing. How to pass a string into Processor or ValueTransformer instance? Accordingly to yahoo benchmark logic I need to transfer an address of Redis server. https://github.com/rssdev10/streaming-benchmarks/blob/master/ka