Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalloni committed May 30, 2022
1 parent bbccd38 commit 4d5fef2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,7 @@ dmypy.json

# Pyre type checker
.pyre/

*.csv
*.jar
*.wget-hsts
7 changes: 6 additions & 1 deletion pyspark/ml_air.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@


# create spark session
spark = SparkSession.builder.master('local[4]').appName('AirQuality').getOrCreate()
spark = (
SparkSession.builder
.master('local[4]')
.appName('AirQuality')
.getOrCreate()
)
spark # open Spark Web UI to monitor jobs/stages/storage/env/executors/SQL

# configure and start spark history server (app log)
Expand Down

0 comments on commit 4d5fef2

Please sign in to comment.