Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-9244] Increase some memory defaults #7586

Closed
wants to merge 1 commit into from

Commits on Jul 22, 2015

  1. [SPARK-9244] Increase some memory defaults

    There are a few memory limits that people hit often and that we could
    make higher, especially now that memory sizes have grown.
    
    - spark.akka.frameSize: This defaults at 10 but is often hit for map
      output statuses in large shuffles. This memory is not fully allocated
      up-front, so we can just make this larger and still not affect jobs
      that never sent a status that large. We increase it to 128.
    
    - spark.executor.memory: Defaults at 512m, which is really small. We
      increase it to 1g.
    mateiz committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    ce0038a View commit details
    Browse the repository at this point in the history