Spark源码篇-分区:读取外部数据

package pro_spark

import org.apache.spark.rdd.RDD
import org.apache.spark.{SparkConf, SparkContext}


/**
  * @author YaPeng Li
  * @version 0.0.1
  **/
object FileCreateRDDByPartition04{

  def main(args: Array[String]): Unit = {

    val sparkConf: SparkConf = new SparkConf().setMaster("local[*]").setAppName("FileCreateRDDByPartition")

    val sc = new SparkContext(sparkConf)

    val fileRDD: RDD[String] = sc.textFile("input")

    fileRDD.collect().foreach(println)

    """
      |
      |  def textFile(
      |      path: String,
      |      minPartitions: Int = defaultMinPartitions): RDD[String] = withScope {
      |    assertNotStopped()
      |    hadoopFile(path, classOf[TextInputFormat], classOf[LongWritable], classOf[Text],
      |      minPartitions).map(pair => pair._2.toString).setName(path)
      |  }
      |
      |  def hadoopFile[K, V](
      |      path: String,
      |      inputFormatClass: Class[_ <: InputFormat[K, V]],
      |      keyClass: Class[K],
      |      valueClass: Class[V],
      |      minPartitions: Int = defaultMinPartitions): RDD[(K, V)] = withScope {
      |    assertNotStopped()
      |
      |    // This is a hack to enforce loading hdfs-site.xml.
      |    // See SPARK-11227 for details.
      |    FileSystem.getLocal(hadoopConfiguration)
      |
      |    // A Hadoop configuration can be about 10 KiB, which is pretty big, so broadcast it.
      |    val confBroadcast = broadcast(new SerializableConfiguration(hadoopConfiguration))
      |    val setInputPathsFunc = (jobConf: JobConf) => FileInputFormat.setInputPaths(jobConf, path)
      |    new HadoopRDD(
      |      this,
      |      confBroadcast,
      |      Some(setInputPathsFunc),
      |      inputFormatClass,
      |      keyClass,
      |      valueClass,
      |      minPartitions).setName(path)
      |  }
      |
      |  val setInputPathsFunc = (jobConf: JobConf) => FileInputFormat.setInputPaths(jobConf, path)
      |
      |
      | long totalSize = 0;                           // compute total size
      |    for (FileStatus file: files) {                // check we have valid files
      |      if (file.isDirectory()) {
      |        throw new IOException("Not a file: "+ file.getPath());
      |      }
      |      totalSize += file.getLen();
      |    }
      |
      |    long goalSize = totalSize / (numSplits == 0 ? 1 : numSplits);
      |    long minSize = Math.max(job.getLong(org.apache.hadoop.mapreduce.lib.input.
      |      FileInputFormat.SPLIT_MINSIZE, 1), minSplitSize);
      |      
      |     根据偏移量来进行存储。
      |
      |""".stripMargin

  }



}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值