getAll

이 conf에 설정된 모든 속성을 반환합니다.

문법

getAll

Returns

Dict[str, str]

이 conf에 설정된 모든 속성을 포함하는 사전입니다.

예제

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