cockroachdb / cockroach

CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement.
https://www.cockroachlabs.com
Other
30.07k stars 3.8k forks source link

trouble adding a fourth node - will not become functional #19013

Closed tomholub closed 6 years ago

tomholub commented 7 years ago

1) a cluster of 3 nodes spanning New York, Germany and Singapore.

1) region=ny,datacenter=ny-a
2) region=de,datacenter=de-a
3) region=sg,datacenter=sg-a

2) I added a dozen records and load-tested the NY node with reads. 3) While NY under workload, I added a fourth node next to it. Now we have following localities:

1) region=ny,datacenter=ny-a
2) region=de,datacenter=de-a
3) region=sg,datacenter=sg-a
4) region=ny,datacenter=ny-a

My hope and expectation was that the data would replicate to the fourth node, and maybe it would even start transparently helping the other node in the same datacenter (Elasticsearch style)

Instead, the moment the node started, throughput went down the drain and stayed there, until the node that joined died a few minutes later:

image

All nodes running 1.1-beta.20170928

Eventually, after a few similar cycles, I was able to get fourth node be a part of the cluster without affecting the neighbor, but it will not accept sql connections, alternate between healthy and suspect, and die within 10 minutes of starting.

I'm working with 3 tables, < 10 rows and maybe 10kb data. Also tried to let the cluster rest - but fourth node will not become functional.

These are the logs from node 4 colocated with the NY node (different machine on same datacenter):

