mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-15 16:51:03 +00:00
- all tests green on RoaringTx
- RoaringTx on by default
- blueGreenTx testing framework available for A-vs-B comparison
of Tx implementations
- flag -tx added to server command line but not wired to
change NewIndex() selection yet.
- 918 green tests, 14 tests red on BadgerTx.
A full list of the 14 red tests on BadgerTx follows.
Note that these red tests represent not defects in BadgerDB
or BadgerTx but rather failures of the pre-existing pilosa infrastructure to yet
be fully adapted from files to using a transactional storage engine.
As such these are tests that RBF should not be expected to
pass yet either.
Fixing the pilosa infrastructure to allow these tests
to go green under Badger is the next and highest priority
order of business, but RBF can get much testing benefit
from the 918 green tests we do have, and hence we merge
as much as we have today.
The 14 red tests when NewIndex() is set to use
BadgerTx are as follows. Note in particular
that pilosa cluster resizing is not working yet under a
transactional store.
TestCluster_ResizeStates/Multiple_nodes,_with_data
TestImportClearRestart/0MaxOpN10000
TestImportClearRestart/1MaxOpN10000
TestImportClearRestart/2MaxOpN10000
TestImportClearRestart/3MaxOpN10000
TestExecutor_Execute_Existence/Row
TestExecutor_ForeignIndex
TestExecutor_Execute_CountDistinct/Distinct
TestExecutor_Execute_CountDistinct/Count(Distinct)
TestExecutor_Execute_CountDistinct/GroupBy(Distinct)
TestExecutor_BareDistinct
TestExecutor_Execute_TopNDistinct/TopN
TestHolderSyncer_IntField/BasicSync
TestHolderSyncer_IntField/MultiShard
1030 lines
27 KiB
Go
1030 lines
27 KiB
Go
// Copyright 2017 Pilosa Corp.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package pilosa
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"math/rand"
|
|
"net"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"os"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
"testing/quick"
|
|
"time"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
"github.com/gorilla/mux"
|
|
"github.com/pilosa/pilosa/v2/logger"
|
|
"github.com/pilosa/pilosa/v2/roaring"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// Ensure that fragCombos creates the correct fragment mapping.
|
|
func TestFragCombos(t *testing.T) {
|
|
uri0, err := NewURIFromAddress("host0")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri1, err := NewURIFromAddress("host1")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
node0 := &Node{ID: "node0", URI: *uri0}
|
|
node1 := &Node{ID: "node1", URI: *uri1}
|
|
|
|
c := newCluster()
|
|
c.addNodeBasicSorted(node0)
|
|
c.addNodeBasicSorted(node1)
|
|
|
|
tests := []struct {
|
|
idx string
|
|
availableShards *roaring.Bitmap
|
|
fieldViews viewsByField
|
|
expected fragsByHost
|
|
}{
|
|
{
|
|
idx: "i",
|
|
availableShards: roaring.NewBitmap(0, 1, 2),
|
|
fieldViews: viewsByField{"f": []string{"v1", "v2"}},
|
|
expected: fragsByHost{
|
|
"node0": []frag{{"f", "v1", uint64(0)}, {"f", "v2", uint64(0)}},
|
|
"node1": []frag{{"f", "v1", uint64(1)}, {"f", "v2", uint64(1)}, {"f", "v1", uint64(2)}, {"f", "v2", uint64(2)}},
|
|
},
|
|
},
|
|
{
|
|
idx: "foo",
|
|
availableShards: roaring.NewBitmap(0, 1, 2, 3),
|
|
fieldViews: viewsByField{"f": []string{"v0"}},
|
|
expected: fragsByHost{
|
|
"node0": []frag{{"f", "v0", uint64(1)}, {"f", "v0", uint64(2)}},
|
|
"node1": []frag{{"f", "v0", uint64(0)}, {"f", "v0", uint64(3)}},
|
|
},
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
actual := c.fragCombos(test.idx, test.availableShards, test.fieldViews)
|
|
if !reflect.DeepEqual(actual, test.expected) {
|
|
t.Errorf("expected: %v, but got: %v", test.expected, actual)
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// newIndexWithTempPath returns a new instance of Index.
|
|
func newIndexWithTempPath(name string) *Index {
|
|
path, err := ioutil.TempDir(*TempDir, "pilosa-index-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
index, err := NewIndex(NewHolder(DefaultPartitionN), path, name)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return index
|
|
}
|
|
|
|
// Ensure that fragSources creates the correct fragment mapping.
|
|
func TestFragSources(t *testing.T) {
|
|
uri0, err := NewURIFromAddress("host0")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri1, err := NewURIFromAddress("host1")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri2, err := NewURIFromAddress("host2")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri3, err := NewURIFromAddress("host3")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
node0 := &Node{ID: "node0", URI: *uri0}
|
|
node1 := &Node{ID: "node1", URI: *uri1}
|
|
node2 := &Node{ID: "node2", URI: *uri2}
|
|
node3 := &Node{ID: "node3", URI: *uri3}
|
|
|
|
c1 := newCluster()
|
|
c1.ReplicaN = 1
|
|
c1.addNodeBasicSorted(node0)
|
|
c1.addNodeBasicSorted(node1)
|
|
|
|
c2 := newCluster()
|
|
c2.ReplicaN = 1
|
|
c2.addNodeBasicSorted(node0)
|
|
c2.addNodeBasicSorted(node1)
|
|
c2.addNodeBasicSorted(node2)
|
|
|
|
c3 := newCluster()
|
|
c3.ReplicaN = 2
|
|
c3.addNodeBasicSorted(node0)
|
|
c3.addNodeBasicSorted(node1)
|
|
|
|
c4 := newCluster()
|
|
c4.ReplicaN = 2
|
|
c4.addNodeBasicSorted(node0)
|
|
c4.addNodeBasicSorted(node1)
|
|
c4.addNodeBasicSorted(node2)
|
|
|
|
c5 := newCluster()
|
|
c5.ReplicaN = 2
|
|
c5.addNodeBasicSorted(node0)
|
|
c5.addNodeBasicSorted(node1)
|
|
c5.addNodeBasicSorted(node2)
|
|
c5.addNodeBasicSorted(node3)
|
|
|
|
idx := newIndexWithTempPath("i")
|
|
defer idx.Close()
|
|
|
|
// Obtain transaction.
|
|
tx := &RoaringTx{Index: idx}
|
|
defer tx.Rollback()
|
|
|
|
field, err := idx.CreateFieldIfNotExists("f", OptFieldTypeDefault())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_, err = field.SetBit(tx, 1, 101, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_, err = field.SetBit(tx, 1, ShardWidth+1, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_, err = field.SetBit(tx, 1, ShardWidth*2+1, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_, err = field.SetBit(tx, 1, ShardWidth*3+1, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
tests := []struct {
|
|
from *cluster
|
|
to *cluster
|
|
idx *Index
|
|
expected map[string][]*ResizeSource
|
|
err string
|
|
}{
|
|
{
|
|
from: c1,
|
|
to: c2,
|
|
idx: idx,
|
|
expected: map[string][]*ResizeSource{
|
|
"node0": {},
|
|
"node1": {},
|
|
"node2": {
|
|
{&Node{ID: "node0", URI: URI{"http", "host0", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(0)},
|
|
{&Node{ID: "node1", URI: URI{"http", "host1", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(2)},
|
|
},
|
|
},
|
|
err: "",
|
|
},
|
|
{
|
|
from: c4,
|
|
to: c3,
|
|
idx: idx,
|
|
expected: map[string][]*ResizeSource{
|
|
"node0": {
|
|
{&Node{ID: "node1", URI: URI{"http", "host1", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(1)},
|
|
},
|
|
"node1": {
|
|
{&Node{ID: "node0", URI: URI{"http", "host0", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(0)},
|
|
{&Node{ID: "node0", URI: URI{"http", "host0", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(2)},
|
|
},
|
|
},
|
|
err: "",
|
|
},
|
|
{
|
|
from: c5,
|
|
to: c4,
|
|
idx: idx,
|
|
expected: map[string][]*ResizeSource{
|
|
"node0": {
|
|
{&Node{ID: "node2", URI: URI{"http", "host2", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(0)},
|
|
{&Node{ID: "node2", URI: URI{"http", "host2", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(2)},
|
|
},
|
|
"node1": {
|
|
{&Node{ID: "node0", URI: URI{"http", "host0", 10101}, IsCoordinator: false}, "i", "f", "standard", uint64(3)},
|
|
},
|
|
"node2": {},
|
|
},
|
|
err: "",
|
|
},
|
|
{
|
|
from: c2,
|
|
to: c4,
|
|
idx: idx,
|
|
expected: nil,
|
|
err: "clusters are the same size",
|
|
},
|
|
{
|
|
from: c1,
|
|
to: c5,
|
|
idx: idx,
|
|
expected: nil,
|
|
err: "adding more than one node at a time is not supported",
|
|
},
|
|
{
|
|
from: c5,
|
|
to: c1,
|
|
idx: idx,
|
|
expected: nil,
|
|
err: "removing more than one node at a time is not supported",
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
|
|
actual, err := (test.from).fragSources(test.to, test.idx)
|
|
if test.err != "" {
|
|
if !strings.Contains(err.Error(), test.err) {
|
|
t.Fatalf("expected error: %s, got: %s", test.err, err.Error())
|
|
}
|
|
} else {
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !reflect.DeepEqual(actual, test.expected) {
|
|
t.Errorf("expected: %v, but got: %v", test.expected, actual)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ensure that fragSources creates the correct fragment mapping.
|
|
func TestResizeJob(t *testing.T) {
|
|
|
|
uri0, err := NewURIFromAddress("host0")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri1, err := NewURIFromAddress("host1")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
uri2, err := NewURIFromAddress("host2")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
node0 := &Node{ID: "node0", URI: *uri0}
|
|
node1 := &Node{ID: "node1", URI: *uri1}
|
|
node2 := &Node{ID: "node2", URI: *uri2}
|
|
|
|
tests := []struct {
|
|
existingNodes []*Node
|
|
node *Node
|
|
action string
|
|
expectedIDs map[string]bool
|
|
}{
|
|
{
|
|
existingNodes: []*Node{node0, node1},
|
|
node: node2,
|
|
action: resizeJobActionAdd,
|
|
expectedIDs: map[string]bool{node0.ID: false, node1.ID: false, node2.ID: false},
|
|
},
|
|
{
|
|
existingNodes: []*Node{node0, node1, node2},
|
|
node: node2,
|
|
action: resizeJobActionRemove,
|
|
expectedIDs: map[string]bool{node0.ID: false, node1.ID: false},
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
|
|
actual := newResizeJob(test.existingNodes, test.node, test.action)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !reflect.DeepEqual(actual.IDs, test.expectedIDs) {
|
|
t.Errorf("expected: %v, but got: %v", test.expectedIDs, actual.IDs)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ensure the cluster can fairly distribute partitions across the nodes.
|
|
func TestCluster_Owners(t *testing.T) {
|
|
c := cluster{
|
|
nodes: []*Node{
|
|
{URI: NewTestURIFromHostPort("serverA", 1000)},
|
|
{URI: NewTestURIFromHostPort("serverB", 1000)},
|
|
{URI: NewTestURIFromHostPort("serverC", 1000)},
|
|
},
|
|
Hasher: NewTestModHasher(),
|
|
ReplicaN: 2,
|
|
}
|
|
|
|
// Verify nodes are distributed.
|
|
if a := c.partitionNodes(0); !reflect.DeepEqual(a, []*Node{c.nodes[0], c.nodes[1]}) {
|
|
t.Fatalf("unexpected owners: %s", spew.Sdump(a))
|
|
}
|
|
|
|
// Verify nodes go around the ring.
|
|
if a := c.partitionNodes(2); !reflect.DeepEqual(a, []*Node{c.nodes[2], c.nodes[0]}) {
|
|
t.Fatalf("unexpected owners: %s", spew.Sdump(a))
|
|
}
|
|
}
|
|
|
|
// Ensure the partitioner can assign a fragment to a partition.
|
|
func TestCluster_Partition(t *testing.T) {
|
|
if err := quick.Check(func(index string, shard uint64, partitionN int) bool {
|
|
c := newCluster()
|
|
c.partitionN = partitionN
|
|
|
|
partitionID := c.shardPartition(index, shard)
|
|
if partitionID < 0 || partitionID >= partitionN {
|
|
t.Errorf("partition out of range: shard=%d, p=%d, n=%d", shard, partitionID, partitionN)
|
|
}
|
|
|
|
return true
|
|
}, &quick.Config{
|
|
Values: func(values []reflect.Value, rand *rand.Rand) {
|
|
values[0], _ = quick.Value(reflect.TypeOf(""), rand)
|
|
values[1] = reflect.ValueOf(uint64(rand.Uint32()))
|
|
values[2] = reflect.ValueOf(rand.Intn(1000) + 1)
|
|
},
|
|
}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Ensure the hasher can hash correctly.
|
|
func TestHasher(t *testing.T) {
|
|
for _, tt := range []struct {
|
|
key uint64
|
|
bucket []int
|
|
}{
|
|
// Generated from the reference C++ code
|
|
{0, []int{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
|
{1, []int{0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 17, 17}},
|
|
{0xdeadbeef, []int{0, 1, 2, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 16, 16, 16}},
|
|
{0x0ddc0ffeebadf00d, []int{0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 15, 15, 15, 15}},
|
|
} {
|
|
for i, v := range tt.bucket {
|
|
hasher := &jmphasher{}
|
|
if got := hasher.Hash(tt.key, i+1); got != v {
|
|
t.Errorf("hash(%v,%v)=%v, want %v", tt.key, i+1, got, v)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Ensure ContainsShards can find the actual shard list for node and index.
|
|
func TestCluster_ContainsShards(t *testing.T) {
|
|
c := NewTestCluster(5)
|
|
c.ReplicaN = 3
|
|
shards := c.containsShards("test", roaring.NewBitmap(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10), c.nodes[2])
|
|
|
|
if !reflect.DeepEqual(shards, []uint64{0, 2, 3, 5, 6, 9, 10}) {
|
|
t.Fatalf("unexpected shars for node's index: %v", shards)
|
|
}
|
|
}
|
|
|
|
func TestCluster_Nodes(t *testing.T) {
|
|
uri0 := NewTestURIFromHostPort("node0", 0)
|
|
uri1 := NewTestURIFromHostPort("node1", 0)
|
|
uri2 := NewTestURIFromHostPort("node2", 0)
|
|
uri3 := NewTestURIFromHostPort("node3", 0)
|
|
|
|
node0 := &Node{ID: "node0", URI: uri0}
|
|
node1 := &Node{ID: "node1", URI: uri1}
|
|
node2 := &Node{ID: "node2", URI: uri2}
|
|
node3 := &Node{ID: "node3", URI: uri3}
|
|
|
|
nodes := []*Node{node0, node1, node2}
|
|
|
|
t.Run("NodeIDs", func(t *testing.T) {
|
|
actual := Nodes(nodes).IDs()
|
|
expected := []string{node0.ID, node1.ID, node2.ID}
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Errorf("expected: %v, but got: %v", expected, actual)
|
|
}
|
|
})
|
|
|
|
t.Run("Filter", func(t *testing.T) {
|
|
actual := Nodes(Nodes(nodes).Filter(nodes[1])).URIs()
|
|
expected := []URI{uri0, uri2}
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Errorf("expected: %v, but got: %v", expected, actual)
|
|
}
|
|
})
|
|
|
|
t.Run("FilterURI", func(t *testing.T) {
|
|
actual := Nodes(Nodes(nodes).FilterURI(uri1)).URIs()
|
|
expected := []URI{uri0, uri2}
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Errorf("expected: %v, but got: %v", expected, actual)
|
|
}
|
|
})
|
|
|
|
t.Run("Contains", func(t *testing.T) {
|
|
actualTrue := Nodes(nodes).Contains(node1)
|
|
actualFalse := Nodes(nodes).Contains(node3)
|
|
if !reflect.DeepEqual(actualTrue, true) {
|
|
t.Errorf("expected: %v, but got: %v", true, actualTrue)
|
|
}
|
|
if !reflect.DeepEqual(actualFalse, false) {
|
|
t.Errorf("expected: %v, but got: %v", false, actualTrue)
|
|
}
|
|
})
|
|
|
|
t.Run("Clone", func(t *testing.T) {
|
|
clone := Nodes(nodes).Clone()
|
|
actual := Nodes(clone).URIs()
|
|
expected := []URI{uri0, uri1, uri2}
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Errorf("expected: %v, but got: %v", expected, actual)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestCluster_PreviousNode(t *testing.T) {
|
|
node0 := &Node{ID: "node0"}
|
|
node1 := &Node{ID: "node1"}
|
|
node2 := &Node{ID: "node2"}
|
|
|
|
t.Run("OneNode", func(t *testing.T) {
|
|
c := newCluster()
|
|
c.addNodeBasicSorted(node0)
|
|
|
|
c.Node = node0
|
|
if prev := c.unprotectedPreviousNode(); prev != nil {
|
|
t.Errorf("expected: nil, but got: %v", prev)
|
|
}
|
|
})
|
|
|
|
t.Run("TwoNode", func(t *testing.T) {
|
|
c := newCluster()
|
|
c.addNodeBasicSorted(node0)
|
|
c.addNodeBasicSorted(node1)
|
|
|
|
c.Node = node0
|
|
if prev := c.unprotectedPreviousNode(); prev != node1 {
|
|
t.Errorf("expected: node1, but got: %v", prev)
|
|
}
|
|
|
|
c.Node = node1
|
|
if prev := c.unprotectedPreviousNode(); prev != node0 {
|
|
t.Errorf("expected: node0, but got: %v", prev)
|
|
}
|
|
})
|
|
|
|
t.Run("ThreeNode", func(t *testing.T) {
|
|
c := newCluster()
|
|
c.addNodeBasicSorted(node0)
|
|
c.addNodeBasicSorted(node1)
|
|
c.addNodeBasicSorted(node2)
|
|
|
|
c.Node = node0
|
|
if prev := c.unprotectedPreviousNode(); prev != node2 {
|
|
t.Errorf("expected: node2, but got: %v", prev)
|
|
}
|
|
|
|
c.Node = node1
|
|
if prev := c.unprotectedPreviousNode(); prev != node0 {
|
|
t.Errorf("expected: node0, but got: %v", prev)
|
|
}
|
|
|
|
c.Node = node2
|
|
if prev := c.unprotectedPreviousNode(); prev != node1 {
|
|
t.Errorf("expected: node1, but got: %v", prev)
|
|
}
|
|
})
|
|
}
|
|
|
|
// NEXT: move this test to internal and unexport IsCoordinator
|
|
func TestCluster_Coordinator(t *testing.T) {
|
|
uri1 := NewTestURIFromHostPort("node1", 0)
|
|
uri2 := NewTestURIFromHostPort("node2", 0)
|
|
|
|
node1 := &Node{ID: "node1", URI: uri1}
|
|
node2 := &Node{ID: "node2", URI: uri2}
|
|
|
|
c1 := *newCluster()
|
|
c1.Node = node1
|
|
c1.Coordinator = node1.ID
|
|
c2 := *newCluster()
|
|
c2.Node = node2
|
|
c2.Coordinator = node1.ID
|
|
|
|
t.Run("IsCoordinator", func(t *testing.T) {
|
|
if !c1.isCoordinator() {
|
|
t.Errorf("!IsCoordinator error: %v", c1.Node)
|
|
} else if c2.isCoordinator() {
|
|
t.Errorf("IsCoordinator error: %v", c2.Node)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestCluster_Topology(t *testing.T) {
|
|
c1 := NewTestCluster(1) // automatically creates Node{ID: "node0"}
|
|
|
|
uri0 := NewTestURIFromHostPort("host0", 0)
|
|
uri1 := NewTestURIFromHostPort("host1", 0)
|
|
uri2 := NewTestURIFromHostPort("host2", 0)
|
|
invalid := NewTestURIFromHostPort("invalid", 0)
|
|
|
|
node0 := &Node{ID: "node0", URI: uri0}
|
|
node1 := &Node{ID: "node1", URI: uri1}
|
|
node2 := &Node{ID: "node2", URI: uri2}
|
|
nodeinvalid := &Node{ID: "nodeinvalid", URI: invalid}
|
|
|
|
t.Run("AddNode", func(t *testing.T) {
|
|
err := c1.addNode(node1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// add the same host.
|
|
err = c1.addNode(node1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
err = c1.addNode(node2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
actual := c1.nodeIDs()
|
|
expected := []string{node0.ID, node1.ID, node2.ID}
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Errorf("expected: %v, but got: %v", expected, actual)
|
|
}
|
|
})
|
|
|
|
t.Run("ContainsID", func(t *testing.T) {
|
|
if !c1.Topology.ContainsID(node1.ID) {
|
|
t.Errorf("!ContainsHost error: %v", node1.ID)
|
|
} else if c1.Topology.ContainsID(nodeinvalid.ID) {
|
|
t.Errorf("ContainsHost error: %v", nodeinvalid.ID)
|
|
}
|
|
})
|
|
}
|
|
|
|
// Ensure that general cluster functionality works as expected.
|
|
func TestCluster_ResizeStates(t *testing.T) {
|
|
|
|
t.Run("Single node, no data", func(t *testing.T) {
|
|
tc := NewClusterCluster(1)
|
|
|
|
// Open TestCluster.
|
|
if err := tc.Open(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
node := tc.Clusters[0]
|
|
|
|
// Ensure that node comes up in state NORMAL.
|
|
if node.State() != ClusterStateNormal {
|
|
t.Errorf("expected state: %v, but got: %v", ClusterStateNormal, node.State())
|
|
}
|
|
|
|
expectedTop := &Topology{
|
|
nodeIDs: []string{node.Node.ID},
|
|
}
|
|
|
|
// Verify topology file.
|
|
if !reflect.DeepEqual(node.Topology.nodeIDs, expectedTop.nodeIDs) {
|
|
t.Errorf("expected topology: %v, but got: %v", expectedTop.nodeIDs, node.Topology.nodeIDs)
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
t.Run("Single node, in topology", func(t *testing.T) {
|
|
tc := NewClusterCluster(0)
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
|
|
node := tc.Clusters[0]
|
|
|
|
// write topology to data file
|
|
top := &Topology{
|
|
nodeIDs: []string{node.Node.ID},
|
|
}
|
|
if err := tc.WriteTopology(node.Path, top); err != nil {
|
|
t.Fatalf("writing topology: %v", err)
|
|
}
|
|
|
|
// Open TestCluster.
|
|
if err := tc.Open(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Ensure that node comes up in state NORMAL.
|
|
if node.State() != ClusterStateNormal {
|
|
t.Errorf("expected state: %v, but got: %v", ClusterStateNormal, node.State())
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
t.Run("Single node, not in topology", func(t *testing.T) {
|
|
tc := NewClusterCluster(0)
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
|
|
node := tc.Clusters[0]
|
|
|
|
// write topology to data file
|
|
top := &Topology{
|
|
nodeIDs: []string{"some-other-host"},
|
|
}
|
|
if err := tc.WriteTopology(node.Path, top); err != nil {
|
|
t.Fatalf("writing topology: %v", err)
|
|
}
|
|
|
|
// Open TestCluster.
|
|
expected := "coordinator node0 is not in topology: [some-other-host]"
|
|
err := tc.Open()
|
|
if err == nil || errors.Cause(err).Error() != expected {
|
|
t.Errorf("did not receive expected error, got: %s", errors.Cause(err).Error())
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
t.Run("Multiple nodes, no data", func(t *testing.T) {
|
|
tc := NewClusterCluster(0)
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
|
|
// Open TestCluster.
|
|
if err := tc.Open(); err != nil {
|
|
t.Fatalf("opening cluster: %v", err)
|
|
}
|
|
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
|
|
node0 := tc.Clusters[0]
|
|
node1 := tc.Clusters[1]
|
|
|
|
// Ensure that nodes comes up in state NORMAL.
|
|
if node0.State() != ClusterStateNormal {
|
|
t.Errorf("expected node0 state: %v, but got: %v", ClusterStateNormal, node0.State())
|
|
} else if node1.State() != ClusterStateNormal {
|
|
t.Errorf("expected node1 state: %v, but got: %v", ClusterStateNormal, node1.State())
|
|
}
|
|
|
|
expectedTop := &Topology{
|
|
nodeIDs: []string{node0.Node.ID, node1.Node.ID},
|
|
}
|
|
|
|
// Verify topology file.
|
|
if !reflect.DeepEqual(node0.Topology.nodeIDs, expectedTop.nodeIDs) {
|
|
t.Errorf("expected node0 topology: %v, but got: %v", expectedTop.nodeIDs, node0.Topology.nodeIDs)
|
|
} else if !reflect.DeepEqual(node1.Topology.nodeIDs, expectedTop.nodeIDs) {
|
|
t.Errorf("expected node1 topology: %v, but got: %v", expectedTop.nodeIDs, node1.Topology.nodeIDs)
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
t.Run("Multiple nodes, in/not in topology", func(t *testing.T) {
|
|
tc := NewClusterCluster(0)
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
node0 := tc.Clusters[0]
|
|
|
|
// write topology to data file
|
|
top := &Topology{
|
|
nodeIDs: []string{"node0", "node2"},
|
|
}
|
|
if err := tc.WriteTopology(node0.Path, top); err != nil {
|
|
t.Fatalf("writing topology: %v", err)
|
|
}
|
|
|
|
// Open TestCluster.
|
|
if err := tc.Open(); err != nil {
|
|
t.Fatalf("opening cluster: %v", err)
|
|
}
|
|
|
|
// Ensure that node is in state STARTING before the other node joins.
|
|
if node0.State() != ClusterStateStarting {
|
|
t.Errorf("expected node0 state: %v, but got: %v", ClusterStateStarting, node0.State())
|
|
}
|
|
|
|
// Expect an error by adding a node not in the topology.
|
|
expectedError := "host is not in topology: node1"
|
|
if err := tc.addNode(); err == nil || err.Error() != expectedError {
|
|
t.Errorf("did not receive expected error: %s", expectedError)
|
|
}
|
|
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
node2 := tc.Clusters[2]
|
|
|
|
// Ensure that node comes up in state NORMAL.
|
|
if node0.State() != ClusterStateNormal {
|
|
t.Errorf("expected node0 state: %v, but got: %v", ClusterStateNormal, node0.State())
|
|
} else if node2.State() != ClusterStateNormal {
|
|
t.Errorf("expected node2 state: %v, but got: %v", ClusterStateNormal, node2.State())
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
|
|
t.Run("Multiple nodes, with data", func(t *testing.T) {
|
|
tc := NewClusterCluster(0)
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
node0 := tc.Clusters[0]
|
|
|
|
// Open TestCluster.
|
|
if err := tc.Open(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Add Bit Data to node0.
|
|
if err := tc.CreateField("i", "f", OptFieldTypeDefault()); err != nil {
|
|
t.Fatalf("creating field: %v", err)
|
|
}
|
|
// Each tc.SetBit starts and commits its own Tx.
|
|
if err := tc.SetBit("i", "f", 1, 101, nil); err != nil {
|
|
t.Fatalf("setting bit: %v", err)
|
|
}
|
|
if err := tc.SetBit("i", "f", 1, ShardWidth+1, nil); err != nil {
|
|
t.Fatalf("setting bit: %v", err)
|
|
}
|
|
|
|
// Before starting the resize, get the CheckSum to use for
|
|
// comparison later.
|
|
node0Field := node0.holder.Field("i", "f")
|
|
node0View := node0Field.view("standard")
|
|
node0Fragment := node0View.Fragment(1)
|
|
node0Checksum, err := node0Fragment.Checksum()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
idx0 := node0.holder.Index("i")
|
|
if idx0 == nil {
|
|
t.Fatal(`idx0 was nil, could not retrieve Index("i")`)
|
|
}
|
|
//idx0.Dump("node0")
|
|
|
|
// addNode needs to block until the resize process has completed.
|
|
if err := tc.addNode(); err != nil {
|
|
t.Fatalf("adding node: %v", err)
|
|
}
|
|
node1 := tc.Clusters[1]
|
|
|
|
// Ensure that nodes come up in state NORMAL.
|
|
if node0.State() != ClusterStateNormal {
|
|
t.Errorf("expected node0 state: %v, but got: %v", ClusterStateNormal, node0.State())
|
|
} else if node1.State() != ClusterStateNormal {
|
|
t.Errorf("expected node1 state: %v, but got: %v", ClusterStateNormal, node1.State())
|
|
}
|
|
// INVAR: after node1.State() is normal, the rebalancing should have been done.
|
|
|
|
expectedTop := &Topology{
|
|
nodeIDs: []string{node0.Node.ID, node1.Node.ID},
|
|
}
|
|
|
|
// Verify topology file.
|
|
if !reflect.DeepEqual(node0.Topology.nodeIDs, expectedTop.nodeIDs) {
|
|
t.Errorf("expected node0 topology: %v, but got: %v", expectedTop.nodeIDs, node0.Topology.nodeIDs)
|
|
} else if !reflect.DeepEqual(node1.Topology.nodeIDs, expectedTop.nodeIDs) {
|
|
t.Errorf("expected node1 topology: %v, but got: %v", expectedTop.nodeIDs, node1.Topology.nodeIDs)
|
|
}
|
|
|
|
// Bits
|
|
// Verify that node-1 contains the fragment (i/f/standard/1) transferred from node-0.
|
|
node1Field := node1.holder.Field("i", "f")
|
|
node1View := node1Field.view("standard")
|
|
node1Fragment := node1View.Fragment(1)
|
|
|
|
idx1 := node1.holder.Index("i")
|
|
if idx1 == nil {
|
|
t.Fatal(`idx1 was nil, could not retrieve Index("i")`)
|
|
}
|
|
//idx0.Dump("after rebalance, node0")
|
|
//idx1.Dump("after rebalance, node1")
|
|
|
|
// Ensure checksums are the same.
|
|
if chksum, err := node1Fragment.Checksum(); err != nil {
|
|
t.Fatal(err)
|
|
} else if !bytes.Equal(chksum, node0Checksum) {
|
|
t.Fatalf("expected standard view checksum to match: %x - %x", chksum, node0Checksum)
|
|
// badger red: TestCluster_ResizeStates/Multiple_nodes,_with_data: cluster_internal_test.go:841: expected standard view checksum to match: ef46db3751d8e999 - fad4de25ee696ca0
|
|
}
|
|
|
|
// Close TestCluster.
|
|
if err := tc.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestAE(t *testing.T) {
|
|
t.Run("AbortDoesn'tBlockUninitialized", func(t *testing.T) {
|
|
c := newCluster()
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
c.abortAntiEntropy()
|
|
close(ch)
|
|
}()
|
|
select {
|
|
case <-ch:
|
|
return
|
|
case <-time.After(time.Second):
|
|
t.Fatalf("aborting anti entropy on a new cluster blocked")
|
|
}
|
|
})
|
|
|
|
t.Run("AbortBlocksInitialized", func(t *testing.T) {
|
|
c := newCluster()
|
|
c.initializeAntiEntropy()
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
c.abortAntiEntropy()
|
|
close(ch)
|
|
}()
|
|
select {
|
|
case <-ch:
|
|
t.Fatalf("aborting anti entropy on an initialized cluster didn't block")
|
|
case <-time.After(time.Microsecond * 100):
|
|
}
|
|
})
|
|
|
|
t.Run("AbortAntiEntropyQ", func(t *testing.T) {
|
|
c := newCluster()
|
|
c.initializeAntiEntropy()
|
|
if c.abortAntiEntropyQ() {
|
|
t.Fatalf("abortAntiEntropyQ should report false when abort not called")
|
|
}
|
|
go func() {
|
|
for {
|
|
if c.abortAntiEntropyQ() {
|
|
break
|
|
}
|
|
}
|
|
}()
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
c.abortAntiEntropy()
|
|
close(ch)
|
|
}()
|
|
select {
|
|
case <-ch:
|
|
case <-time.After(time.Second):
|
|
t.Fatalf("abort should not have blocked this long")
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
// Ensures that coordinator can be changed.
|
|
func TestCluster_UpdateCoordinator(t *testing.T) {
|
|
t.Run("UpdateCoordinator", func(t *testing.T) {
|
|
c := NewTestCluster(2)
|
|
|
|
oldNode := c.nodes[0]
|
|
newNode := c.nodes[1]
|
|
|
|
// Update coordinator to the same value.
|
|
if c.updateCoordinator(oldNode) {
|
|
t.Errorf("did not expect coordinator to change")
|
|
} else if c.Coordinator != oldNode.ID {
|
|
t.Errorf("expected coordinator: %s, but got: %s", c.Coordinator, oldNode.URI)
|
|
}
|
|
|
|
// Update coordinator to a new value.
|
|
if !c.updateCoordinator(newNode) {
|
|
t.Errorf("expected coordinator to change")
|
|
} else if c.Coordinator != newNode.ID {
|
|
t.Errorf("expected coordinator: %s, but got: %s", c.Coordinator, newNode.URI)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestCluster_confirmNodeDownUp(t *testing.T) {
|
|
r := mux.NewRouter()
|
|
r.HandleFunc("/version", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
fmt.Fprintln(w, "ignored")
|
|
}))
|
|
server := httptest.NewServer(r)
|
|
// Close the server when test finishes
|
|
defer server.Close()
|
|
u, err := url.Parse(server.URL)
|
|
if err != nil {
|
|
t.Error("bad test setup")
|
|
}
|
|
uri := URI{}
|
|
host, port, _ := net.SplitHostPort(u.Host)
|
|
uri.Scheme = u.Scheme
|
|
uri.Host = host
|
|
iport, err := strconv.ParseUint(port, 0, 16)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
uri.Port = uint16(iport)
|
|
c := newCluster()
|
|
c.logger = logger.NewVerboseLogger(os.Stdout)
|
|
if c.confirmNodeDown(uri) {
|
|
t.Errorf("expected node to be up")
|
|
}
|
|
|
|
}
|
|
func TestCluster_confirmNodeDownTimeout(t *testing.T) {
|
|
sleep := 50 * time.Millisecond
|
|
retries := 5
|
|
if testing.Short() {
|
|
t.Skip()
|
|
}
|
|
r := mux.NewRouter()
|
|
r.HandleFunc("/version", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
time.Sleep(sleep * time.Duration(retries))
|
|
fmt.Fprintln(w, "ignored")
|
|
}))
|
|
server := httptest.NewServer(r)
|
|
// Close the server when test finishes
|
|
defer server.Close()
|
|
u, err := url.Parse(server.URL)
|
|
if err != nil {
|
|
t.Error("bad test setup")
|
|
}
|
|
uri := URI{}
|
|
host, port, _ := net.SplitHostPort(u.Host)
|
|
uri.Scheme = u.Scheme
|
|
uri.Host = host
|
|
iport, err := strconv.ParseUint(port, 0, 16)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
uri.Port = uint16(iport)
|
|
c := newCluster()
|
|
c.confirmDownSleep = sleep
|
|
c.confirmDownRetries = retries
|
|
c.logger = logger.NewVerboseLogger(os.Stdout)
|
|
if !c.confirmNodeDown(uri) {
|
|
t.Errorf("expected node to be down")
|
|
}
|
|
}
|
|
|
|
func TestCluster_confirmNodeDownDown(t *testing.T) {
|
|
if testing.Short() {
|
|
t.Skip()
|
|
}
|
|
uri := URI{}
|
|
uri.Scheme = "http"
|
|
uri.Host = "DoesntMatter"
|
|
uri.Port = 6666
|
|
c := newCluster()
|
|
c.confirmDownSleep = 50 * time.Millisecond
|
|
c.confirmDownRetries = 5
|
|
c.logger = logger.NewVerboseLogger(os.Stdout)
|
|
|
|
if !c.confirmNodeDown(uri) {
|
|
t.Errorf("expected node to be down")
|
|
}
|
|
}
|