mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 08:10:50 +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
95 lines
2.8 KiB
Go
95 lines
2.8 KiB
Go
// Copyright 2020 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 (
|
|
"encoding/binary"
|
|
"fmt"
|
|
"sync"
|
|
|
|
cryptorand "crypto/rand"
|
|
"github.com/zeebo/blake3"
|
|
)
|
|
|
|
// Blake3Hasher is a thread/goroutine safe way to
|
|
// obtain a blake3 cryptographic hash of input []byte.
|
|
// Reference https://github.com/BLAKE3-team/BLAKE3
|
|
// suggests it is 6x faster than BLAKE2B.
|
|
// The Go github.com/zeebo/blake3 version is
|
|
// AVX2 and SSE4.1 accelerated.
|
|
type Blake3Hasher struct {
|
|
hasher *blake3.Hasher
|
|
hasherMu sync.Mutex
|
|
}
|
|
|
|
// NewBlake3Hasher returns a new Blake3Hasher.
|
|
func NewBlake3Hasher() *Blake3Hasher {
|
|
return &Blake3Hasher{
|
|
hasher: blake3.New(),
|
|
}
|
|
}
|
|
|
|
// CryptoHash writes the blake3 cryptographic hash of
|
|
// input into buffer and returns it.
|
|
// Like the standard libary's hash.Hash interface's Sum() method,
|
|
// the buffer is re-used and overwritten
|
|
// to avoid allocation. The caller determines the byte length of
|
|
// the outputCryptohash by the size of the supplied buffer
|
|
// slice, and this will be exactly equal to the supplies bytes.
|
|
// In this way, shorter or longer hashes can be provided as
|
|
// needed.
|
|
func (w *Blake3Hasher) CryptoHash(input []byte, buffer []byte) (outputCryptohash []byte) {
|
|
w.hasherMu.Lock()
|
|
w.hasher.Reset()
|
|
|
|
// "Write implements part of the hash.Hash interface. It never returns an error."
|
|
// -- https://godoc.org/github.com/zeebo/blake3#Hasher.Write
|
|
_, _ = w.hasher.Write(input)
|
|
|
|
// Digest.Read reads data from the hasher into buffer.
|
|
// "It always fills the entire buffer and never errors."
|
|
// -- https://godoc.org/github.com/zeebo/blake3#Digest
|
|
_, _ = w.hasher.Digest().Read(buffer)
|
|
|
|
// no chance of panic, so avoid any defer cost.
|
|
w.hasherMu.Unlock()
|
|
|
|
return buffer
|
|
}
|
|
|
|
// blake3sum16 might be slower because we allocate a new hasher every time, but
|
|
// it is more conenient for writing debug code. It returns
|
|
// a 16 byte hash as a hexidecimal string.
|
|
func blake3sum16(input []byte) string {
|
|
hasher := blake3.New()
|
|
|
|
_, _ = hasher.Write(input)
|
|
var buf [16]byte
|
|
_, _ = hasher.Digest().Read(buf[0:])
|
|
|
|
return fmt.Sprintf("%x", buf)
|
|
}
|
|
|
|
// cryptoRandInt64 uses crypto/rand to get an random int64
|
|
func cryptoRandInt64() int64 {
|
|
c := 8
|
|
b := make([]byte, c)
|
|
_, err := cryptorand.Read(b)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
r := int64(binary.LittleEndian.Uint64(b))
|
|
return r
|
|
}
|