getAll

この conf で設定されているすべてのプロパティを返します。

構文

getAll

返品

Dict[str, str]

この conf で設定されたすべてのプロパティを含むディクショナリ。

例示

spark.conf.set("my_key", "my_value")
spark.conf.getAll
# {'my_key': 'my_value', ...}