Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
Federation (#56)
Browse files Browse the repository at this point in the history
* Change flags

* Add maputils

* Add watch command

* Refactoring

* Update maputils

* Update maputils

* Fix bugs

* Update CLI defaults

* Add indexconfig command

* Add primitive types

* Update test

* Add test code

* Update protobuf util

* Update indexer

* Read index config from manager node

* Apply index config using the Raft

* Get index config from peer node when start up

* Set cluster id

* register node to manager

* Update cluster info

* Update cluster config structure

* Code refactoring

* Code refactoring

* Add federator

* Add liveness probe and readiness probe

* Add merge option for key value pair

* Fix bug

* Bug fix

* Fix typo

* Add maputils

* delete comment

* refactor code

* use maputils.Map

* Fix bug

* Code refactoring

* Update README.md

* Protobuf refactoring

* Add Raft cluster watcher

* add raft cluster watcher

* Refactor cluster watcher

* Update README.md

* Add cluster watcher

* Fix bugs

* Fix bugs

* Fix bug

* Rename

* Rename func

* Rename func

* Fix bug

* Add watchcluster command

* Watch manager node

* Add watch indexers

* implement the distributed  indexing and search

* format

* Refactor the manager code

* Rename function

* Refactor indexer code

* Fix bug

* Refactor dispatcher code

* Fix bugs

* Fix bug

* Fix bug

* Rename package

* Delete old binary

* Update delete response

* Merge multiple search results

* Merge multiple search results

* Format

* Update CHANGES.md

* Refactor HTTP server
  • Loading branch information
mosuka authored Jun 19, 2019
1 parent 512191a commit aedddb0
Show file tree
Hide file tree
Showing 84 changed files with 10,240 additions and 5,105 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

## [v0.6.0] - 2019-06-19

### Added

- Add federated search #30
- Add cluster manager (#48)
- Add KVS HTTP handlers #46

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ PACKAGES = $(shell $(GO) list ./... | grep -v '/vendor/')
PROTOBUFS = $(shell find . -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq | grep -v /vendor/)

TARGET_PACKAGES = $(shell find . -name 'main.go' -print0 | xargs -0 -n1 dirname | sort | uniq | grep -v /vendor/)
# TARGET_PACKAGES = $(shell find . -name 'main.go' -print0 | xargs -0 -n1 dirname | sort | uniq | grep -v /vendor/ | grep blast-manager)

ifeq ($(VERSION),)
VERSION = latest
Expand Down
Loading

0 comments on commit aedddb0

Please sign in to comment.