mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
- fixes molecula/molecula#136 - flag -n 0 does continuous queries until process is killed.
377 lines
8.8 KiB
Go
377 lines
8.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 main
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"math/rand"
|
|
nethttp "net/http"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/pilosa/pilosa/v2"
|
|
"github.com/pilosa/pilosa/v2/http"
|
|
)
|
|
|
|
// RandomQueryConfig
|
|
type RandomQueryConfig struct {
|
|
|
|
// user facing flags
|
|
HostPort string // -hostport
|
|
TreeDepth int // -d
|
|
QueryCount int // -n
|
|
Verbose bool // -v
|
|
|
|
IndexMap map[string]*Features
|
|
|
|
API *pilosa.API
|
|
Info []*pilosa.IndexInfo
|
|
|
|
BitmapFunc []string
|
|
|
|
Rnd *rand.Rand
|
|
}
|
|
|
|
type API interface {
|
|
|
|
// InternalClient
|
|
Schema(ctx context.Context) ([]*pilosa.IndexInfo, error)
|
|
Query(ctx context.Context, index string, queryRequest *pilosa.QueryRequest) (*pilosa.QueryResponse, error)
|
|
|
|
// API for contrast; just a little different:
|
|
//Schema(ctx context.Context) []*IndexInfo
|
|
//Query(ctx context.Context, req *pilosa.QueryRequest) (pilosa.QueryResponse, error)
|
|
}
|
|
|
|
// have to wrap because the ugly little differences between InternalClient and API
|
|
type wrapper struct {
|
|
api *pilosa.API
|
|
}
|
|
|
|
func (w *wrapper) Schema(ctx context.Context) ([]*pilosa.IndexInfo, error) {
|
|
return w.api.Schema(ctx), nil
|
|
}
|
|
|
|
func (w *wrapper) Query(ctx context.Context, index string, queryRequest *pilosa.QueryRequest) (*pilosa.QueryResponse, error) {
|
|
r, err := w.api.Query(ctx, queryRequest)
|
|
return &r, err
|
|
}
|
|
|
|
func wrapApiToInternalClient(api *pilosa.API) *wrapper {
|
|
return &wrapper{api: api}
|
|
}
|
|
|
|
// call DefineFlags before myflags.Parse()
|
|
func (cfg *RandomQueryConfig) DefineFlags(fs *flag.FlagSet) {
|
|
fs.StringVar(&cfg.HostPort, "hostport", "localhost:10101", "host:port of pilosa to run random queries on.")
|
|
fs.IntVar(&cfg.TreeDepth, "d", 4, "depth of random queries to generate.")
|
|
fs.IntVar(&cfg.QueryCount, "n", 100, "number of random queries to generate. Set to 0 for inifinite queries.")
|
|
fs.BoolVar(&cfg.Verbose, "v", false, "show queries as they are generated")
|
|
}
|
|
|
|
// call c.ValidateConfig() after myflags.Parse()
|
|
func (c *RandomQueryConfig) ValidateConfig() error {
|
|
if c.TreeDepth < 1 {
|
|
return fmt.Errorf("-d depth must be 1 or greater; saw %v", c.TreeDepth)
|
|
}
|
|
if c.QueryCount < 0 {
|
|
return fmt.Errorf("-n count must be 0 or greater; saw %v", c.QueryCount)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var ProgramName = "random-query"
|
|
|
|
func main() {
|
|
|
|
myflags := flag.NewFlagSet(ProgramName, flag.ExitOnError)
|
|
cfg := NewRandomQueryConfig()
|
|
cfg.DefineFlags(myflags)
|
|
|
|
err := myflags.Parse(os.Args[1:])
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "\n%v\n", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
err = cfg.ValidateConfig()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "%s error: %s\n", ProgramName, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
err = cfg.Run()
|
|
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "error: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func (cfg *RandomQueryConfig) Run() (err error) {
|
|
remoteClient := nethttp.DefaultClient
|
|
cli, err := http.NewInternalClient(cfg.HostPort, remoteClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ctx := context.Background()
|
|
totalQ := 0
|
|
loops := 0
|
|
t0 := time.Now()
|
|
|
|
NewSetup:
|
|
err = cfg.Setup(cli)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(cfg.IndexMap) == 0 {
|
|
return fmt.Errorf("no rows to query")
|
|
}
|
|
|
|
var indexes []string
|
|
for index := range cfg.IndexMap {
|
|
indexes = append(indexes, index)
|
|
}
|
|
|
|
for j := 0; ; j++ {
|
|
if cfg.QueryCount > 0 {
|
|
if j >= cfg.QueryCount {
|
|
break
|
|
}
|
|
} else {
|
|
// else keep doing queries forever...
|
|
if loops > 0 && loops%500 == 0 {
|
|
// ...but account for any new data arrived by getting
|
|
// the schema and rows again every so often.
|
|
loops++
|
|
goto NewSetup
|
|
}
|
|
}
|
|
if totalQ%100 == 0 {
|
|
dur := time.Since(t0)
|
|
if dur > 0 {
|
|
qps := 1e9 * float64(totalQ) / float64(dur)
|
|
AlwaysPrintf("totalQueries run: %v elapsed: %v qps: %0.02f", totalQ, dur, qps)
|
|
}
|
|
}
|
|
|
|
index := indexes[rand.Intn(len(indexes))]
|
|
|
|
pql, err := cfg.GenQuery(index)
|
|
panicOn(err)
|
|
|
|
if cfg.Verbose {
|
|
fmt.Printf("pql = '%v'\n", pql)
|
|
}
|
|
|
|
// Query node0.
|
|
res, err := cli.Query(ctx, index, &pilosa.QueryRequest{Index: index, Query: pql})
|
|
if err != nil {
|
|
AlwaysPrintf("QUERY FAILED! queries before this=%v; err = '%v', pql='%v'", loops, err, pql)
|
|
return err
|
|
}
|
|
if cfg.Verbose {
|
|
fmt.Printf("success on pql = '%v'; res='%v'\n", pql, res.Results[0])
|
|
}
|
|
totalQ++
|
|
loops++
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type Features struct {
|
|
Slc []IndexFieldRow
|
|
}
|
|
|
|
func NewRandomQueryConfig() *RandomQueryConfig {
|
|
return &RandomQueryConfig{
|
|
IndexMap: make(map[string]*Features),
|
|
}
|
|
}
|
|
|
|
type IndexFieldRow struct {
|
|
Index string
|
|
Field string
|
|
RowID uint64
|
|
RowKey string
|
|
IsRowKey bool
|
|
}
|
|
|
|
// Run a RandomQuery takes a list of RowIDFeatures and ColumnKeyObjects
|
|
// and spits back a PQL query
|
|
//
|
|
func (cfg *RandomQueryConfig) Setup(api API) (err error) {
|
|
|
|
ctx := context.Background()
|
|
cfg.Info, err = api.Schema(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for i, ii := range cfg.Info {
|
|
_ = i
|
|
for k, fld := range ii.Fields {
|
|
_ = k
|
|
if fld.Options.Type == "set" {
|
|
pql := fmt.Sprintf("Rows(%v)", fld.Name)
|
|
|
|
res, err := api.Query(ctx, ii.Name, &pilosa.QueryRequest{Index: ii.Name, Query: pql})
|
|
panicOn(err)
|
|
if cfg.Verbose {
|
|
fmt.Printf("success on pql = '%v'; res='%v'\n", pql, res.Results[0])
|
|
}
|
|
// if the option is set to use RowKeys, then must get the Keys instead of the Rows from the RowIdentifiers.
|
|
// e.g.
|
|
// success on pql = 'Rows(aba)'; res='&pilosa.RowIdentifiers{Rows:[]uint64(nil), Keys:[]string{"aba1", "aba2"}
|
|
// success on pql = 'Rows(f)'; res='pilosa.RowIdentifiers{Rows:[]uint64{0x1}, Keys:[]string(nil), field:"f"}'
|
|
|
|
switch x := res.Results[0].(type) {
|
|
case *pilosa.RowIdentifiers:
|
|
// internalClient gets this
|
|
cfg.AddResponse(ii.Name, fld.Name, x)
|
|
case pilosa.RowIdentifiers:
|
|
// test gets this
|
|
cfg.AddResponse(ii.Name, fld.Name, &x)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
cfg.BitmapFunc = []string{"Union", "Intersect", "Xor", "Not", "Difference"}
|
|
seed := int64(42)
|
|
cfg.Rnd = rand.New(rand.NewSource(seed))
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cfg *RandomQueryConfig) AddResponse(index, field string, x *pilosa.RowIdentifiers) {
|
|
for _, rowID := range x.Rows {
|
|
cfg.AddFeature(index, field, rowID, "", false)
|
|
}
|
|
for _, rowKey := range x.Keys {
|
|
cfg.AddFeature(index, field, 0, rowKey, true)
|
|
}
|
|
}
|
|
|
|
func (cfg *RandomQueryConfig) GenQuery(index string) (pql string, err error) {
|
|
|
|
tree := cfg.GenTree(index, cfg.TreeDepth)
|
|
|
|
if cfg.Verbose {
|
|
fmt.Printf("%v\n", tree.StringIndent(0))
|
|
}
|
|
pql = tree.ToPQL()
|
|
|
|
// avoid using too much bandwidth, just count the final bitmap.
|
|
pql = fmt.Sprintf("Count(%v)", pql)
|
|
return
|
|
}
|
|
|
|
type Tree struct {
|
|
Chd []*Tree
|
|
|
|
S string
|
|
}
|
|
|
|
func (tr *Tree) StringIndent(ind int) (s string) {
|
|
spc := strings.Repeat(" ", ind)
|
|
spc1 := strings.Repeat(" ", ind+1)
|
|
var chds []string
|
|
leaf := true
|
|
if len(tr.Chd) == 0 {
|
|
// leaf
|
|
} else {
|
|
leaf = false
|
|
for _, chd := range tr.Chd {
|
|
chds = append(chds, chd.StringIndent(ind+1))
|
|
}
|
|
}
|
|
if leaf {
|
|
s += fmt.Sprintf("%v %v\n", spc1, tr.S)
|
|
} else {
|
|
for i, c := range chds {
|
|
if i == 0 {
|
|
s += fmt.Sprintf("%v %v\n%v", spc, tr.S, c)
|
|
} else {
|
|
s += fmt.Sprintf("%v", c)
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (cfg *RandomQueryConfig) GenTree(index string, depth int) (tr *Tree) {
|
|
if depth == 0 {
|
|
slc := cfg.IndexMap[index].Slc
|
|
//vv("depth is 0, slc = '%#v'", slc)
|
|
r := cfg.Rnd.Intn(len(slc))
|
|
fea := slc[r]
|
|
if fea.IsRowKey {
|
|
return &Tree{S: fmt.Sprintf("Row(%v='%v')", fea.Field, fea.RowKey)}
|
|
}
|
|
return &Tree{S: fmt.Sprintf("Row(%v=%v)", fea.Field, fea.RowID)}
|
|
}
|
|
|
|
r := cfg.Rnd.Intn(len(cfg.BitmapFunc))
|
|
f := cfg.BitmapFunc[r]
|
|
tr = &Tree{S: f}
|
|
numChild := 2
|
|
switch f {
|
|
case "Union", "Intersect", "Xor":
|
|
numChild = cfg.Rnd.Intn(8) + 2
|
|
case "Not":
|
|
numChild = 1
|
|
case "Difference":
|
|
numChild = 2
|
|
}
|
|
for i := 0; i < numChild; i++ {
|
|
tr.Chd = append(tr.Chd, cfg.GenTree(index, depth-1))
|
|
}
|
|
return
|
|
}
|
|
|
|
func (tr *Tree) ToPQL() (s string) {
|
|
|
|
if len(tr.Chd) == 0 {
|
|
// leaf
|
|
return tr.S
|
|
}
|
|
|
|
var chds []string
|
|
for _, c := range tr.Chd {
|
|
chds = append(chds, c.ToPQL())
|
|
}
|
|
all := strings.Join(chds, ", ")
|
|
return fmt.Sprintf("%v(%v)", tr.S, all)
|
|
}
|
|
|
|
func (cfg *RandomQueryConfig) AddFeature(index, field string, rowID uint64, rowKey string, isRowKey bool) {
|
|
|
|
f, ok := cfg.IndexMap[index]
|
|
if !ok {
|
|
f = &Features{}
|
|
cfg.IndexMap[index] = f
|
|
}
|
|
f.Slc = append(f.Slc, IndexFieldRow{
|
|
Index: index,
|
|
Field: field,
|
|
RowID: rowID,
|
|
RowKey: rowKey,
|
|
IsRowKey: isRowKey,
|
|
})
|
|
}
|