TIME | SEVERITY | MESSAGE | FILE:LINE
-- | -- | -- | --
2017-10-04 05:59:07 | WARNING | RUNNING IN INSECURE MODE! - Your cluster is open for any client that can access <all your IP addresses>. - Any user, even root, can log in without providing a password. - Any user, connecting as root, can read or write any data in your cluster. - There is no network encryption nor authentication, and thus no confidentiality. Check out how to secure your cluster: https://www.cockroachlabs.com/docs/stable/secure-a-cluster.html | cli/start.go:777
2017-10-04 05:59:07 | INFO | line format: [IWEF]yymmdd hh:mm:ss.uuuuuu goid file:line msg utf8=✓ | util/log/clog.go:983
2017-10-04 05:59:07 | INFO | [config] arguments: [cockroach start --join=45.77.103.118:3002,45.76.95.210:3002,45.76.188.73:3002 --port=3002 --locality=region=ny,datacenter=ny-a --cache=256MiB --insecure --advertise-host=45.76.13.223 --advertise-port=3002 --pid-file=/var/run/db.attester.pid --store=attrs=ssd,path=/cockroach/cockroach-data] | util/log/clog.go:983
2017-10-04 05:59:07 | INFO | [config] binary: CockroachDB CCL v1.1-beta.20170928 (linux amd64, built 2017/09/28 20:01:14, go1.8.3) | util/log/clog.go:983
2017-10-04 05:59:07 | INFO | [config] running on machine: c0acecf4c5e2 | util/log/clog.go:983
2017-10-04 05:59:07 | INFO | [config] file created at: 2017/10/04 05:59:07 | util/log/clog.go:983
2017-10-04 05:59:07 | INFO | CockroachDB CCL v1.1-beta.20170928 (linux amd64, built 2017/09/28 20:01:14, go1.8.3) | cli/start.go:785
2017-10-04 05:59:08 | INFO | available memory from cgroups (8.0 EiB) exceeds system memory 992 MiB, using system memory | server/config.go:312
2017-10-04 05:59:08 | INFO | system total memory: 992 MiB | server/config.go:425
2017-10-04 05:59:08 | INFO | server configuration: max offset 500000000 cache size 256 MiB SQL memory pool size 128 MiB scan interval 10m0s scan max idle time 200ms metrics sample interval 10s event log enabled true linearizable false PID file /var/run/db.attester.pid | server/config.go:427
2017-10-04 05:59:08 | INFO | starting cockroach node | cli/start.go:503
2017-10-04 05:59:08 | INFO | using local environment variables: COCKROACH_PORT=3002 | cli/start.go:505
2017-10-04 05:59:08 | INFO | opening rocksdb instance at "/cockroach/cockroach-data/local" | storage/engine/rocksdb.go:411
2017-10-04 05:59:08 | WARNING | [n?] no incoming or outgoing connections | gossip/gossip.go:1241
2017-10-04 05:59:08 | INFO | opening rocksdb instance at "/cockroach/cockroach-data" | storage/engine/rocksdb.go:411
2017-10-04 05:59:08 | INFO | [n?] started gossip client to 45.77.103.118:3002 | gossip/client.go:129
2017-10-04 05:59:09 | INFO | [n?] 1 storage engine initialized | server/config.go:528
2017-10-04 05:59:09 | INFO | [n?] RocksDB cache size: 256 MiB | server/config.go:530
2017-10-04 05:59:09 | INFO | [n?] store 0: RocksDB, max size 0 B, max open file limit 1043576 | server/config.go:530
2017-10-04 05:59:09 | INFO | [n4,s4] [n4,s4,r14/?:/Table/1{7-8}]: added to replica GC queue | storage/store.go:1137
2017-10-04 05:59:09 | INFO | [n4,s4] [n4,s4,r15/?:/Table/1{8-9}]: added to replica GC queue | storage/store.go:1137
2017-10-04 05:59:09 | INFO | [n4,s4] [n4,s4,r16/?:/Table/{19-50}]: added to replica GC queue | storage/store.go:1137
2017-10-04 05:59:09 | INFO | [n4] initialized store [n4,s4]: disk (capacity=25 GiB, available=20 GiB, used=18 MiB, logicalBytes=51 MiB), ranges=18, leases=0, writes=0.00, bytesPerReplica={p10=0.00 p25=0.00 p50=18497.00 p75=418405.00 p90=17563646.00}, writesPerReplica={p10=0.00 p25=0.00 p50=0.00 p75=0.00 p90=0.00} | server/node.go:461
2017-10-04 05:59:09 | INFO | [n4] node ID 4 initialized | server/node.go:326
2017-10-04 05:59:09 | INFO | [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"45.76.13.223:3002" > attrs:<> locality:<tiers:<key:"region" value:"ny" > tiers:<key:"datacenter" value:"ny-a" > > ServerVersion:<major_val:1 minor_val:0 patch:0 unstable:3 > | gossip/gossip.go:327
2017-10-04 05:59:09 | INFO | [n4] read 3 node addresses from persistent storage | storage/stores.go:303
2017-10-04 05:59:09 | INFO | [n4] connecting to gossip network to verify cluster ID... | server/node.go:606
2017-10-04 05:59:09 | INFO | [n4] node connected via gossip and verified as part of cluster "f8f0812d-6b12-47e2-94a0-d83c6e745c8a" | server/node.go:631
2017-10-04 05:59:09 | INFO | [n4] node=4: started with [ssd=/cockroach/cockroach-data] engine(s) and attributes [] | server/node.go:403
2017-10-04 05:59:09 | INFO | [n4] creating distSQLPlanner with address {tcp 45.76.13.223:3002} | sql/executor.go:408
2017-10-04 05:59:10 | INFO | [n4] starting http server at c0acecf4c5e2:8080 | server/server.go:927
2017-10-04 05:59:10 | INFO | [n4] starting grpc/postgres server at c0acecf4c5e2:3002 | server/server.go:928
2017-10-04 05:59:10 | INFO | [n4] advertising CockroachDB node at 45.76.13.223:3002 | server/server.go:929
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r14/?:/Table/1{7-8}] removing replica | storage/store.go:2156
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r14/?:/Table/1{7-8}] removed 12 (0+12) keys in 6ms [clear=3ms commit=4ms] | storage/replica.go:767
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r16/?:/Table/{19-50}] removing replica | storage/store.go:2156
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r16/?:/Table/{19-50}] removed 15 (0+15) keys in 2ms [clear=1ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:10 | INFO | [n4] done ensuring all necessary migrations have run | server/server.go:1071
2017-10-04 05:59:10 | INFO | [n4] serving sql connections | server/server.go:1073
2017-10-04 05:59:10 | INFO | node startup completed: CockroachDB node starting at 2017-10-04 05:59:10.41551359 +0000 UTC (took 2.5s) build: CCL v1.1-beta.20170928 @ 2017/09/28 20:01:14 (go1.8.3) admin: http://c0acecf4c5e2:8080 sql: postgresql://root@45.76.13.223:3002?application_name=cockroach&sslmode=disable logs: /cockroach/cockroach-data/logs locality: region=ny,datacenter=ny-a store[0]: path=/cockroach/cockroach-data,attrs=ssd status: restarted pre-existing node clusterID: f8f0812d-6b12-47e2-94a0-d83c6e745c8a nodeID: 4 | cli/start.go:582
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r15/?:/Table/1{8-9}] removing replica | storage/store.go:2156
2017-10-04 05:59:10 | INFO | [replicaGC,n4,s4,r15/?:/Table/1{8-9}] removed 15 (0+15) keys in 1ms [clear=0ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:10 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=22.50, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:10 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=22.50, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:10 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=22.50, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:11 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=22.50, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:11 | INFO | [n4] Event: "node_restart", target: 4, info: {Descriptor:{NodeID:4 Address:{NetworkField:tcp AddressField:45.76.13.223:3002} Attrs: Locality:region=ny,datacenter=ny-a ServerVersion:1.0-3} ClusterID:f8f0812d-6b12-47e2-94a0-d83c6e745c8a StartedAt:1507096749960076119 LastUp:1507095949058171994} | sql/event_log.go:102
2017-10-04 05:59:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=22.50, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:13 | INFO | [n4] raft transport stream to node 1 established | storage/raft_transport.go:455
2017-10-04 05:59:13 | INFO | [n4] raft transport stream to node 2 established | storage/raft_transport.go:455
2017-10-04 05:59:13 | INFO | [n4] raft transport stream to node 3 established | storage/raft_transport.go:455
2017-10-04 05:59:13 | INFO | [n4,s4,r12/35:/Table/1{5-6}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:13 | INFO | [n4,s4,r12/35:/Table/1{5-6}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:13 | INFO | [replicaGC,n4,s4,r12/35:/Table/1{5-6}] removing replica | storage/store.go:2156
2017-10-04 05:59:13 | INFO | [replicaGC,n4,s4,r12/35:/Table/1{5-6}] removed 49 (37+12) keys in 3ms [clear=1ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:13 | INFO | [n4,s4,r2/101:/System/{-NodeLive…}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:13 | INFO | [n4,s4,r2/101:/System/{-NodeLive…}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:13 | INFO | [replicaGC,n4,s4,r2/101:/System/{-NodeLive…}] removing replica | storage/store.go:2156
2017-10-04 05:59:13 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=22.25, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:13 | INFO | [replicaGC,n4,s4,r2/101:/System/{-NodeLive…}] removed 18 (0+18) keys in 34ms [clear=33ms commit=2ms] | storage/replica.go:767
2017-10-04 05:59:13 | INFO | [n4,s4,r10/36:/Table/1{3-4}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:13 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=22.00, overfull-threshold=24 | storage/allocator_scorer.go:614
2017-10-04 05:59:14 | INFO | [n4,s4,r10/36:/Table/1{3-4}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r10/36:/Table/1{3-4}] removing replica | storage/store.go:2156
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r10/36:/Table/1{3-4}] removed 8980 (8964+16) keys in 2ms [clear=0ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:14 | INFO | [n4,s4,r9/22:/Table/1{2-3}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [n4,s4,r9/22:/Table/1{2-3}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r9/22:/Table/1{2-3}] removing replica | storage/store.go:2156
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r9/22:/Table/1{2-3}] removed 197 (185+12) keys in 2ms [clear=1ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:14 | INFO | [n4,s4,r51/21:/System/tsd/cr.{node.…-store…}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [n4,s4,r51/21:/System/tsd/cr.{node.…-store…}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r51/21:/System/tsd/cr.{node.…-store…}] removing replica | storage/store.go:2156
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r51/21:/System/tsd/cr.{node.…-store…}] removed 2435 (2424+11) keys in 2ms [clear=1ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:14 | INFO | [n4,s4,r11/52:/Table/1{4-5}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.25, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 05:59:14 | INFO | [n4,s4,r11/52:/Table/1{4-5}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r11/52:/Table/1{4-5}] removing replica | storage/store.go:2156
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r11/52:/Table/1{4-5}] removed 12 (0+12) keys in 2ms [clear=1ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:14 | INFO | [n4,s4,r4/19:/System/{NodeLive…-tsd}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [n4,s4,r4/19:/System/{NodeLive…-tsd}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 05:59:14 | INFO | [replicaGC,n4,s4,r4/19:/System/{NodeLive…-tsd}] removing replica | storage/store.go:2156
2017-10-04 05:59:14 | INFO | [n4,s4,r7/50:/Table/{SystemCon…-11}] added to replica GC queue (peer suggestion) | storage/store.go:3225
2017-10-04 05:59:14 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 05:59:15 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 05:59:15 | INFO | [replicaGC,n4,s4,r4/19:/System/{NodeLive…-tsd}] removed 30 (18+12) keys in 970ms [clear=969ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:15 | INFO | [replicaGC,n4,s4,r7/50:/Table/{SystemCon…-11}] removing replica | storage/store.go:2156
2017-10-04 05:59:15 | INFO | [replicaGC,n4,s4,r7/50:/Table/{SystemCon…-11}] removed 49 (36+13) keys in 5ms [clear=4ms commit=1ms] | storage/replica.go:767
2017-10-04 05:59:15 | WARNING | [n4,s4,r7/50:/Table/{SystemCon…-11}] could not acquire lease for range gossip: r7 was not found | storage/replica.go:5130
2017-10-04 05:59:15 | WARNING | [n4,s4,r7/50:/Table/{SystemCon…-11}] could not gossip system config: r7 was not found | storage/store.go:1286
2017-10-04 05:59:15 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:15 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:16 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:16 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:16 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:17 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:17 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:17 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:17 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:18 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:18 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:18 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:19 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:19 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:19 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:19 | INFO | [n4,s4] sstables (read amplification = 2): 0 [ 1M 1 ]: 1M 6 [ 16M 1 ]: 16M | storage/store.go:4174
2017-10-04 05:59:19 | INFO | [n4,s4] ** Compaction Stats [default] ** Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop ---------------------------------------------------------------------------------------------------------------------------------------------------------- L0 1/0 1.00 MB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0 1 0.334 0 0 L6 1/0 16.27 MB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0.000 0 0 Sum 2/0 17.27 MB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0 1 0.334 0 0 Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0 1 0.334 0 0 Uptime(secs): 11.9 total, 11.9 interval Flush(GB): cumulative 0.001, interval 0.001 AddFile(GB): cumulative 0.000, interval 0.000 AddFile(Total Files): cumulative 0, interval 0 AddFile(L0 Files): cumulative 0, interval 0 AddFile(Keys): cumulative 0, interval 0 Cumulative compaction: 0.00 GB write, 0.08 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.3 seconds Interval compaction: 0.00 GB write, 0.08 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.3 seconds Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count | storage/store.go:4175
2017-10-04 05:59:19 | INFO | [n4] runtime stats: 134 MiB RSS, 125 goroutines, 14 MiB/960 KiB/21 MiB GO alloc/idle/total, 74 MiB/84 MiB CGO alloc/total, 0.00cgo/sec, 0.00/0.00 %(u/s)time, 0.00 %gc (7x) | server/status/runtime.go:223
2017-10-04 05:59:20 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:20 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:20 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:21 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:22 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:22 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:22 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:22 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:22 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:23 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:23 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:23 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:24 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:24 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:24 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:25 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:25 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:25 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:26 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:26 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:26 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:27 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:27 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:27 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:27 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:28 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:28 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:29 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:29 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:29 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:29 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:29 | INFO | [n4] runtime stats: 138 MiB RSS, 125 goroutines, 12 MiB/6.5 MiB/25 MiB GO alloc/idle/total, 74 MiB/84 MiB CGO alloc/total, 37.00cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 05:59:30 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:30 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:30 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:30 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:31 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:31 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:31 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:32 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:32 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:32 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:32 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:32 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:33 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:33 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:34 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:34 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:34 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:34 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:35 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:35 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:35 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:36 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:36 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:36 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:36 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:36 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:37 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:37 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:37 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:38 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:38 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:38 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:39 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:39 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:39 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:39 | INFO | [n4] runtime stats: 138 MiB RSS, 125 goroutines, 9.4 MiB/8.5 MiB/25 MiB GO alloc/idle/total, 74 MiB/84 MiB CGO alloc/total, 37.00cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 05:59:40 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:40 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:40 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:40 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:40 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:41 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:41 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:41 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:42 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:42 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:42 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:43 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:43 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:43 | INFO | [n4] node has connected to cluster via gossip | gossip/gossip.go:1255
2017-10-04 05:59:43 | INFO | [n4] wrote 3 node addresses to persistent storage | storage/stores.go:322
2017-10-04 05:59:43 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:43 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:44 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:44 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:44 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:44 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:45 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:45 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:45 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:45 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:46 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:46 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:46 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:47 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:47 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:47 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:48 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:48 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:48 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:48 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:49 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:49 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:49 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:49 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:49 | INFO | [n4] runtime stats: 139 MiB RSS, 125 goroutines, 16 MiB/3.4 MiB/25 MiB GO alloc/idle/total, 74 MiB/84 MiB CGO alloc/total, 37.70cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (0x) | server/status/runtime.go:223
2017-10-04 05:59:50 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:50 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:51 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:51 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:51 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:51 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:51 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:52 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:52 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:52 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:52 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:53 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:53 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:54 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:54 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:54 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:54 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:54 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:55 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:55 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:55 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:56 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:56 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:56 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:56 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:57 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:57 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:57 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:58 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:58 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:58 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:59 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:59 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:59 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 05:59:59 | INFO | [n4] runtime stats: 139 MiB RSS, 125 goroutines, 14 MiB/5.2 MiB/25 MiB GO alloc/idle/total, 74 MiB/84 MiB CGO alloc/total, 36.80cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:00:00 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:00 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:00 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:00 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:00 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:01 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:01 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:01 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:02 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:02 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:02 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:03 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:03 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:03 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:03 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:04 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:04 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:04 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:05 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:05 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:05 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:05 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:06 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:06 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:06 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:07 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:07 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:07 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:07 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:08 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:08 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:08 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:09 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:09 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:09 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:09 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:09 | INFO | [n4] gossip status (ok, 4 nodes) gossip client (1/3 cur/max conns) 1: 45.77.103.118:3002 (1m2s: infos 15/693 sent/received, bytes 5184B/114582B sent/received) gossip server (0/3 cur/max conns, infos 15/693 sent/received, bytes 5184B/114582B sent/received) | gossip/gossip.go:478
2017-10-04 06:00:09 | INFO | [n4] runtime stats: 139 MiB RSS, 125 goroutines, 12 MiB/6.8 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.60cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:00:10 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:10 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:11 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:11 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:11 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:11 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:11 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:12 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:12 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:13 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:13 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:13 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:14 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:14 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:14 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:14 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:15 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:15 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:15 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:15 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:16 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:16 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:16 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:16 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:17 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:17 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:17 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:18 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:18 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:18 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:18 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:19 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:19 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:19 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:19 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:19 | INFO | [n4] runtime stats: 139 MiB RSS, 116 goroutines, 18 MiB/1.6 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 38.20cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (0x) | server/status/runtime.go:223
2017-10-04 06:00:20 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:20 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:21 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:21 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:21 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:22 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:22 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:22 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:23 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:23 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:23 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:24 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:24 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:24 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:24 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:25 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:25 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:25 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:25 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:26 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:26 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:26 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:27 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:27 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:27 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:28 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:28 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:28 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:29 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:29 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:29 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:29 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:29 | INFO | [n4] runtime stats: 139 MiB RSS, 116 goroutines, 14 MiB/4.7 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 36.39cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:00:30 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:30 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:30 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:30 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:31 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:31 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:31 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:32 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:32 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:32 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:32 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:33 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:33 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:33 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:33 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:34 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:34 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:34 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:35 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:35 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:35 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:36 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:36 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:36 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:36 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:37 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:37 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:38 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:38 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:38 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:38 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:39 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:39 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:39 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:39 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:39 | INFO | [n4] runtime stats: 137 MiB RSS, 116 goroutines, 12 MiB/6.3 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.31cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:00:40 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:40 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:40 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:40 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:41 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:41 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:41 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:42 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:42 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:42 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:42 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:43 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:43 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:43 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:43 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:44 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:44 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:44 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:44 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:45 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:45 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:45 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:46 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:46 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:46 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:47 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:47 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:47 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:48 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:48 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:48 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:48 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:48 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:49 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:49 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:49 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:49 | INFO | [n4] runtime stats: 137 MiB RSS, 116 goroutines, 9.8 MiB/8.6 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.70cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:00:50 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:50 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:50 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:51 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:51 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:51 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:51 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:52 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:52 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:52 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:52 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:53 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:53 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:53 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:54 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:54 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:54 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:54 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:55 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:55 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:55 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:55 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:56 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:56 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:56 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:57 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:57 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:57 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:57 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:58 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:58 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:58 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:58 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:59 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:59 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:59 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:00:59 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 16 MiB/3.5 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.60cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (0x) | server/status/runtime.go:223
2017-10-04 06:01:00 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:00 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:00 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:01 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:01 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:01 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:02 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:02 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:02 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:02 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:03 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:03 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:03 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:03 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:04 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:04 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:04 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:04 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:05 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:05 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:05 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:06 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:06 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:06 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:06 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:07 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:07 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:07 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:08 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:08 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:08 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:09 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:09 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:09 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:09 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:09 | INFO | [n4] gossip status (ok, 4 nodes) gossip client (1/3 cur/max conns) 1: 45.77.103.118:3002 (2m2s: infos 16/1295 sent/received, bytes 5567B/201405B sent/received) gossip server (0/3 cur/max conns, infos 16/1295 sent/received, bytes 5567B/201405B sent/received) | gossip/gossip.go:478
2017-10-04 06:01:09 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 14 MiB/4.5 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.60cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:01:10 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:10 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:11 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:11 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:11 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:11 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:12 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:12 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:13 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:13 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:13 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:14 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:14 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:14 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:14 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:15 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:15 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:15 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:15 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:16 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:16 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:16 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:16 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:17 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:17 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:18 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:18 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:18 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:18 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:19 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:19 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:19 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:19 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 13 MiB/6.0 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 36.10cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:01:20 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:20 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:20 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:21 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:21 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:21 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:22 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:22 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:22 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:23 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:23 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:23 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:23 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:24 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:24 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:24 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:24 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:25 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:25 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:25 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:26 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:26 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:26 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:27 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:27 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:27 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:28 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:28 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:28 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:29 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:29 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:29 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:29 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:29 | INFO | [n4] runtime stats: 136 MiB RSS, 117 goroutines, 11 MiB/7.4 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.70cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:01:30 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:30 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:30 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:31 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:31 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:31 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:31 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:32 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:32 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:32 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:32 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:32 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:33 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:33 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:33 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:34 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:34 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:35 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:35 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:35 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:35 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:36 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:36 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:36 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:36 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:36 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:37 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:37 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:38 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:38 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:38 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:38 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:39 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:39 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:39 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:39 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:39 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 17 MiB/2.2 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.60cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (0x) | server/status/runtime.go:223
2017-10-04 06:01:40 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:40 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:40 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:41 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:41 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:41 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:41 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:42 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:42 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:42 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:43 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:43 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:43 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:43 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:44 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:44 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:44 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:45 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:45 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:45 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:45 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:46 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:46 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:46 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:46 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:47 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:47 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:47 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:48 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:48 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:48 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:48 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:49 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:49 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:49 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:49 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 14 MiB/4.2 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.00cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:01:50 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:50 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:50 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:50 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:51 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:51 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:51 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:52 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:52 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:52 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:52 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:53 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:53 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:53 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:53 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:54 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:54 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:54 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:54 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:55 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:55 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:56 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:56 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:56 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:56 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:57 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:57 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:57 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:57 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:58 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:58 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:58 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:59 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:59 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:59 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:01:59 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 13 MiB/5.8 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 36.70cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:01:59 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:00 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:00 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:00 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:00 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:01 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:01 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:02 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:02 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:02 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:02 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:03 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:03 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:03 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:03 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:04 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:04 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:04 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:05 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:05 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:05 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:06 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:06 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:06 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:06 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:07 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:07 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:07 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:07 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:08 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:08 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:09 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:09 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:09 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:09 | INFO | [n4] gossip status (ok, 4 nodes) gossip client (1/3 cur/max conns) 1: 45.77.103.118:3002 (3m2s: infos 17/1944 sent/received, bytes 5950B/294201B sent/received) gossip server (0/3 cur/max conns, infos 17/1944 sent/received, bytes 5950B/294201B sent/received) | gossip/gossip.go:478
2017-10-04 06:02:09 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 11 MiB/7.3 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.00cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:02:10 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:10 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:10 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:10 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:11 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:11 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:11 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:11 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:12 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:13 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:13 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:13 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:13 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:14 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:14 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:14 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:14 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:14 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:15 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:15 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:16 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:16 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:16 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:16 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:17 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:17 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:17 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:17 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:18 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:18 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:18 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:19 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:19 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:19 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:19 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 17 MiB/2.1 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.70cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (0x) | server/status/runtime.go:223
2017-10-04 06:02:20 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:20 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:20 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:20 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:20 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:21 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:21 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:21 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:22 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:22 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:22 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:23 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:23 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:23 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:23 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:24 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:24 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:24 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:25 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:25 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:25 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:26 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:26 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:26 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:26 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:27 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:27 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:27 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:27 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:28 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:28 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:28 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:29 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:29 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:29 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:29 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:29 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 14 MiB/4.9 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 37.60cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:02:30 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:30 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:30 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:30 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:31 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:31 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:31 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:31 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:32 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:32 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:32 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:33 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:33 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:33 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:33 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:34 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:34 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:34 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:35 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:35 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:35 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:35 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:36 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:36 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:36 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:37 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:37 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:37 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:37 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:38 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:38 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:38 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:39 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:39 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:39 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 12 MiB/7.0 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 36.10cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:02:39 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:40 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:40 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:40 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:40 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:40 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:41 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:41 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:41 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:42 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:42 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:42 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:43 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:43 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:43 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:43 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:44 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:44 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:44 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:45 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:45 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:45 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:45 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:46 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:46 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:46 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:47 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:47 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:47 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:47 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:48 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:48 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:48 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:48 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:49 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:49 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:49 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:49 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:02:49 | INFO | [n4] runtime stats: 136 MiB RSS, 116 goroutines, 9.4 MiB/8.6 MiB/25 MiB GO alloc/idle/total, 73 MiB/84 MiB CGO alloc/total, 38.79cgo/sec, 0.01/0.00 %(u/s)time, 0.00 %gc (1x) | server/status/runtime.go:223
2017-10-04 06:02:50 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:05:59 | WARNING | RUNNING IN INSECURE MODE! - Your cluster is open for any client that can access <all your IP addresses>. - Any user, even root, can log in without providing a password. - Any user, connecting as root, can read or write any data in your cluster. - There is no network encryption nor authentication, and thus no confidentiality. Check out how to secure your cluster: https://www.cockroachlabs.com/docs/stable/secure-a-cluster.html | cli/start.go:777
2017-10-04 06:05:59 | INFO | line format: [IWEF]yymmdd hh:mm:ss.uuuuuu goid file:line msg utf8=✓ | util/log/clog.go:983
2017-10-04 06:05:59 | INFO | [config] arguments: [cockroach start --join=45.77.103.118:3002,45.76.95.210:3002,45.76.188.73:3002 --port=3002 --locality=region=ny,datacenter=ny-b --cache=256MiB --insecure --advertise-host=45.76.13.223 --advertise-port=3002 --pid-file=/var/run/db.attester.pid --store=attrs=ssd,path=/cockroach/cockroach-data] | util/log/clog.go:983
2017-10-04 06:05:59 | INFO | [config] binary: CockroachDB CCL v1.1-beta.20170928 (linux amd64, built 2017/09/28 20:01:14, go1.8.3) | util/log/clog.go:983
2017-10-04 06:05:59 | INFO | [config] running on machine: 366410ea8464 | util/log/clog.go:983
2017-10-04 06:05:59 | INFO | [config] file created at: 2017/10/04 06:05:59 | util/log/clog.go:983
2017-10-04 06:05:59 | INFO | CockroachDB CCL v1.1-beta.20170928 (linux amd64, built 2017/09/28 20:01:14, go1.8.3) | cli/start.go:785
2017-10-04 06:05:59 | INFO | available memory from cgroups (8.0 EiB) exceeds system memory 992 MiB, using system memory | server/config.go:312
2017-10-04 06:05:59 | INFO | system total memory: 992 MiB | server/config.go:425
2017-10-04 06:05:59 | INFO | server configuration: max offset 500000000 cache size 256 MiB SQL memory pool size 128 MiB scan interval 10m0s scan max idle time 200ms metrics sample interval 10s event log enabled true linearizable false PID file /var/run/db.attester.pid | server/config.go:427
2017-10-04 06:05:59 | INFO | starting cockroach node | cli/start.go:503
2017-10-04 06:05:59 | INFO | using local environment variables: COCKROACH_PORT=3002 | cli/start.go:505
2017-10-04 06:05:59 | INFO | opening rocksdb instance at "/cockroach/cockroach-data/local" | storage/engine/rocksdb.go:411
2017-10-04 06:05:59 | WARNING | [n?] no incoming or outgoing connections | gossip/gossip.go:1241
2017-10-04 06:05:59 | INFO | opening rocksdb instance at "/cockroach/cockroach-data" | storage/engine/rocksdb.go:411
2017-10-04 06:05:59 | INFO | [n?] 1 storage engine initialized | server/config.go:528
2017-10-04 06:05:59 | INFO | [n?] RocksDB cache size: 256 MiB | server/config.go:530
2017-10-04 06:05:59 | INFO | [n?] store 0: RocksDB, max size 0 B, max open file limit 1043576 | server/config.go:530
2017-10-04 06:05:59 | INFO | [n?] started gossip client to 45.77.103.118:3002 | gossip/client.go:129
2017-10-04 06:05:59 | INFO | [n?] sleeping for 473.141328ms to guarantee HLC monotonicity | server/server.go:818
2017-10-04 06:05:59 | INFO | [n4] initialized store [n4,s4]: disk (capacity=25 GiB, available=20 GiB, used=20 MiB, logicalBytes=32 MiB), ranges=7, leases=0, writes=0.00, bytesPerReplica={p10=0.00 p25=0.00 p50=28649.00 p75=14298792.00 p90=18897389.00}, writesPerReplica={p10=0.00 p25=0.00 p50=0.00 p75=0.00 p90=0.00} | server/node.go:461
2017-10-04 06:05:59 | INFO | [n4] node ID 4 initialized | server/node.go:326
2017-10-04 06:05:59 | INFO | [n4] NodeDescriptor set to node_id:4 address:<network_field:"tcp" address_field:"45.76.13.223:3002" > attrs:<> locality:<tiers:<key:"region" value:"ny" > tiers:<key:"datacenter" value:"ny-b" > > ServerVersion:<major_val:1 minor_val:0 patch:0 unstable:3 > | gossip/gossip.go:327
2017-10-04 06:05:59 | INFO | [n4] read 3 node addresses from persistent storage | storage/stores.go:303
2017-10-04 06:05:59 | INFO | [n4] connecting to gossip network to verify cluster ID... | server/node.go:606
2017-10-04 06:05:59 | INFO | [n4] node connected via gossip and verified as part of cluster "f8f0812d-6b12-47e2-94a0-d83c6e745c8a" | server/node.go:631
2017-10-04 06:05:59 | INFO | [n4] node=4: started with [ssd=/cockroach/cockroach-data] engine(s) and attributes [] | server/node.go:403
2017-10-04 06:05:59 | INFO | [n4] creating distSQLPlanner with address {tcp 45.76.13.223:3002} | sql/executor.go:408
2017-10-04 06:05:59 | INFO | [n4] starting http server at 366410ea8464:8080 | server/server.go:927
2017-10-04 06:05:59 | INFO | [n4] starting grpc/postgres server at 366410ea8464:3002 | server/server.go:928
2017-10-04 06:05:59 | INFO | [n4] advertising CockroachDB node at 45.76.13.223:3002 | server/server.go:929
2017-10-04 06:05:59 | INFO | [n4] done ensuring all necessary migrations have run | server/server.go:1071
2017-10-04 06:05:59 | INFO | [n4] serving sql connections | server/server.go:1073
2017-10-04 06:05:59 | INFO | node startup completed: CockroachDB node starting at 2017-10-04 06:05:59.945788462 +0000 UTC (took 0.8s) build: CCL v1.1-beta.20170928 @ 2017/09/28 20:01:14 (go1.8.3) admin: http://366410ea8464:8080 sql: postgresql://root@45.76.13.223:3002?application_name=cockroach&sslmode=disable logs: /cockroach/cockroach-data/logs locality: region=ny,datacenter=ny-b store[0]: path=/cockroach/cockroach-data,attrs=ssd status: restarted pre-existing node clusterID: f8f0812d-6b12-47e2-94a0-d83c6e745c8a nodeID: 4 | cli/start.go:582
2017-10-04 06:05:59 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:00 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:00 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:00 | INFO | [n4] Event: "node_restart", target: 4, info: {Descriptor:{NodeID:4 Address:{NetworkField:tcp AddressField:45.76.13.223:3002} Attrs: Locality:region=ny,datacenter=ny-b ServerVersion:1.0-3} ClusterID:f8f0812d-6b12-47e2-94a0-d83c6e745c8a StartedAt:1507097159809974866 LastUp:1507097155175878515} | sql/event_log.go:102
2017-10-04 06:06:01 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:01 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:01 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:01 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:02 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:02 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:02 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:02 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:03 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:03 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:03 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:04 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:04 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:04 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:05 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:05 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:05 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:05 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:05 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:06 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:06 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:06 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:07 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:07 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:07 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:08 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:08 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:08 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:09 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:09 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:09 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:09 | INFO | [n4] runtime stats: 61 MiB RSS, 116 goroutines, 9.7 MiB/4.0 MiB/20 MiB GO alloc/idle/total, 5.1 MiB/6.5 MiB CGO alloc/total, 0.00cgo/sec, 0.00/0.00 %(u/s)time, 0.00 %gc (7x) | server/status/runtime.go:223
2017-10-04 06:06:09 | INFO | [n4,s4] sstables (read amplification = 1): 6 [ 5M 1 ]: 5M | storage/store.go:4174
2017-10-04 06:06:09 | INFO | [n4,s4] ** Compaction Stats [default] ** Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop ---------------------------------------------------------------------------------------------------------------------------------------------------------- L0 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 6.7 0 1 0.003 0 0 L6 1/0 4.85 MB 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 4.7 8.5 2.4 2 1 2.037 90K 84K Sum 1/0 4.85 MB 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 212.2 8.5 2.4 2 2 1.020 90K 84K Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 -0.0 0.0 212.2 8.5 2.4 2 2 1.020 90K 84K Uptime(secs): 10.6 total, 10.6 interval Flush(GB): cumulative 0.000, interval 0.000 AddFile(GB): cumulative 0.000, interval 0.000 AddFile(Total Files): cumulative 0, interval 0 AddFile(L0 Files): cumulative 0, interval 0 AddFile(Keys): cumulative 0, interval 0 Cumulative compaction: 0.00 GB write, 0.46 MB/s write, 0.02 GB read, 1.63 MB/s read, 2.0 seconds Interval compaction: 0.00 GB write, 0.46 MB/s write, 0.02 GB read, 1.63 MB/s read, 2.0 seconds Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count | storage/store.go:4175
2017-10-04 06:06:09 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:10 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:10 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:10 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:10 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:11 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:11 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:11 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:12 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:12 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:12 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:13 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:13 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:13 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:14 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:14 | INFO | [replicate,n4,s4,r17/27:/System/ts{d/cr.st…-e}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.50, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:14 | INFO | [n4,s4,r9/?:{-}] applying preemptive snapshot at index 333 (id=18a02153, encoded size=66988, 1 rocksdb batches, 72 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:14 | INFO | [n4,s4,r9/?:/Table/1{2-3}] applied preemptive snapshot in 18ms [clear=1ms batch=0ms entries=6ms commit=11ms] | storage/replica_raftstorage.go:733
2017-10-04 06:06:14 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=20.75, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:14 | INFO | [n4,s4,r32/?:{-}] applying preemptive snapshot at index 237 (id=31aeef43, encoded size=17470, 1 rocksdb batches, 24 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:14 | INFO | [n4,s4,r32/?:/Table/5{1-2}] applied preemptive snapshot in 2ms [clear=0ms batch=0ms entries=0ms commit=1ms] | storage/replica_raftstorage.go:733
2017-10-04 06:06:14 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:15 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:15 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:15 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:15 | INFO | [n4] raft transport stream to node 1 established | storage/raft_transport.go:455
2017-10-04 06:06:16 | INFO | [n4,s4,r17/27:/System/ts{d/cr.st…-e}] applying preemptive snapshot at index 9317 (id=a8138584, encoded size=167891, 1 rocksdb batches, 26 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:16 | INFO | [n4,s4,r17/27:/System/ts{d/cr.st…-e}] applied preemptive snapshot in 5ms [clear=2ms batch=0ms entries=0ms commit=3ms] | storage/replica_raftstorage.go:733
2017-10-04 06:06:16 | INFO | [replicaGC,n4,s4,r32/?:/Table/5{1-2}] removing replica | storage/store.go:2156
2017-10-04 06:06:16 | INFO | [replicaGC,n4,s4,r32/?:/Table/5{1-2}] removed 12 (0+12) keys in 1ms [clear=0ms commit=1ms] | storage/replica.go:767
2017-10-04 06:06:16 | INFO | [n4] raft transport stream to node 2 established | storage/raft_transport.go:455
2017-10-04 06:06:16 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.75, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:17 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=20.75, overfull-threshold=22 | storage/allocator_scorer.go:614
2017-10-04 06:06:17 | INFO | [n4,s4,r15/?:{-}] applying preemptive snapshot at index 528 (id=9d63fa2f, encoded size=9464, 1 rocksdb batches, 4 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:17 | INFO | [n4,s4,r15/?:/Table/1{8-9}] applied preemptive snapshot in 1ms [clear=0ms batch=0ms entries=0ms commit=1ms] | storage/replica_raftstorage.go:733
2017-10-04 06:06:17 | INFO | [n4] raft transport stream to node 3 established | storage/raft_transport.go:455
2017-10-04 06:06:17 | INFO | [replicate,n4,s4,r8/28:/Table/1{1-2}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.00, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:17 | INFO | [n4,s4,r32/29:{-}] applying Raft snapshot at index 240 (id=522a9d9d, encoded size=20047, 1 rocksdb batches, 27 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:17 | INFO | [n4,s4,r32/29:/Table/5{1-2}] applied Raft snapshot in 2ms [clear=0ms batch=0ms entries=0ms commit=1ms] | storage/replica_raftstorage.go:733
2017-10-04 06:06:17 | INFO | [replicate,n4,s4,r18/15:/System/tsd/cr.store.{re…-va…}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.25, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:18 | INFO | [replicate,n4,s4,r33/24:/Table/5{2-3}] s3: should-rebalance(ranges-overfull): rangeCount=25, mean=21.25, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:18 | INFO | [replicate,n4,s4,r35/33:/{Table/54-Max}] s2: should-rebalance(ranges-overfull): rangeCount=25, mean=21.25, overfull-threshold=23 | storage/allocator_scorer.go:614
2017-10-04 06:06:18 | INFO | [n4,s4,r33/24:/Table/5{2-3}] applying preemptive snapshot at index 283 (id=87a12b4d, encoded size=37586, 1 rocksdb batches, 61 log entries) | storage/replica_raftstorage.go:725
2017-10-04 06:06:18 | INFO | [n4,s4,r33/24:/Table/5{2-3}] applied preemptive snapshot in 2ms [clear=0ms batch=0ms entries=0ms commit=2ms] | storage/replica_raftstorage.go:733

Sorry for the big dump, hard to say which logs are important.

tomholub commented 7 years ago

Downgraded all nodes to v1.0.6 and the fourth node is happy now, accepting and serving requests.

a-robinson commented 7 years ago

Thanks for the details, @tomholub! Getting the full dump of logs is fantastic. Just to make sure I'm understanding you, all of the nodes, including the fourth one, were running 1.1-beta.20170928?

Do you have the logs from when the fourth node died or from the other nodes? And can you take screenshots of the Replication graphs from the admin UI (at path /#/cluster/all/replication)?

tomholub commented 7 years ago

Yes, during the time that this was happening, all nodes were running 1.1-beta.20170928, including the fourth one. I retrieved the logs from n-4 through another node's dashboard during the time that n-4 was running, in between crashes. I have copied the full log until the end of fourth node - or so I believe. You will see two WARNING | RUNNING IN INSECURE MODE! in the logs, the second one is there because node was restarted after a crash.

Unfortunately, that cluster was a testing one and I didn't retain any records of it.

Note that this was tested on 1GB ram machines (I understand that 2GB is recommended). There were other services running on these nodes, and although other services were idle, I wonder if the 4th node was just running out of memory / crashing for that reason.

Either way, that should not affect the remaining nodes in the cluster. Interestingly, the stable 1.0.6 didn't show these issues.

tomholub commented 7 years ago

Also, looking at my records, there was a replication factor of 3 set this way:

echo "num_replicas: 3" > zone.yaml
cockroach zone set .default --insecure -f zone.yaml

(part of a node starting script)

a-robinson commented 7 years ago

Alright, I've got a repro and will make sure we get a fix in soon. It looks like we're hitting a case along the lines of https://github.com/cockroachdb/cockroach/issues/17971. Thanks a ton for the report!

dianasaur323 commented 7 years ago

awesome, I'm glad we got this fixed! By the way, @tomholub it looks like you are running a globally distributed cluster, which is something we caution people about since there are still several really exciting improvements we are making to the product that would make that experience better. @a-robinson is very much leading the charge on those features. How has that been working for you so far? Would love to get your general thoughts to see what we could improve for you?

tomholub commented 7 years ago

TL;DR

Flexible write consistency per tx, less memory, more stability.

Thanks for this db, it has potential!

Full version

I thought roach may be a perfect fit for us, as we don't have lots of throughput and don't require a whole lot of optimization, just a low maintenance geo-distributed db to reduce latency for our users across the globe.

Roach does that for reads, but the writes are painfully slow in a geo-distributed db.

Here are some of my notes, kind of my x-mas wishlist for a perfect db:

They say that it's worth to solve a problem if potential users are already solving it in their own painful way. We ended up using MariaDB Galera cluster for now - painful indeed, but workable.

We can run these on $5 nodes instead of the $20 roach nodes. That means we can afford more nodes, and get closer to our users, globally.

Geo-distributed writes are slower, though comparable to roach. We resorted to developing primitive eventually-consistent writes in our app code like this:

Consistent writes:

Eventually consistent writes:

All reads:

It allows us to do fast local reads as well as writes, while still having option to do consistent strong writes when needed.

But really, we're replicating what I think the db should be able to do itself. If roach could do something like that, with a bit less memory, it would be a solid choice.

dianasaur323 commented 7 years ago

amazing, thanks for the detailed feedback @tomholub

Regarding making globally deployed clusters more performant, we have several ideas floating around that might interest you. 1) allowing non-voting replicas to service potentially stale reads, 2) setting a safe max timestamp in which a client can make a safe read of a non-voting replica, 3) geo-partitioning coming up in 1.2 in which you can pin rows / ranges to specific datacenters.

Supporting eventual consistency on writes is almost an existential question for us. We've erred towards trying to find ways to make writes consistent, but faster. If we allow eventual consistency, you would end up having many of the issues that other databases have. It's a catch-22! Have you considered trying to use zone configs at a greater granularity? For example, if you don't care as much about resiliency, you could theoretically have a Singapore table where all three replicas live in Singapore, and you would be able to serve faster reads and writes for Singapore data to Singapore users. Not really the best production setup, but a potentially interesting thought experiment. This should get better when we build out row-level partitioning, which will allow this configuration at the row level.

The cost efficiency metric you provided is super helpful - really useful to see that stark contrast. We should work on making that better...

tomholub commented 7 years ago

We also need Germans to read data about Singaporean users (from German server, but not necessarily in real time).

A weak write in Singapore needs to be immediately readable in Singapore. It's ok if it takes 10 seconds to be readable in Germany (for us).

In other words - we expect to see a lot of global dirty reads in between datacenters (writes may take a bit of delay to sync), but want to be able to configure immediate sync / no dirty reads within a locality. We'd also need to retain option to use the current write mechanism when we need a strong global write. Pack that onto a 1gb machine reliably and we are golden.

Approach 1 - integrated queue as an option Leave everything as is, and add a write-queue mechanism. I can either do a standard roach write (strong consistency, large latency) or I can do a delayed (queued) roach write. Delayed write will reflect immediately on the same node (from memory cache), but the actual write will be performed at a later time, as a standard roach write, just processed from a queue. You could only allow these when editing columns with no constraints, so that the txs cannot fail (not sure if feasible - postgres txs are complicated). Or maybe special key sequence like IGNORE ON CONFLICT in case I still want to queue-update columns that have constraints.

Approach 2 - locality has authority over rows it created - configurable option This would be a very radical approach. Not sure if possible within postgres mentality (sounds like nosql to me). If a certain row was created in Singapore locality, then Singapore nodes can write to it "selfishly" without regard to what nodes in other localities think. Other nodes can write to Singaporean-owned rows through standard roach write process. If the two conflict, Singapore always wins for that row. We don't really do multi-row updates, I'm not sure how to handle these with a system like that. I'd also like to be able to transfer ownership of rows if I find out that the user has moved. Damn, that would be a cool database.

a-robinson commented 6 years ago

Fixed as part of https://github.com/cockroachdb/cockroach/issues/17971

dianasaur323 commented 6 years ago

@tomholub I just read through this issue again since it came through my email with the most recent fix. Apologies for the lack of follow up. Thank you for the feedback and thoughts - you should definitely consider playing around with our next new feature (geo-partitioning) coming up in our new release. It won't let you do those eventual consistency writes, but it will allow you to have much better control over where your rows live.

tomholub commented 6 years ago

Thanks for the update