Skip to content
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

Release candidate for chronus based on 1.8.3 #14

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
1684b9e
Add test for services/meta/config
jasonjoo2010 Jun 30, 2020
578c9a6
Refactor migration
jasonjoo2010 Jul 8, 2020
ec8a7f8
Add test for parser
jasonjoo2010 Jul 20, 2020
c453c26
add ignore and fix migrate client reference
jasonjoo2010 Jul 20, 2020
479ecdd
add logdir parameter to metad
jasonjoo2010 Aug 17, 2020
080db48
- Add support logging into directory to metad
jasonjoo2010 Aug 24, 2020
42b5ec4
Complete metad-ctl, support add/update/remove/status on cluster
jasonjoo2010 Aug 25, 2020
40437ca
Changes:
jasonjoo2010 Sep 4, 2020
452d319
Mainly optimize remote iterators over persistent connections.
jasonjoo2010 Sep 10, 2020
7a0debe
Polish logging of metad
jasonjoo2010 Sep 21, 2020
27bbfae
Polish log
jasonjoo2010 Sep 21, 2020
feeca1f
Complete shard copying feature
jasonjoo2010 Sep 21, 2020
9f4eac2
Introduce dump and restore for disaster recovery for metad
jasonjoo2010 Sep 22, 2020
51ec0cb
Polish logging for metad
jasonjoo2010 Oct 5, 2020
6041c2b
Deal with short connections / Introduce reclaiming to storage of metad
jasonjoo2010 Oct 5, 2020
8e50c41
tweak a little on badger db
jasonjoo2010 Oct 5, 2020
96aa315
Tweak badger db for metad
jasonjoo2010 Oct 6, 2020
6c1573b
Fine the logging when checksum failed
jasonjoo2010 Oct 9, 2020
12238e6
Introduce freezed state to node in data store
jasonjoo2010 Oct 9, 2020
636b690
Fix bug breaking consensus of meta servers
jasonjoo2010 Oct 12, 2020
f9d5784
Upgrade to latest stable influxdb
jasonjoo2010 Oct 12, 2020
59ea0d0
Fix for nasty denpendency issue on etcd
jasonjoo2010 Oct 12, 2020
034cb70
- Fix bug of adding new meta node
jasonjoo2010 Oct 13, 2020
05e0d17
Polish documentation
jasonjoo2010 Oct 13, 2020
7648c3d
Add Meta_Cluster_Maintenance.md
jasonjoo2010 Oct 13, 2020
344cc19
Add documentation of maintenance on data cluster
jasonjoo2010 Oct 13, 2020
f055d14
Fix typo
jasonjoo2010 Oct 13, 2020
89460a0
Polish documentation
jasonjoo2010 Oct 13, 2020
b2b3e5b
Show more information of shard in influxd-ctl
jasonjoo2010 Oct 13, 2020
c4866dc
- Introduce storage info to metad-ctl to check space consumption of e…
jasonjoo2010 Oct 15, 2020
fb734ef
Polish logging
jasonjoo2010 Oct 15, 2020
34b377e
Change default configuration of influxd
jasonjoo2010 Oct 15, 2020
28130a5
Adjust documentation for latest command tool
jasonjoo2010 Oct 15, 2020
27ecfc3
Fix inconsistent issue when creating/updating user
jasonjoo2010 Oct 27, 2020
bac1976
Add connection pools monitoring through logs
jasonjoo2010 Nov 2, 2020
98627b9
Improve the precision of cost in creating connections
jasonjoo2010 Nov 2, 2020
e26ed1d
Fix possible overlap bug computing cost
jasonjoo2010 Nov 2, 2020
f9927bf
Ajust default configurations
jasonjoo2010 Nov 4, 2020
ac432ee
Optimze logging content when write shard failed
jasonjoo2010 Nov 4, 2020
1eddafb
Refactor interator request processing
jasonjoo2010 Nov 11, 2020
be74a69
Fix empty iterator problem
jasonjoo2010 Nov 13, 2020
002addc
Refactor service module making it more stable
jasonjoo2010 Nov 16, 2020
f8a3e26
Add ignore
jasonjoo2010 Nov 16, 2020
1375a2a
Polish cluster executor logic
jasonjoo2010 Nov 16, 2020
4f77af7
Make DeletedAt of shard group consistent
jasonjoo2010 Dec 13, 2020
0c7b3e3
Make it possible to reload meta peers from meta server when pings failed
jasonjoo2010 Mar 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix for nasty denpendency issue on etcd
Signed-off-by: Jason Joo <hblzxsj@163.com>
jasonjoo2010 committed Oct 12, 2020

Verified

This commit was signed with the committer’s verified signature.
CasperWA Casper Welzel Andersen
commit 59ea0d0a9af0c07f7ec5310888e3a0493fd309b1
2 changes: 1 addition & 1 deletion cmd/metad/main.go
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ func main() {
ids = append(ids, n.RaftId)
}
node.SetConfState(&raftpb.ConfState{
Nodes: ids,
Voters: ids,
})
err = node.Restore(*restoreFile)
if err != nil {
33 changes: 15 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
@@ -4,31 +4,28 @@ require (
github.com/BurntSushi/toml v0.3.1
github.com/dgraph-io/badger/v2 v2.2007.2
github.com/dgraph-io/dgraph v1.2.7
github.com/fatih/color v1.7.0
github.com/fatih/color v1.9.0
github.com/gogo/protobuf v1.3.1
github.com/golang/snappy v0.0.1
github.com/google/go-cmp v0.4.0
github.com/golang/snappy v0.0.2
github.com/google/go-cmp v0.5.2
github.com/influxdata/influxdb v1.8.3
github.com/influxdata/influxql v1.1.1-0.20200828144457-65d3ef77d385
github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368
github.com/jsternberg/zap-logfmt v1.2.0
github.com/klauspost/compress v1.4.1 // indirect
github.com/klauspost/cpuid v1.2.0 // indirect
github.com/klauspost/pgzip v1.2.1 // indirect
github.com/klauspost/compress v1.11.1 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.5.1 // test
github.com/stretchr/testify v1.6.1 // test
github.com/urfave/cli/v2 v2.2.0
github.com/willf/bitset v1.1.9 // indirect
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect
go.etcd.io/etcd v3.3.25+incompatible
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553
golang.org/x/text v0.3.2
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
github.com/willf/bitset v1.1.11 // indirect
github.com/xlab/treeprint v1.0.0 // indirect
go.etcd.io/etcd v0.0.0-20200824191128-ae9734ed278b // actual it's v3.4.13. we need it because of nasty dependency issue.
go.uber.org/zap v1.16.0
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
golang.org/x/text v0.3.3
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)

replace github.com/coreos/etcd v3.3.25+incompatible => go.etcd.io/etcd v3.3.25+incompatible

go 1.13
go 1.14
Loading