R
R
Ruslan2017-06-08 16:01:07
Java
Ruslan, 2017-06-08 16:01:07

Where can I see the full list of options for SparkSession?

Hello!
There is an example in the official Spark documentation:

import org.apache.spark.sql.SparkSession;

SparkSession spark = SparkSession
  .builder()
  .appName("Java Spark SQL basic example")
  .config("spark.some.config.option", "some-value")
  .getOrCreate();

The question is, is there a list of valid values ​​for the config method? And if so, where can I see it.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey Gornostaev, 2017-06-08
@Razbezhkin

See the Spark Configuration documentation section .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question