上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
摘要: 1. join /* * 1.定义 * def join[W](other: RDD[(K, W)]): RDD[(K, (V, W))] * def join[W](other: RDD[(K, W)], numPartitions: Int): RDD[(K, (V, W))] * 2.功能 * 阅读全文
posted @ 2022-03-27 08:22 学而不思则罔! 阅读(55) 评论(0) 推荐(0)
摘要: 1.定义 /* * 1.定义 * def sortByKey(ascending: Boolean = true, numPartitions: Int = self.partitions.length) * : RDD[(K, V)] = self.withScope * ascending : 阅读全文
posted @ 2022-03-26 09:18 学而不思则罔! 阅读(54) 评论(0) 推荐(0)
摘要: 1. 说明 /* * 思考 : * reduceByKey、flodByKey、aggregateByKey、combineByKey 的区别? * 本质区别 : Map端聚合和Reduce聚合规则是否相同,是不是要在Map的实现合并器 * * 1. reduceByKey * 1. 定义 * de 阅读全文
posted @ 2022-03-26 08:59 学而不思则罔! 阅读(109) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def combineByKey[C](createCombiner: V => C, * mergeValue: (C, V) => C, * mergeCombiners: (C, C) => C, * numPartitions: Int): RDD[(K 阅读全文
posted @ 2022-03-25 19:55 学而不思则罔! 阅读(34) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def foldByKey(zeroValue: V)(func: (V, V) => V): RDD[(K, V)] * def foldByKey(zeroValue: V,partitioner: Partitioner)(func: (V, V) => 阅读全文
posted @ 2022-03-25 12:37 学而不思则罔! 阅读(37) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def aggregateByKey[U: ClassTag](zeroValue: U, partitioner: Partitioner) * (seqOp: (U, V) => U,combOp: (U, U) => U): RDD[(K, U)] * * 阅读全文
posted @ 2022-03-25 12:19 学而不思则罔! 阅读(37) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def groupByKey(): RDD[(K, Iterable[V])] * def groupByKey(partitioner: Partitioner): RDD[(K, Iterable[V])] * def groupByKey(numParti 阅读全文
posted @ 2022-03-24 21:42 学而不思则罔! 阅读(41) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def reduceByKey(func: (V, V) => V): RDD[(K, V)] * def reduceByKey(func: (V, V) => V, numPartitions: Int): RDD[(K, V)] * def reduceB 阅读全文
posted @ 2022-03-24 20:38 学而不思则罔! 阅读(59) 评论(0) 推荐(0)
摘要: 1. 定义 /* * 1. 定义 * def partitionBy(partitioner: Partitioner): RDD[(K, V)] * * 2. 功能 * 将数据类型为key-value的Rdd 按照指定 Partitioner 重新进行分区 * 默认分区器为 HashPartiti 阅读全文
posted @ 2022-03-23 19:52 学而不思则罔! 阅读(86) 评论(0) 推荐(0)
摘要: 1. 求交集-intersection /* * 1. 定义 * def intersection(other: RDD[T]): RDD[T] * * 2. 功能 * 对源 RDD 和参数 RDD 求交集后返回一个新的 RDD * 参与运算的两个Rdd 类型必须一致,会对返回的结果进行去重 * * 阅读全文
posted @ 2022-03-23 17:38 学而不思则罔! 阅读(174) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页