mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

benchmark result: (1) master branch $ go test -bench='BenchmarkIndexPut$' -count=5 goos: darwin goarch: amd64 pkg: go.etcd.io/etcd/server/v3/storage/mvcc cpu: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz BenchmarkIndexPut-12 1000000 2591 ns/op BenchmarkIndexPut-12 1000000 2531 ns/op BenchmarkIndexPut-12 1000000 2536 ns/op BenchmarkIndexPut-12 1000000 2546 ns/op BenchmarkIndexPut-12 1000000 2538 ns/op PASS ok go.etcd.io/etcd/server/v3/storage/mvcc 167.439s $ go test -bench='BenchmarkIndexGet$' -count=5 goos: darwin goarch: amd64 pkg: go.etcd.io/etcd/server/v3/storage/mvcc cpu: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz BenchmarkIndexGet-12 1000000 2021 ns/op BenchmarkIndexGet-12 1000000 2029 ns/op BenchmarkIndexGet-12 1000000 2044 ns/op BenchmarkIndexGet-12 1000000 1973 ns/op BenchmarkIndexGet-12 1000000 2027 ns/op PASS ok go.etcd.io/etcd/server/v3/storage/mvcc 177.815s (2) google/btree in the generic way $ go test -bench='BenchmarkIndexPut$' -count=5 goos: darwin goarch: amd64 pkg: go.etcd.io/etcd/server/v3/storage/mvcc cpu: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz BenchmarkIndexPut-12 1000000 2477 ns/op BenchmarkIndexPut-12 1000000 2380 ns/op BenchmarkIndexPut-12 1000000 2360 ns/op BenchmarkIndexPut-12 1000000 2396 ns/op BenchmarkIndexPut-12 1000000 2382 ns/op PASS ok go.etcd.io/etcd/server/v3/storage/mvcc 165.841s $ go test -bench='BenchmarkIndexGet$' -count=5 goos: darwin goarch: amd64 pkg: go.etcd.io/etcd/server/v3/storage/mvcc cpu: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz BenchmarkIndexGet-12 1000000 1985 ns/op BenchmarkIndexGet-12 1000000 1914 ns/op BenchmarkIndexGet-12 1000000 1900 ns/op BenchmarkIndexGet-12 1000000 1905 ns/op BenchmarkIndexGet-12 1000000 1894 ns/op PASS ok go.etcd.io/etcd/server/v3/storage/mvcc 177.573s Signed-off-by: wathenjiang <wathenjiang@tencent.com>
70 lines
1.9 KiB
Go
70 lines
1.9 KiB
Go
// Copyright 2018 The etcd Authors
|
|
//
|
|
// 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 mvcc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func BenchmarkIndexCompact1(b *testing.B) { benchmarkIndexCompact(b, 1) }
|
|
func BenchmarkIndexCompact100(b *testing.B) { benchmarkIndexCompact(b, 100) }
|
|
func BenchmarkIndexCompact10000(b *testing.B) { benchmarkIndexCompact(b, 10000) }
|
|
func BenchmarkIndexCompact100000(b *testing.B) { benchmarkIndexCompact(b, 100000) }
|
|
func BenchmarkIndexCompact1000000(b *testing.B) { benchmarkIndexCompact(b, 1000000) }
|
|
|
|
func benchmarkIndexCompact(b *testing.B, size int) {
|
|
log := zap.NewNop()
|
|
kvindex := newTreeIndex(log)
|
|
|
|
bytesN := 64
|
|
keys := createBytesSlice(bytesN, size)
|
|
for i := 1; i < size; i++ {
|
|
kvindex.Put(keys[i], revision{main: int64(i), sub: int64(i)})
|
|
}
|
|
b.ResetTimer()
|
|
for i := 1; i < b.N; i++ {
|
|
kvindex.Compact(int64(i))
|
|
}
|
|
}
|
|
|
|
func BenchmarkIndexPut(b *testing.B) {
|
|
log := zap.NewNop()
|
|
kvindex := newTreeIndex(log)
|
|
|
|
bytesN := 64
|
|
keys := createBytesSlice(bytesN, b.N)
|
|
b.ResetTimer()
|
|
for i := 1; i < b.N; i++ {
|
|
kvindex.Put(keys[i], revision{main: int64(i), sub: int64(i)})
|
|
}
|
|
}
|
|
|
|
func BenchmarkIndexGet(b *testing.B) {
|
|
log := zap.NewNop()
|
|
kvindex := newTreeIndex(log)
|
|
|
|
bytesN := 64
|
|
keys := createBytesSlice(bytesN, b.N)
|
|
for i := 1; i < b.N; i++ {
|
|
kvindex.Put(keys[i], revision{main: int64(i), sub: int64(i)})
|
|
}
|
|
b.ResetTimer()
|
|
for i := 1; i < b.N; i++ {
|
|
kvindex.Get(keys[i], int64(i))
|
|
}
|
|
}
|