49. Structured Streaming
STREAMING WITH DATASETS
Structured Streaming
val inputDF = spark.readStream.json("s3://logs") inputDF.groupBy($"action", window($"time", "1 hour")).count().writeStream.format("jdbc").start("jdbc:mysql//...")
Previous48. [Activity] Set up a Twitter Developer Account, and Stream TweetsNext50. GraphX, Pregel, and Breadth-First-Search with Pregel.
Last updated