Closed
Conversation
Contributor
|
tested, I've found that %sql's are not working. |
Contributor
Author
|
@swkimme I fixed the problem that paragraph is stuck in PENDING status. |
Contributor
|
Tested, works great! |
asfgit
pushed a commit
to apache/zeppelin
that referenced
this pull request
Mar 30, 2015
This PR came from ZEPL/zeppelin#397 After ZEPL/zeppelin#364, order of submitted job to the remote interpreter is not preserved. Result is, when user run a lot of paragraphs in a short time, they run in random order(like click run 'Run all paragraphs). https://github.com/NFLabs/zeppelin/issues/395 is one of the possible problem. this PR adds some unittests and fix the problem. Ready to merge. Author: Lee moon soo <[email protected]> Author: Lee moon soo <[email protected]> Closes #8 from Leemoonsoo/fix/run_order and squashes the following commits: 4a6a230 [Lee moon soo] Prevent status remaining RUNNING after job executed 1fb3715 [Lee moon soo] Fix daedlock 6405abe [Lee moon soo] Update RemoteSchedulerTest c31a807 [Lee moon soo] Make RemoteScheduler keep order of job submitted
epahomov
pushed a commit
to epahomov/zeppelin
that referenced
this pull request
Jul 23, 2016
…script https://issues.apache.org/jira/browse/ZEPPELIN-397 Activate spark-1.5 and hadoop-2.4 by default That'll enable use sc.textFile("s3...") with default configuration without specify SPARK_HOME. Author: Lee moon soo <[email protected]> This patch had conflicts when merged, resolved by Committer: Lee moon soo <[email protected]> Closes ZEPL#397 from Leemoonsoo/ZEPPELIN-397 and squashes the following commits: 9855dde [Lee moon soo] Activate spark-1.5 and hadoop-2.4 by default
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After #364, order of submitted job to the remote interpreter is not preserved.
Result is, when user run a lot of paragraphs in a short time, they run in random order(like click run 'Run all paragraphs). #395 is one of the problem.
this PR adds some unittests and fix the problem.