Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Loading status checks…
Call start() method before FI really executing (#7206)
JackieTien97
committed
Sep 2, 2022
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent
6d2a1cf
commit a3559e5
Showing
1 changed file
with
1 addition
and
0 deletions.
There are no files selected for viewing
This file contains 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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| // private final AtomicLong endFullGcCount = new AtomicLong(-1); | |||
| // private final AtomicLong endFullGcTimeNanos = new AtomicLong(-1); | |||
| public static FragmentInstanceContext createFragmentInstanceContext( | |||
| FragmentInstanceId id, FragmentInstanceStateMachine stateMachine) { | |||
| FragmentInstanceContext instanceContext = new FragmentInstanceContext(id, stateMachine); | |||
| instanceContext.initialize(); | |||
| instanceContext.start(); | |||
| return instanceContext; | |||
|
|||
|
|||
| } | |||
|
|
|||
| public static FragmentInstanceContext createFragmentInstanceContextForCompaction(long queryId) { | |||