1. 首页
  2. 大数据
  3. spark
  4. spark集群安装

spark集群安装

上传者: 2019-01-22 07:47:17上传 DOCX文件 878.75KB 热度 48次
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
用户评论