摘要: 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)