第8课:Spark Streaming源码解读之RDD生成全生命周期彻底研究和思考

第8课:Spark Streaming源码解读之RDD生成全生命周期彻底研究和思考
/* 王家林老师授课http://weibo.com/ilovepains  每天晚上20:00YY频道现场授课频道68917580*/

1,Dstream与RDD关系彻底研究
2,Streaming中RDD生产彻底研究

RDD在spark streaming中的三个层面
1,到底怎么生成的?依靠什么生成?
2,执行的时候,和基于spark core的RDD的执行有所不同,runtime级别
3,运行以后,对RDD怎么处理? 窗口滑动的时候如每1秒不断的产生的RDD,内存无法容纳这些对象,
怎么对已有的RDD进行管理。

这里研究RDD的生成的全生命周期。

 

DStream

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless requir

你可能感兴趣的:(Spark源码版本定制发行班)