-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Stateless broker #1935
Merged
Merged
Stateless broker #1935
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
39ae8e6
Add topic segmentation.
benbjohnson 16dbe8b
Add Broker.Truncate().
benbjohnson 85be4e1
Merge branch 'master' of https://github.com/influxdb/influxdb into br…
benbjohnson 1bbf154
Removing replicas and subscriptions from broker.
benbjohnson b937f06
Implementing stateless broker.
benbjohnson ef8658e
Continuing stateless broker refactor.
benbjohnson 9b5aeb1
Refactor messaging client/conn.
benbjohnson 713ca4b
Merge branch 'master' into stateless-broker
benbjohnson 5f5c6ca
Integrate stateless messaging into influxdb package.
benbjohnson 4160d0b
Add continuously streaming topic readers.
benbjohnson 27e9132
Integrate stateless broker into remaining packages.
benbjohnson 66115f9
Merge branch 'master' of https://github.com/influxdb/influxdb into st…
benbjohnson 5f6bcf5
Fix broker integration bugs.
benbjohnson 7ab19b9
Merge branch 'master' of https://github.com/influxdb/influxdb into st…
benbjohnson 7880bc2
Add zero length data checks.
benbjohnson c7d4920
Update urlgen to end at current time.
benbjohnson 12e8939
Fix messaging client redirection.
benbjohnson 4b9a93d
Merge branch 'master' of https://github.com/influxdb/influxdb into st…
benbjohnson fc189cd
Remove /test from .gitignore
benbjohnson 8e813ec
Update CHANGELOG.md for v0.9.0-rc11
toddboom 53dbec8
Add config notifications and increased test coverage.
benbjohnson 8cb7be4
Merge branch 'stateless-broker' of https://github.com/influxdb/influx…
benbjohnson 96748cb
Update file permissions.
benbjohnson b045ad5
Wrap open logic in anonymous functions.
benbjohnson 41d357a
Fixes based on code review comments.
benbjohnson 06d8392
Integration test delay.
benbjohnson 7dc465b
Fix shard close race condition.
benbjohnson 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
Next
Next commit
Add topic segmentation.
- Loading branch information
commit 39ae8e64060a27ec314fc7a9c65d8d3dd4d9d60f
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
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.
You want accessors to stop unwarranted write access to the attributes?
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.
Yes, if the field gets set in a constructor then it should be unexported and accessible through an accessor IMO.