Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-26 Thread ??????????
9 PM To: yohann jardin <yohannjar...@hotmail.com> Cc: kant kodali <kanth...@gmail.com>; vaquar khan <vaquar.k...@gmail.com>; user <user@spark.apache.org> Subject: Re: What is the real difference between Kafka streaming and Spark Streaming? I think Kafka streams

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-15 Thread Michael Armbrust
Continuous processing is still a work in progress. I would really like to at least have a basic version in Spark 2.3. The announcement about 2.2 is that we are planning to remove the experimental tag from Structured Streaming. On Thu, Jun 15, 2017 at 11:53 AM, kant kodali

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-15 Thread kant kodali
vow! you caught the 007! Is continuous processing mode available in 2.2? The ticket says the target version is 2.3 but the talk in the Video says 2.2 and beyond so I am just curious if it is available in 2.2 or should I try it from the latest build? Thanks! On Wed, Jun 14, 2017 at 5:32 PM,

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-14 Thread Michael Armbrust
This a good question. I really like using Kafka as a centralized source for streaming data in an organization and, with Spark 2.2, we have full support for reading and writing data to/from Kafka in both streaming and batch

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-13 Thread Paolo Patierno
com> Sent: Monday, June 12, 2017 12:40:37 AM To: Mohammed Guller Cc: vincent gromakowski; yohann jardin; vaquar khan; user Subject: Re: What is the real difference between Kafka streaming and Spark Streaming? Also another difference I see is some thing like Spark Sql where there are logical

RE: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-12 Thread Mohammed Guller
.gromakow...@gmail.com>; yohann jardin <yohannjar...@hotmail.com>; vaquar khan <vaquar.k...@gmail.com>; user <user@spark.apache.org> Subject: Re: What is the real difference between Kafka streaming and Spark Streaming? Also another difference I see is some thing like Spark Sql

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread kant kodali
aming is relatively new and less mature than Spark >>Streaming >> >> >> >> Mohammed >> >> >> >> *From:* vincent gromakowski [mailto:vincent.gromakow...@gmail.com] >> *Sent:* Sunday, June 11, 2017 12:09 PM >> *To:* yohann jard

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread kant kodali
; *To:* yohann jardin <yohannjar...@hotmail.com> > *Cc:* kant kodali <kanth...@gmail.com>; vaquar khan <vaquar.k...@gmail.com>; > user <user@spark.apache.org> > *Subject:* Re: What is the real difference between Kafka streaming and > Spark Streaming? > > >

RE: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread Mohammed Guller
:09 PM To: yohann jardin <yohannjar...@hotmail.com> Cc: kant kodali <kanth...@gmail.com>; vaquar khan <vaquar.k...@gmail.com>; user <user@spark.apache.org> Subject: Re: What is the real difference between Kafka streaming and Spark Streaming? I think Kafka streams is

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread vincent gromakowski
I think Kafka streams is good when the processing of each row is independant from each other (row parsing, data cleaning...) Spark is better when processing group of rows (group by, ml, window func...) Le 11 juin 2017 8:15 PM, "yohann jardin" a écrit : Hey, Kafka can

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread yohann jardin
Hey, Kafka can also do streaming on its own: https://kafka.apache.org/documentation/streams I don’t know much about it unfortunately. I can only repeat what I heard in conferences, saying that one should give a try to Kafka streaming when its whole pipeline is using Kafka. I have no pros/cons

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread yohann jardin
Hey, Kafka can also do streaming on its own: https://kafka.apache.org/documentation/streams I don't know much about it unfortunately. I can only repeat what I heard in conferences, saying that one should give a try to Kafka streaming when its whole pipeline is using Kafka. I have no pros/cons

Re: What is the real difference between Kafka streaming and Spark Streaming?

2017-06-11 Thread vaquar khan
Hi Kant, Kafka is the message broker that using as Producers and Consumers and Spark Streaming is used as the real time processing ,Kafka and Spark Streaming work together not competitors. Spark Streaming is reading data from Kafka and process into micro batching for streaming data, In easy terms