Intro to Apache Spark for Java and Scala Developers - Ted Malaska (Cloudera)

preview_player
Показать описание
In this video from OSCON 2016, Ted Malaska provides an introduction to Apache Spark for Java and Scala developers.

Рекомендации по теме
Комментарии
Автор

This is the best introduction to Spark that I've seen so far.

chinapaulo
Автор

This video recorded before Java 8 became widely used; in Java 8 there is much less difference between the Java and Scala version. Granted the Java is still more verbose (due to the need for typing and the lack of native tuple support) but it's not far off. Here's my rough translation:

List wordCounts = sc.textFile("path")
.flatMap(it -> Arrays.asList(it.split(" ")).iterator())
.mapToPair(word -> new Tuple2<String, Integer>(word, 1))
.reduceByKey((a, b) -> a + b)
.take(100);

richardjames
Автор

crisp & clear with actual examples! no unnecessary theory. Thanks!

vikramfugro
Автор

A true talent for explaining things! If you ever feel like teaching - please do!

FxAndrej
Автор

Mate, you are NOT BORING, stop saying it :D Awesome introduction, wish there was more.

Jonasmelonas
Автор

Covers much more information and in the simplest manner possible than by graduate level text books.. Thanks for this :)

kadamparikh
Автор

Best introduction I got so far. I like spark now i think.

shahbazhussain
Автор

Great talk on Spark. Ted gives an excellent overview of Spark composites.

MrJzloganjr
Автор

Clear explanation, thanks. I think indeed the Scala looks more clear and readable for Spark jobs, than Java.

linkernick
Автор

This guy is amazing at explaining difficult concepts

elysel
Автор

Very clearly explained all the concepts, looking more such lectures

smritidey
Автор

Being austin somehow missed it. will keep an eye out for next thing like this. awesome video.

kumara
Автор

that's a very good presentation... why the hell would those organizers 'cut' his speech ?? couldn't they just let him send his speech ? he was ending it anyways...what were they loosing?

VasileSurdu
Автор

Best explanation on Spark I have seen so far. Where can I find the remaining part?

basant-gurung
Автор

Watching it after 3years of post video but still very informative😊👍

Karmihir
Автор

This looks like the class1 of a series of lectures. Does anyone know can we watch the rest of them?

leixia
Автор

thank you very much. an excellent presentation. appreciate your time. sincerely

MrSuriyam
Автор

ReduceByKey and foreach are also actions

ashiralam
Автор

Good insights about spark basics, Thank you

shivabasayyahiremath
Автор

So, is it better when you aspire to work for Big data corporations, to actually learn Scala? It seems way finer than java :X I know some Java, but holy shit! I would hate to code in Java for RDD-sets

greyfox