-
Notifications
You must be signed in to change notification settings - Fork 0
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
DPDV-6415: Remove SIGSEV #100
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
8cd508a
DPDV-6415: Remove SIGSEV
martin-majlis-s1 bd81cc3
Improve Finish go routine
martin-majlis-s1 538d688
Fix few more tests
martin-majlis-s1 78bc383
Add more logging related to locks in Memo
martin-majlis-s1 acdc0e0
add_events_long_running_test are succeeding!!!
martin-majlis-s1 6b5a13f
All tests are passing now
martin-majlis-s1 7d931fc
Add timeout restrictions so that it doesn't run for 6 hours
martin-majlis-s1 eb45132
Enable skipped buffer tests
martin-majlis-s1 1496687
Reset tickers when event is received
martin-majlis-s1 0086ae7
Fix test
martin-majlis-s1 03026b6
Add logging to the pub method
martin-majlis-s1 b777d21
Add even more logging
martin-majlis-s1 155cc3e
Add even more logging
martin-majlis-s1 65437ac
Build and run commands with -race flag
martin-majlis-s1 bec553a
Also use channel for publishing messages
martin-majlis-s1 e0413f8
Remove pubsub library
martin-majlis-s1 6faa910
Increase time interval between purges
martin-majlis-s1 ffd4ff2
Move SessionManager to separate module
martin-majlis-s1 7c1999a
Update buffer_config tests
martin-majlis-s1 275b52d
Add tests related to the buffer
martin-majlis-s1 a9f9128
Add more buffer tests
martin-majlis-s1 e08c832
Make number of parallel buffer sendings configurable.
martin-majlis-s1 21118c6
Simplify SessionManager
martin-majlis-s1 c126cba
Add tests for SessionManager
martin-majlis-s1 cd35f4a
Bump version
martin-majlis-s1 5699fd5
Fix session_manager tests
martin-majlis-s1 2e160b7
Add sleep to make sure that everything is processed
martin-majlis-s1 ae82c19
Reduce logging in the client
martin-majlis-s1 d4561f4
Add more tests for statistics
martin-majlis-s1 c8551e3
Remove unused variable publishAsap
martin-majlis-s1 607624b
Make number of outgoing connections configurable
martin-majlis-s1 33175e2
Shutdown sequence finishes on time
martin-majlis-s1 4b8c932
Incorporates comments from CR
martin-majlis-s1 5c1361c
Improve some function names
martin-majlis-s1 1bf201f
Incorporate comments from CR
martin-majlis-s1 a1c5365
Rename private functions in the session manager
martin-majlis-s1 83030c4
To be safe stop tickers
martin-majlis-s1 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
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
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
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
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.
Is it an intention to call
dataSetClient.AddEvents
with bigger and bigger batch?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.
At the top of the loop there is always new batch created:
Furthermore, we can see in the logs, that if you ask for 1k events, there is 1k events processed - not 500k.