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-7378] [core] Handle deep links to unloaded apps. #5922

Closed
wants to merge 4 commits into from

Commits on May 5, 2015

  1. [SPARK-7378] [core] Handle deep links to unloaded apps.

    The code was treating deep links as if they were attempt IDs, so
    for example if you tried to load "/history/app1/jobs" directly,
    that would fail because the code would treat "jobs" as an attempt id.
    
    This change modifies the code to try both cases - first without an
    attempt id, then with it, so that deep links are handled correctly.
    This assumes that the links in the Spark UI do not clash with the
    attempt id namespace, though, which is the case for YARN at least,
    which is the only backend that currently publishes attempt IDs.
    Marcelo Vanzin committed May 5, 2015
    Configuration menu
    Copy the full SHA
    b728f08 View commit details
    Browse the repository at this point in the history
  2. Fat fingers.

    Marcelo Vanzin committed May 5, 2015
    Configuration menu
    Copy the full SHA
    23483e4 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2015

  1. Merge branch 'master' into SPARK-7378

    Marcelo Vanzin committed May 6, 2015
    Configuration menu
    Copy the full SHA
    ed3bcd4 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2015

  1. Fix comparison.

    Marcelo Vanzin committed May 7, 2015
    Configuration menu
    Copy the full SHA
    96f648b View commit details
    Browse the repository at this point in the history