Skip to content

Commit

Permalink
support localSparkBindAddress in Interest point detection
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Jun 30, 2024
1 parent 22fb921 commit 3afede8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ public Void call() throws Exception

final SparkConf conf = new SparkConf().setAppName("SparkInterestPointDetection");

if ( localSparkBindAddress )
conf.set("spark.driver.bindAddress", "127.0.0.1");

final JavaSparkContext sc = new JavaSparkContext(conf);
sc.setLogLevel("ERROR");

Expand Down

0 comments on commit 3afede8

Please sign in to comment.