Reputation: 1868
I am analyzing Apache Beam stream processing of data. I have worked on Apache Kafka stream processing (Producer, Consumer etc). I want to compare it with Beam now.
I want to to stream simple json data using Apache Beam programmatically (Java).
{"UserID":"1","Address":"XXX","ClassNo":"989","UserName":"Stella","ClassType":"YYY"}
Can someone please guide me or direct me with an example link?
Upvotes: 2
Views: 7796
Reputation: 2539
There are multiple aspects of this:
then you may need to transform the data:
you may also take a look at examples folder in Beam source;
Upvotes: 10