-
Notifications
You must be signed in to change notification settings - Fork 594
Remove scheduler state manager adaptor requirement for submission dry-run #1697
Remove scheduler state manager adaptor requirement for submission dry-run #1697
Conversation
submission dry-run.
Also addressed some comments from @mycFelix in 1e34ccc |
@@ -381,6 +381,9 @@ public String createTable() { | |||
} | |||
} | |||
|
|||
private static final List<String> titleNames = Arrays.asList( |
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.
psf should be TITLE_NAMES
} else { | ||
// initialize the state manager | ||
statemgr.initialize(config); |
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.
+1
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.
what do you mean?
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.
looks good to me. it is expected like what the PR description says.
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.
you can add a reply next time instead of making an inline comment.
build is fine on CI, unit tests passed locally. Website build breaks the CI because of some package issues, which will be solved in #1703. merging now. |
Dry-run submission does not need to use adaptor to scheduler state manager. With this PR, state manager initialization will not happen, which reduces dry-run of submission to Aurora from 10 seconds to 1.7 seconds.
resolves #1692