-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22837][SQL]Session timeout checker does not work in SessionManager. #20025
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
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,11 +23,7 @@ | |
| import java.util.ArrayList; | ||
| import java.util.Date; | ||
| import java.util.Map; | ||
| import java.util.concurrent.ConcurrentHashMap; | ||
| import java.util.concurrent.Future; | ||
| import java.util.concurrent.LinkedBlockingQueue; | ||
| import java.util.concurrent.ThreadPoolExecutor; | ||
| import java.util.concurrent.TimeUnit; | ||
| import java.util.concurrent.*; | ||
|
|
||
| import org.apache.commons.io.FileUtils; | ||
| import org.apache.commons.logging.Log; | ||
|
|
@@ -80,7 +76,6 @@ public synchronized void init(HiveConf hiveConf) { | |
| } | ||
| createBackgroundOperationPool(); | ||
| addService(operationManager); | ||
| super.init(hiveConf); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hmm, I think we revert keep this line too.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, we could keep super.init() here and remove initCompositeService in SparkSQLSessionManager.init(). thanks |
||
| } | ||
|
|
||
| private void createBackgroundOperationPool() { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, thanks