-
Notifications
You must be signed in to change notification settings - Fork 78
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
Eager Workflow Start (#606) #622
Merged
antlai-temporal
merged 22 commits into
temporalio:master
from
antlai-temporal:eager-wf-start
Nov 3, 2023
Merged
Changes from 10 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
643f0e8
First complete implementation
antlai-temporal fdc0d73
Merge remote-tracking branch 'upstream/master' into eager-wf-start
antlai-temporal a491b7a
Draft
antlai-temporal 656df5a
Exclude mock from merging streams
antlai-temporal f4c5ce7
Adding unit tests
antlai-temporal 829bb35
Add integration test
antlai-temporal 3addfb0
Merge remote-tracking branch 'upstream/master' into eager-wf-start
antlai-temporal 6d2eb19
Adding recover integration test
antlai-temporal 6d26d35
Lint the test code
antlai-temporal 833610a
Enable dynamic config for buildkite
antlai-temporal 0a5c48e
Many review comments addressed
antlai-temporal 9ec20a1
Fix macro needing dummy string
Sushisource fd0de7c
Consume slot in shedule_wft
antlai-temporal 415c48a
Adding Spencer's macro trick
antlai-temporal 7f10e09
Hide the RwLock for SlotManager
antlai-temporal 3e03980
Forcing one provider per namespace+task_queue+client
antlai-temporal cbb18bb
Remove quiet flag
antlai-temporal 62db6cf
Replace uuids by SlotMap keys
antlai-temporal ff6015b
Merge remote-tracking branch 'upstream/master' into eager-wf-start
antlai-temporal 27e5626
Remove WorkerRegistry trait
antlai-temporal 9e8eb40
Merge remote-tracking branch 'upstream/master' into eager-wf-start
antlai-temporal f7a6e8d
Make try_reserve_wft_slot only visible in the client crate
antlai-temporal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ Cargo.lock | |
|
||
/.idea/ | ||
*.iml | ||
*~ | ||
|
||
# Ignore generated protobuf files | ||
src/protos/*.rs | ||
|
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
We don't actually need the rand dep any more
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.
Good catch thanks