mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
106 lines
4.5 KiB
Go
106 lines
4.5 KiB
Go
package pilosa
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/dax"
|
|
"github.com/featurebasedb/featurebase/v3/roaring"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
type Importer interface {
|
|
StartTransaction(ctx context.Context, id string, timeout time.Duration, exclusive bool, requestTimeout time.Duration) (*Transaction, error)
|
|
FinishTransaction(ctx context.Context, id string) (*Transaction, error)
|
|
CreateTableKeys(ctx context.Context, tid dax.TableID, keys ...string) (map[string]uint64, error)
|
|
CreateFieldKeys(ctx context.Context, tid dax.TableID, fname dax.FieldName, keys ...string) (map[string]uint64, error)
|
|
ImportRoaringBitmap(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, views map[string]*roaring.Bitmap, clear bool) error
|
|
ImportRoaringShard(ctx context.Context, tid dax.TableID, shard uint64, request *ImportRoaringShardRequest) error
|
|
EncodeImportValues(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, vals []int64, ids []uint64, clear bool) (path string, data []byte, err error)
|
|
EncodeImport(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, vals, ids []uint64, clear bool) (path string, data []byte, err error)
|
|
DoImport(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, path string, data []byte) error
|
|
|
|
StatsTiming(name string, value time.Duration, rate float64)
|
|
}
|
|
|
|
// Ensure type implements interface.
|
|
var _ Importer = &onPremImporter{}
|
|
|
|
// onPremImporter is a wrapper around API which implements the Importer
|
|
// interface. This is currently only used by sql3 running locally in standard
|
|
// (i.e not "serverless") mode. Because sql3 always sets
|
|
// `useShardTransactionalEndpoint = true`, There are several methods which this
|
|
// implemtation of the Importer interface does not use, and therefore they
|
|
// intentionally no-op.
|
|
type onPremImporter struct {
|
|
api *API
|
|
client *InternalClient
|
|
}
|
|
|
|
func NewOnPremImporter(api *API) *onPremImporter {
|
|
return &onPremImporter{
|
|
api: api,
|
|
client: api.holder.executor.client,
|
|
}
|
|
}
|
|
|
|
func (i *onPremImporter) StartTransaction(ctx context.Context, id string, timeout time.Duration, exclusive bool, requestTimeout time.Duration) (*Transaction, error) {
|
|
return i.api.StartTransaction(ctx, id, timeout, exclusive, false)
|
|
}
|
|
|
|
func (i *onPremImporter) FinishTransaction(ctx context.Context, id string) (*Transaction, error) {
|
|
return i.api.FinishTransaction(ctx, id, false)
|
|
}
|
|
|
|
func (i *onPremImporter) CreateTableKeys(ctx context.Context, tid dax.TableID, keys ...string) (map[string]uint64, error) {
|
|
return i.api.CreateIndexKeys(ctx, string(tid), keys...)
|
|
}
|
|
|
|
func (i *onPremImporter) CreateFieldKeys(ctx context.Context, tid dax.TableID, fname dax.FieldName, keys ...string) (map[string]uint64, error) {
|
|
return i.api.CreateFieldKeys(ctx, string(tid), string(fname), keys...)
|
|
}
|
|
|
|
func (i *onPremImporter) ImportRoaringBitmap(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, views map[string]*roaring.Bitmap, clear bool) error {
|
|
// This intentionally no-ops. See comment on struct.
|
|
return nil
|
|
}
|
|
|
|
func (i *onPremImporter) ImportRoaringShard(ctx context.Context, tid dax.TableID, shard uint64, request *ImportRoaringShardRequest) error {
|
|
nodes, err := i.api.ShardNodes(ctx, string(tid), shard)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
eg := errgroup.Group{}
|
|
for _, node := range nodes {
|
|
node := node
|
|
if node.ID == i.api.NodeID() { // local
|
|
eg.Go(func() error {
|
|
return i.api.ImportRoaringShard(ctx, string(tid), shard, request)
|
|
})
|
|
} else {
|
|
eg.Go(func() error { // forward on
|
|
return i.client.ImportRoaringShard(ctx, &node.URI, string(tid), shard, true, request)
|
|
})
|
|
}
|
|
}
|
|
err = eg.Wait()
|
|
return errors.Wrap(err, "importing")
|
|
}
|
|
|
|
func (i *onPremImporter) EncodeImportValues(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, vals []int64, ids []uint64, clear bool) (path string, data []byte, err error) {
|
|
// This intentionally no-ops. See comment on struct.
|
|
return "", nil, nil
|
|
}
|
|
|
|
func (i *onPremImporter) EncodeImport(ctx context.Context, tid dax.TableID, fld *dax.Field, shard uint64, vals, ids []uint64, clear bool) (path string, data []byte, err error) {
|
|
// This intentionally no-ops. See comment on struct.
|
|
return "", nil, nil
|
|
}
|
|
|
|
func (i *onPremImporter) DoImport(ctx context.Context, _ dax.TableID, fld *dax.Field, shard uint64, path string, data []byte) error {
|
|
// This intentionally no-ops. See comment on struct.
|
|
return nil
|
|
}
|
|
|
|
func (i *onPremImporter) StatsTiming(name string, value time.Duration, rate float64) {}
|