Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
0.5.0
-----
* Turn off Spark UI as part of tests (CASSANALYTICS-67)
* Make BulkWriterConfig extensible (CASSANALYTICS-168)

0.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ static SparkSession createSession()
// Spark is not case-sensitive by default, but we want to make it case-sensitive for
// the quoted identifiers tests where we test mixed case
.config("spark.sql.caseSensitive", "True")
.config("spark.ui.enabled", "false")
.getOrCreate();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ public SparkConf defaultSparkConf()
// Spark is not case-sensitive by default, but we want to make it case-sensitive for
// the quoted identifiers tests where we test mixed case
.set("spark.sql.caseSensitive", "True")
.set("spark.ui.enabled", "false")
.set("spark.driver.bindAddress", "127.0.0.1")
.set("spark.master", "local[8,4]")
.set("spark.cassandra_analytics.cassandra.version", "5.0.0")
Expand Down
Loading