From fbcd476c67091e5f171e707e0e0235724a73a6c3 Mon Sep 17 00:00:00 2001 From: heibaiying <31504331+heibaiying@users.noreply.github.com> Date: Tue, 4 Jun 2019 13:20:51 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Spark=E5=BC=80=E5=8F=91=E7=8E=AF?= =?UTF-8?q?=E5=A2=83=E6=90=AD=E5=BB=BA.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/installation/Spark开发环境搭建.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/notes/installation/Spark开发环境搭建.md b/notes/installation/Spark开发环境搭建.md index e5ca223..dbbb498 100644 --- a/notes/installation/Spark开发环境搭建.md +++ b/notes/installation/Spark开发环境搭建.md @@ -65,9 +65,6 @@ val conf = new SparkConf().setAppName("Spark shell").setMaster("local[2]") val sc = new SparkContext(conf) ``` -同时从输出的日志也可以看出来,Local模式还提供了对应的Web UI界面,端口为4040。 - - ## 二、词频统计案例