You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spark.driver.extraJavaOptions : 드라이버에게 추가로 전달할 추가 JVM 옵션. 이 옵션을 사용해서 최대 힙 크기(-Xmx)를 설정할 수 없다. 최대 힙 크기는 클러스터 모드의 경우 spark.driver.memory로 클라이언트 모드의 경우 --driver-memory 옵션으로 지정할 수 있다.
spark.executor.extraJavaOptions : 익스큐터에게 추가로 전달할 추가 JVM 옵션. 이 옵션을 사용해서 최대 힙 크기(-Xmx)를 설정할 수 없다. 익스큐터의 최대 힙 크기는 spark.executor.memory로 설정할 수 있다.
The text was updated successfully, but these errors were encountered:
spark.driver.memory
로 클라이언트 모드의 경우--driver-memory
옵션으로 지정할 수 있다.spark.executor.memory
로 설정할 수 있다.The text was updated successfully, but these errors were encountered: