-
Notifications
You must be signed in to change notification settings - Fork 30
Rack Awareness, Sequence Policies, More complex policies and other Fixes #140
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
Open
CMoore-Darwinium
wants to merge
26
commits into
aerospike:async
Choose a base branch
from
darwinium-com:caleb-on-top-of-async
base: async
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
a371fc4
Fixed some bugs in Msgpack encoding
CMoore-Darwinium e57f93f
Removed undue casts to signle byte values
CMoore-Darwinium 8c2910d
Convert list flags to use bitmasks also.
CMoore-Darwinium 007d965
Use traits to allow single enums or groups of enums to be passed to m…
CMoore-Darwinium ff5c0eb
Converted maps and HLL to follow the new pattern of allowing multiple…
CMoore-Darwinium 66d52cb
Fixed comments
CMoore-Darwinium f8c2558
Updated upstream dependencies to latest versions. As scoped-pool is n…
CMoore-Darwinium 998eb2a
Fixed merge issues
CMoore-Darwinium fd1a882
Updated dependencies again
CMoore-Darwinium 36189d9
Updated dependencies yet once more
CMoore-Darwinium 8577254
Attempted to fix issues with reading/writing to the wrong node.
CMoore-Darwinium 275da09
Simplified error handling in batches.
CMoore-Darwinium 23ab1e5
Added debug message
CMoore-Darwinium 37f0b4f
Fixed ordering of batch reads. Made partitions match C implementation
CMoore-Darwinium 796a213
Removed debug statements.
CMoore-Darwinium fbef7ed
Added parralel and almost sequential mode.
CMoore-Darwinium dd1d12e
Implemented Sequence and PreferRack replica policies.
CMoore-Darwinium 0a5b76c
Fixed reigime handling
CMoore-Darwinium 92dbbfc
Revert private changes
CMoore-Darwinium 5874717
Fixed warnings, fixed important bug leaking connections in pool
CMoore-Darwinium 8e8d467
Fixed reintroduced issues in merge
CMoore-Darwinium 3661913
Cleaned up node
CMoore-Darwinium 4b1dc88
Pool isn't useful
CMoore-Darwinium 0071d9b
Use older version of clap
CMoore-Darwinium c503b13
Fixed benchmarks
CMoore-Darwinium c9d6dc7
Merge branch 'async' into caleb-on-top-of-async
CMoore-Darwinium 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,13 @@ edition = "2018" | |
[dependencies] | ||
log = "0.4" | ||
byteorder = "1.3" | ||
ripemd160 = "0.8" | ||
base64 = "0.11" | ||
crossbeam-queue = "0.2" | ||
rand = "0.7" | ||
ripemd = "0.1" | ||
base64 = "0.13" | ||
crossbeam-queue = "0.3" | ||
rand = "0.8" | ||
lazy_static = "1.4" | ||
error-chain = "0.12" | ||
pwhash = "0.3" | ||
pwhash = "1.0" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
aerospike-rt = {path = "../aerospike-rt"} | ||
futures = {version = "0.3.16" } | ||
|
@@ -26,7 +26,7 @@ rt-tokio = ["aerospike-rt/rt-tokio"] | |
rt-async-std = ["aerospike-rt/rt-async-std"] | ||
|
||
[dev-dependencies] | ||
env_logger = "0.9.3" | ||
env_logger = "0.9" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Allow other versions of env_logger means it can keep up to date. |
||
hex = "0.4" | ||
bencher = "0.1" | ||
serde_json = "1.0" | ||
|
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
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.
ripemd160 was not maintained last time I checked and we were getting audit warnings