Skip to content

Commit

Permalink
Implement a new raft store using RocksDB
Browse files Browse the repository at this point in the history
  • Loading branch information
aalda committed Mar 19, 2019
1 parent 8cae646 commit f8719f3
Show file tree
Hide file tree
Showing 15 changed files with 1,632 additions and 74 deletions.
104 changes: 104 additions & 0 deletions raftwal/raftrocks/bench_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
Copyright 2018-2019 Banco Bilbao Vizcaya Argentaria, S.A.
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 raftrocks

import (
"os"
"testing"

"github.com/hashicorp/raft/bench"
)

func BenchmarkRocksDBStore_FirstIndex(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.FirstIndex(b, store)
}

func BenchmarkRocksDBStore_LastIndex(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.LastIndex(b, store)
}

func BenchmarkRocksDBStore_GetLog(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.GetLog(b, store)
}

func BenchmarkRocksDBStore_StoreLog(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.StoreLog(b, store)
}

func BenchmarkRocksDBStore_StoreLogs(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.StoreLogs(b, store)
}

func BenchmarkRocksDBStore_DeleteRange(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.DeleteRange(b, store)
}

func BenchmarkRocksDBStore_Set(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.Set(b, store)
}

func BenchmarkRocksDBStore_Get(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.Get(b, store)
}

func BenchmarkRocksDBStore_SetUint64(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.SetUint64(b, store)
}

func BenchmarkRocksDBStore_GetUint64(b *testing.B) {
store, path := testRocksDBStore(b)
defer store.Close()
defer os.Remove(path)

raftbench.GetUint64(b, store)
}
Loading

0 comments on commit f8719f3

Please sign in to comment.