Gets an existing SparkSession or, if there is no existing one, creates a new one based on the options set in this builder code example
Example: Gets an existing SparkSession or, if there is no existing one, creates a new one based on the options set in this builder
s1 = SparkSession.builder.config("k1", "v1").getOrCreate()
s1.conf.get("k1") == s1.sparkContext.getConf().get("k1") == "v1"
s2 = SaprkSession.builder.config("k2", "v2").getOrCreate()
s1.conf.get("k1") == s2.conf.get("k1")
s1.conf.get("k2") == s2.conf.get("k2")