0
0
bleve/index/upside_down/benchmark_null_test.go
Marty Schoch 97902e2619 text analysis now moved out of index write lock onto goroutine
1. text analysis is now done before the write lock is acquired
2. there is now a pool of analysis workers
3. the size of this pool is configurable
4. this allows for documents in a batch to be analyzed concurrently

as a part of benchmarking these changes i've also introduce a new
null storage implementation.  this should never be used, as it
does not actualy build an index.  it does however let us go
through all the normal indexing machinery, without incuring
any indexing I/O.  this is very helpful in measuring improvements
made to the text analsysis pipeline, which are often overshadowed
by indexing times in benchmarks actually building an index.
2014-09-24 08:13:14 -04:00

109 lines
2.2 KiB
Go

// Copyright (c) 2014 Couchbase, Inc.
// 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 upside_down
import (
"testing"
"github.com/blevesearch/bleve/index/store/null"
)
func BenchmarkNullIndexing1Workers(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndex(b, s, 1)
}
func BenchmarkNullIndexing2Workers(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndex(b, s, 2)
}
func BenchmarkNullIndexing4Workers(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndex(b, s, 4)
}
// batches
func BenchmarkNullIndexing1Workers10Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 1, 10)
}
func BenchmarkNullIndexing2Workers10Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 2, 10)
}
func BenchmarkNullIndexing4Workers10Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 4, 10)
}
func BenchmarkNullIndexing1Workers100Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 1, 100)
}
func BenchmarkNullIndexing2Workers100Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 2, 100)
}
func BenchmarkNullIndexing4Workers100Batch(b *testing.B) {
s, err := null.Open()
if err != nil {
b.Fatal(err)
}
defer s.Close()
CommonBenchmarkIndexBatch(b, s, 4, 100)
}