forked from rhavyn/norbert
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Anigam selective retry stuff #6
Closed
Closed
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
Ported to gradle build
FIX: change version back to 0.6.33
…illiseconds to microseconds measurement
Fixed some norbert tuning parameters to take into account milliseconds to microseconds
Updating Netty Version in Norbert for USCP 2050
Upping the version
…iseconds to microseconds conversion
…tency collection as is
…ld we let the query continue
…ng duplicatesOk behavior
… provides duplicatesOk for a single request
Removing the use math.abs, which caused a difference between the java and scala version becasue scala returns Ints, where java returns longs
Fixing the md5 hash function
Bumping the version
I have added a new bind function which allows you to bind using the hostname and port to allow people to get the hostname themselves and pass it in if they have a more efficient way than getCanonicalName
Update gitignore and README file
…le MockClock object, which breaks test case. In this change, I convert the MockClock to class and all MockClock object references to instance of MockClock.
Fixing the test case concurrency issue.
Allowing bind to work with hostname and port
…ned load balancer. Prior to this change, load balancer can loop up 2^32 times. Unecessary states checking also discarded.
Fixing inefficiency of default round-robin load balancer for partitioned loadbalancer.
Bumping up the version for load balancer fixes.
…port for JUnit so that tests are discoverable by Gradle
refactored code to be source compatible with Scala 2.10 and added support for JUnit so that tests are discoverable by Gradle
Fixing the capability round-robin test cases.
Fixing counter incrementing for capability round-robin.
bumping version to 0.6.55
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.
Fixed a bug in the latest version of norbert. Code path is as follows:
a) We hit the initial timeout and do not receive all the responses.
b) The number of responses which do not arrive before initial timeout is greater than FailureThreshold we throw away the responses from the failed nodes.
Affects duplicatesOk=false code path.