Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Fixed import in idk ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
Fletcher Haynes committed Nov 17, 2022
1 parent 8e03df7 commit 2709973
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions idk/ingest.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ import (
"syscall"
"time"

"github.com/felixge/fgprof"
pilosacore "github.com/featurebasedb/featurebase/v3"
pilosagrpc "github.com/featurebasedb/featurebase/v3/api/client"
pilosabatch "github.com/featurebasedb/featurebase/v3/batch"
pilosaclient "github.com/featurebasedb/featurebase/v3/client"
"github.com/featurebasedb/featurebase/v3/logger"
"github.com/featurebasedb/featurebase/v3/pql"
"github.com/featurebasedb/featurebase/v3/prometheus"
proto "github.com/featurebasedb/featurebase/v3/proto"
"github.com/featurebasedb/featurebase/v3/stats"
"github.com/felixge/fgprof"
"github.com/pkg/errors"
prom "github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
Expand Down Expand Up @@ -68,7 +69,7 @@ type Main struct {
AutoGenerate bool `short:"a" help:"Automatically generate IDs."`
ExternalGenerate bool `short:"" help:"Use FeatureBase's ID generation (must be set alongside auto-generate)."`
IDAllocKeyPrefix string `short:"" help:"A prefix for ID allocator keys when using FeatureBase's ID generation (must be different for each concurrent ingester)."`
Concurrency int `short:"c" help:"Number of concurrent sources and indexing routines to launch. Concurrency is not supported for molecula-consumer-csv and molecula-consumer-sql"`
Concurrency int `short:"c" help:"Number of concurrent sources and indexing routines to launch. Concurrency is not supported for featurebasedb-consumer-sql. Concurrency for featurebasedb-consumer-csv only works when providing multiple files and does not support '--auto-generate'"`
CacheLength uint64 `short:"" help:"Number of batches of ID mappings to cache."`
PackBools string `short:"k" help:"If non-empty, boolean fields will be packed into two set fields—one with this name, and one with <name>-exists."`
Verbose bool `short:"v" help:"Enable verbose logging."`
Expand Down

0 comments on commit 2709973

Please sign in to comment.