spark集群安装
3.2.2.在spark shell中编写WordCount程序 1.首先启动hdfs 2.向hdfs上传一个文件到hdfs://hdp-01:9000/wordcount/input/a.txt 3.在spark shell中用scala语言编写spark程序 scala> sc.textFile("hdfs://hdp-01:9000/wordcount/input/") spark是懒加载的,所以这里并没有真正执行任务。可使用collect方法快速查看数据。 lazy执行的,只有调用了action方法,才正式开始运行。 scala>sc.textFile("hd
用户评论