-
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
Create cluster interfaces and refactor #269
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
…er package. * fix backfill of continuous queries to actually work
…ment in raft server. Update server to work with new cluster configuration.
…unning queries. Coordinator will have the responsibility for distributing the query and possibly running through the engine. This is because the results returned by remote servers may not need to be run through the engine. I'll fix the engine tests later when this refactoring is completed to work with the new sharding style of clustering.
…local store or server.
Conflicts: src/protocol/protocol.pb.go
…added to the cluster config.
…e query spec object in parser.
…ard instead of by the coordinator. Moved filtering over to engine.
…rites in a shard.
Hits shards and replicates out. Gets logged into the WAL on the receiving server. Removed old implementation. Add the passthrough query processor. This can be used later if deletes return the number of rows deleted.
* Added ability to have a query spec execute against all servers in a shard. * Ensured that both deletes and drops run against all servers.
…don't aggregate locally weren't closing out the seriesWriter.
…fers have cleared out.
…nt in the response.
…h isn't shared state. Updated initialization and recovery to set the local server id based on if a given server's Raft name matches the raft name set locally.
…g simpler. Retries are handled elsewhere either by the write buffer or the client making the request. Connection status and other weird reconnect things where simplified to use a single lock.
…e response channel out.
Was caused by the response channels in coordinator filling up and blocking the response reader for a given cluster server (protobuf client). Added buffer size as a configuration option.
…g other data on the floor.
…at it doesn't break every other day.
Conflicts: src/api/http/api.go src/coordinator/coordinator.go src/coordinator/raft_server.go
pauldix
added a commit
that referenced
this pull request
Feb 25, 2014
…efactor Create cluster interfaces and refactor
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.
Complete refactoring of how clustering works and how data is distributed. Addition of WAL, write buffering, and failover for queries when a server is downed.