spark action之saveastextfile

java

 1 /** 
 2  *saveastextfile 把rdd中的数据保存到文件中,只能指定文件夹
 3  *@author Tele
 4  *
 5  */
 6 public class SaveasTextFileDemo1 {
 7     private static SparkConf conf = new SparkConf().setMaster("local").setAppName("saveastextfiledemo1");
 8     private static JavaSparkContext jsc = new JavaSparkContext(conf);
 9 
10     public static void main(String[] args) {
11         List<Tuple2<String,Integer>> list = Arrays.asList(
12                 new Tuple2<String,Integer>("tele",100),
13                 new Tuple2<String,Integer>("tele",200),
14                 new Tuple2<String,Integer>("tele",300),
15                 new Tuple2<String,Integer>("yeye",50),
16                 new Tuple2<String,Integer>("yeye",10),
17                 new Tuple2<String,Integer>("yeye",70),
18                 new Tuple2<String,Integer>("wyc",10000)
19                  );
20 
21         JavaPairRDD<String, Integer> rdd = jsc.parallelizePairs(list);
22         
23         //保存到本地
24         rdd.saveAsTextFile("./src/main/resources/local");
25         jsc.close();
26     }    
27 }

scala

 1 object SaveasTextFileDemo {
 2     def main(args: Array[String]): Unit = {
 3       val conf = new SparkConf().setMaster("local").setAppName("saveastextfiledemo");
 4       val sc = new SparkContext(conf);
 5       
 6       val arr = Array(("class1","tele"),("class1","yeye"),("class2","wyc"));
 7     
 8       val rdd = sc.parallelize(arr,1);
 9       
10       rdd.saveAsTextFile("./src/main/resources/myfile")
11       
12     }
13 }

 

转载于:https://www.cnblogs.com/tele-share/p/10269107.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值