-
Notifications
You must be signed in to change notification settings - Fork 860
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
(feat) add flush consolidation handler #161
Merged
Merged
Conversation
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
TODO benchmark |
|
|
|
dbl-x
pushed a commit
that referenced
this pull request
Dec 16, 2019
* (feat) add flush consolidation handler (#161) * (feat) add flush consolidation option * 1. upgrade version to 1.5.6 (#169) 2. fix NPE in channelInactive 3. handling reconnection situation with no connection binding with channel 4. du not scan connection pool associated with task that has not been don 5. add CONNECT_FAILED event type and print user event log * Change org from alipay to sofatack. (#172) * Update .travis.yml (#177) * modify ReconnectManager to be compatible with version 1.5.x * upgrade netty version to fix CNNVD-201909-1264 vulnerability (#189) * 应该一个是序列化一个是反序列化 (#191) fix unit test bug in class NormalStringCustomSerializer. * (feat) Supports SSL for rpc server/client, #149 (#197) * support server random port constructor. fix #196 (#199) * fix AbstractLifeCycle concurrency problem Fixes gh-163 (#188) * fix AsynMultiInterestUserProcessor dispatch to sync handleRequest method problem. gh-157 * Revert "fix AsynMultiInterestUserProcessor dispatch to sync handleRequest method problem. gh-157" This reverts commit 2784f9e. * support server random port constructor * add rejection-processable InvokeCallback to provide flexible options when user executor rejected task. see #178(#178) (#202) * complete tcp related config. see #171(#171) (#205) * optimize DefaultConnectionManager contructor (#201) * support availability check with life cycle. #195 (#204) * support availability check with life cycle. #123(#123) * complete unit test of life cycle available check * fix CI error * Fix/multi processor bug (#207) * fix spell mistake and some test codes (#194) * fix multi-processor bug * fix PMD * support user processor with life cycle interface fix #123 (#200) * support user processor with life cycle interface * make sure user processor startup if client/server has startup * add state check before operate user processor in order to prevent from some unnecessary exception * fix some codes (#208) * change version
12 tasks
Merged
cytnju
added a commit
that referenced
this pull request
Jul 6, 2020
* release 1.6.1 (#209) * (feat) add flush consolidation handler (#161) * (feat) add flush consolidation option * 1. upgrade version to 1.5.6 (#169) 2. fix NPE in channelInactive 3. handling reconnection situation with no connection binding with channel 4. du not scan connection pool associated with task that has not been don 5. add CONNECT_FAILED event type and print user event log * Change org from alipay to sofatack. (#172) * Update .travis.yml (#177) * modify ReconnectManager to be compatible with version 1.5.x * upgrade netty version to fix CNNVD-201909-1264 vulnerability (#189) * 应该一个是序列化一个是反序列化 (#191) fix unit test bug in class NormalStringCustomSerializer. * (feat) Supports SSL for rpc server/client, #149 (#197) * support server random port constructor. fix #196 (#199) * fix AbstractLifeCycle concurrency problem Fixes gh-163 (#188) * fix AsynMultiInterestUserProcessor dispatch to sync handleRequest method problem. gh-157 * Revert "fix AsynMultiInterestUserProcessor dispatch to sync handleRequest method problem. gh-157" This reverts commit 2784f9e. * support server random port constructor * add rejection-processable InvokeCallback to provide flexible options when user executor rejected task. see #178(#178) (#202) * complete tcp related config. see #171(#171) (#205) * optimize DefaultConnectionManager contructor (#201) * support availability check with life cycle. #195 (#204) * support availability check with life cycle. #123(#123) * complete unit test of life cycle available check * fix CI error * Fix/multi processor bug (#207) * fix spell mistake and some test codes (#194) * fix multi-processor bug * fix PMD * support user processor with life cycle interface fix #123 (#200) * support user processor with life cycle interface * make sure user processor startup if client/server has startup * add state check before operate user processor in order to prevent from some unnecessary exception * fix some codes (#208) * change version * update travis ci config Co-authored-by: cytnju <muyun.cyt@antfin.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Flush operations are generally speaking expensive as these may trigger a syscall on the transport level.
Thus it is in most cases a good idea to try to minimize flush operations as much as possible.