(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| import Utils | |
| import org.apache.spark.streaming.StreamingContext._ | |
| import org.apache.spark.streaming.{Seconds, StreamingContext} | |
| import StreamingContext._ | |
| import org.apache.spark.SparkContext._ | |
| import org.apache.spark.streaming.twitter._ | |
| import org.apache.spark.SparkConf | |
| import org.apache.spark.{SparkConf, SparkContext} |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # In case you had some strange python installation | |
| # NOTE: .pydistutils.cfg seems to be not compatible with brew install python | |
| # areas I needed to clean before installation | |
| # clean up ~/Library/Python | |
| # clean up .local | |
| # preconditions: | |
| # xcode with command line tools installed | |
| xcode-select --install |