-
Notifications
You must be signed in to change notification settings - Fork 731
Optimize data workers #1820
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
Merged
Merged
Optimize data workers #1820
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
f3866c3
increase max concurrency in data-worker
garrrikkotua b5d4613
temp remove locks in data-sink worker
garrrikkotua 94a89e8
disable transactions in data sink worker
garrrikkotua a14b868
prevent organization update if previous update happened less than 1 m…
garrrikkotua 06d0578
increase max concurrent processing for data-sink from 3 to 4
garrrikkotua 2917c85
increase max con processing to 7
garrrikkotua ef45a5f
decrease to 5
garrrikkotua 5f17f37
back to 4
garrrikkotua 9caff93
process old jobs async
garrrikkotua 1020201
add enum for tenants plans
garrrikkotua cf361c9
adjust settings
garrrikkotua 5f97865
change old results logic
garrrikkotua 9010862
more concurrent version of processOldResults
garrrikkotua 69fd30d
fix logic in processOldResults
garrrikkotua ff48d27
small fixes
garrrikkotua db687bd
Merge branch 'main' into improve/optimize-data-workers
garrrikkotua 7a7e530
remove lock and load more results
garrrikkotua f96c87e
bring lock back
garrrikkotua c309104
increase results to load
garrrikkotua 97b16ff
some optimizations
garrrikkotua c72dd38
bring messages back
garrrikkotua c856e15
disable transactions for the process results job
garrrikkotua 6467638
use for update skip locked instead of redis lock
5f6dc52
decrease results to load and check more often
garrrikkotua 2c0ba3c
fix and simplify results query
garrrikkotua efd6e63
increase checks frequency
garrrikkotua 3f7f121
remove locks completely
garrrikkotua ab38390
trying to speed up
garrrikkotua ff64142
fix issue when github org name = @
garrrikkotua 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 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
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
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
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
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
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
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
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
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.
I would load like 10 at once and process them MAX_CONCURRENT_PROMISES at a time.