mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
466 lines
11 KiB
Go
466 lines
11 KiB
Go
// Copyright 2017 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 ctl
|
|
|
|
import (
|
|
"context"
|
|
"encoding/csv"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"sort"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/pilosa/pilosa"
|
|
"github.com/pilosa/pilosa/http"
|
|
"github.com/pilosa/pilosa/server"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// ImportCommand represents a command for bulk importing data.
|
|
type ImportCommand struct {
|
|
// Destination host and port.
|
|
Host string `json:"host"`
|
|
|
|
// Name of the index & field to import into.
|
|
Index string `json:"index"`
|
|
Field string `json:"field"`
|
|
|
|
// Options for index & field to be created if they don't exist
|
|
IndexOptions pilosa.IndexOptions
|
|
FieldOptions pilosa.FieldOptions
|
|
|
|
// CreateSchema ensures the schema exists before import
|
|
CreateSchema bool
|
|
|
|
// Indicates that the payload should be treated as string keys.
|
|
StringKeys bool `json:"StringKeys"`
|
|
|
|
// Filenames to import from.
|
|
Paths []string `json:"paths"`
|
|
|
|
// Size of buffer used to chunk import.
|
|
BufferSize int `json:"bufferSize"`
|
|
|
|
// Enables sorting of data file before import.
|
|
Sort bool `json:"sort"`
|
|
|
|
// Reusable client.
|
|
Client pilosa.InternalClient `json:"-"`
|
|
|
|
// Standard input/output
|
|
*pilosa.CmdIO
|
|
|
|
TLS server.TLSConfig
|
|
}
|
|
|
|
// NewImportCommand returns a new instance of ImportCommand.
|
|
func NewImportCommand(stdin io.Reader, stdout, stderr io.Writer) *ImportCommand {
|
|
return &ImportCommand{
|
|
CmdIO: pilosa.NewCmdIO(stdin, stdout, stderr),
|
|
BufferSize: 10000000,
|
|
}
|
|
}
|
|
|
|
// Run executes the main program execution.
|
|
func (cmd *ImportCommand) Run(ctx context.Context) error {
|
|
logger := log.New(cmd.Stderr, "", log.LstdFlags)
|
|
|
|
// Validate arguments.
|
|
// Index and field are validated early before the files are parsed.
|
|
if cmd.Index == "" {
|
|
return pilosa.ErrIndexRequired
|
|
} else if cmd.Field == "" {
|
|
return pilosa.ErrFieldRequired
|
|
} else if len(cmd.Paths) == 0 {
|
|
return errors.New("path required")
|
|
}
|
|
// Create a client to the server.
|
|
client, err := CommandClient(cmd)
|
|
if err != nil {
|
|
return errors.Wrap(err, "creating client")
|
|
}
|
|
cmd.Client = client
|
|
|
|
if cmd.CreateSchema {
|
|
err := cmd.ensureSchema(ctx)
|
|
if err != nil {
|
|
return errors.Wrap(err, "ensuring schema")
|
|
}
|
|
}
|
|
|
|
// Determine the field type in order to correctly handle the input data.
|
|
fieldType := pilosa.DefaultFieldType
|
|
schema, err := cmd.Client.Schema(ctx)
|
|
if err != nil {
|
|
return errors.Wrap(err, "getting schema")
|
|
}
|
|
for _, index := range schema {
|
|
if index.Name == cmd.Index {
|
|
for _, field := range index.Fields {
|
|
if field.Name == cmd.Field {
|
|
fieldType = field.Options.Type
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Import each path and import by slice.
|
|
for _, path := range cmd.Paths {
|
|
logger.Printf("parsing: %s", path)
|
|
if err := cmd.importPath(ctx, fieldType, path); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cmd *ImportCommand) ensureSchema(ctx context.Context) error {
|
|
err := cmd.Client.EnsureIndex(ctx, cmd.Index, cmd.IndexOptions)
|
|
if err != nil {
|
|
return fmt.Errorf("Error Creating Index: %s", err)
|
|
}
|
|
err = cmd.Client.EnsureField(ctx, cmd.Index, cmd.Field, cmd.FieldOptions)
|
|
if err != nil {
|
|
return fmt.Errorf("Error Creating Field: %s", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// importPath parses a path into bits and imports it to the server.
|
|
func (cmd *ImportCommand) importPath(ctx context.Context, fieldType, path string) error {
|
|
// If fieldType is `int`, treat the import data as values to be range-encoded.
|
|
if fieldType == pilosa.FieldTypeInt {
|
|
return cmd.bufferValues(ctx, path)
|
|
} else {
|
|
if cmd.StringKeys {
|
|
return cmd.bufferBitsK(ctx, path)
|
|
} else {
|
|
return cmd.bufferBits(ctx, path)
|
|
}
|
|
}
|
|
}
|
|
|
|
// bufferBits buffers slices of bits to be imported as a batch.
|
|
func (cmd *ImportCommand) bufferBits(ctx context.Context, path string) error {
|
|
a := make([]pilosa.Bit, 0, cmd.BufferSize)
|
|
|
|
var r *csv.Reader
|
|
|
|
if path != "-" {
|
|
// Open file for reading.
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return errors.Wrap(err, "opening file")
|
|
}
|
|
defer f.Close()
|
|
|
|
// Read rows as bits.
|
|
r = csv.NewReader(f)
|
|
} else {
|
|
r = csv.NewReader(cmd.Stdin)
|
|
}
|
|
|
|
r.FieldsPerRecord = -1
|
|
rnum := 0
|
|
for {
|
|
rnum++
|
|
|
|
// Read CSV row.
|
|
record, err := r.Read()
|
|
if err == io.EOF {
|
|
break
|
|
} else if err != nil {
|
|
return errors.Wrap(err, "reading")
|
|
}
|
|
|
|
// Ignore blank rows.
|
|
if record[0] == "" {
|
|
continue
|
|
} else if len(record) < 2 {
|
|
return fmt.Errorf("bad column count on row %d: col=%d", rnum, len(record))
|
|
}
|
|
|
|
var bit pilosa.Bit
|
|
|
|
// Parse row id.
|
|
rowID, err := strconv.ParseUint(record[0], 10, 64)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid row id on row %d: %q", rnum, record[0])
|
|
}
|
|
bit.RowID = rowID
|
|
|
|
// Parse column id.
|
|
columnID, err := strconv.ParseUint(record[1], 10, 64)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid column id on row %d: %q", rnum, record[1])
|
|
}
|
|
bit.ColumnID = columnID
|
|
|
|
// Parse time, if exists.
|
|
if len(record) > 2 && record[2] != "" {
|
|
t, err := time.Parse(pilosa.TimeFormat, record[2])
|
|
if err != nil {
|
|
return fmt.Errorf("invalid timestamp on row %d: %q", rnum, record[2])
|
|
}
|
|
bit.Timestamp = t.UnixNano()
|
|
}
|
|
|
|
a = append(a, bit)
|
|
|
|
// If we've reached the buffer size then import bits.
|
|
if len(a) == cmd.BufferSize {
|
|
if err := cmd.importBits(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
a = a[:0]
|
|
}
|
|
}
|
|
|
|
// If there are still bits in the buffer then flush them.
|
|
if err := cmd.importBits(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// importBits sends batches of bits to the server.
|
|
func (cmd *ImportCommand) importBits(ctx context.Context, bits []pilosa.Bit) error {
|
|
logger := log.New(cmd.Stderr, "", log.LstdFlags)
|
|
|
|
// Group bits by slice.
|
|
logger.Printf("grouping %d bits", len(bits))
|
|
bitsBySlice := http.Bits(bits).GroupBySlice()
|
|
|
|
// Parse path into bits.
|
|
for slice, chunk := range bitsBySlice {
|
|
if cmd.Sort {
|
|
sort.Sort(http.BitsByPos(chunk))
|
|
}
|
|
|
|
logger.Printf("importing slice: %d, n=%d", slice, len(chunk))
|
|
if err := cmd.Client.Import(ctx, cmd.Index, cmd.Field, slice, chunk); err != nil {
|
|
return errors.Wrap(err, "importing")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// bufferBitsK buffers slices of keys to be imported as a batch.
|
|
func (cmd *ImportCommand) bufferBitsK(ctx context.Context, path string) error {
|
|
a := make([]pilosa.Bit, 0, cmd.BufferSize)
|
|
|
|
var r *csv.Reader
|
|
|
|
if path != "-" {
|
|
// Open file for reading.
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return errors.Wrap(err, "opening file")
|
|
}
|
|
defer f.Close()
|
|
|
|
// Read rows as bits.
|
|
r = csv.NewReader(f)
|
|
} else {
|
|
r = csv.NewReader(cmd.Stdin)
|
|
}
|
|
|
|
r.FieldsPerRecord = -1
|
|
rnum := 0
|
|
for {
|
|
rnum++
|
|
|
|
// Read CSV row.
|
|
record, err := r.Read()
|
|
if err == io.EOF {
|
|
break
|
|
} else if err != nil {
|
|
return errors.Wrap(err, "reading")
|
|
}
|
|
|
|
// Ignore blank rows.
|
|
if record[0] == "" {
|
|
continue
|
|
} else if len(record) < 2 {
|
|
return fmt.Errorf("bad column count on row %d: col=%d", rnum, len(record))
|
|
}
|
|
|
|
var bit pilosa.Bit
|
|
|
|
// Parse row key.
|
|
if record[0] == "" {
|
|
return fmt.Errorf("invalid row key on row %d: %q", rnum, record[0])
|
|
}
|
|
bit.RowKey = record[0]
|
|
|
|
// Parse column key.
|
|
if record[1] == "" {
|
|
return fmt.Errorf("invalid column id on row %d: %q", rnum, record[1])
|
|
}
|
|
bit.ColumnKey = record[1]
|
|
|
|
// Parse time, if exists.
|
|
if len(record) > 2 && record[2] != "" {
|
|
t, err := time.Parse(pilosa.TimeFormat, record[2])
|
|
if err != nil {
|
|
return fmt.Errorf("invalid timestamp on row %d: %q", rnum, record[2])
|
|
}
|
|
bit.Timestamp = t.UnixNano()
|
|
}
|
|
|
|
a = append(a, bit)
|
|
|
|
// If we've reached the buffer size then import bits.
|
|
if len(a) == cmd.BufferSize {
|
|
if err := cmd.importBitsK(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
a = a[:0]
|
|
}
|
|
}
|
|
|
|
// If there are still bitKs in the buffer then flush them.
|
|
if err := cmd.importBitsK(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// importBitsK sends batches of bitKs to the server.
|
|
func (cmd *ImportCommand) importBitsK(ctx context.Context, bits []pilosa.Bit) error {
|
|
logger := log.New(cmd.Stderr, "", log.LstdFlags)
|
|
|
|
// TODO: does it help to sort the rowKeys?
|
|
|
|
logger.Printf("importing keys: n=%d", len(bits))
|
|
if err := cmd.Client.ImportK(ctx, cmd.Index, cmd.Field, bits); err != nil {
|
|
return errors.Wrap(err, "importing keys")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// bufferValues buffers slices of FieldValues to be imported as a batch.
|
|
func (cmd *ImportCommand) bufferValues(ctx context.Context, path string) error {
|
|
a := make([]pilosa.FieldValue, 0, cmd.BufferSize)
|
|
|
|
var r *csv.Reader
|
|
|
|
if path != "-" {
|
|
// Open file for reading.
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return errors.Wrap(err, "opening file")
|
|
}
|
|
defer f.Close()
|
|
|
|
// Read rows as bits.
|
|
r = csv.NewReader(f)
|
|
} else {
|
|
r = csv.NewReader(cmd.Stdin)
|
|
}
|
|
|
|
r.FieldsPerRecord = -1
|
|
rnum := 0
|
|
for {
|
|
rnum++
|
|
|
|
// Read CSV row.
|
|
record, err := r.Read()
|
|
if err == io.EOF {
|
|
break
|
|
} else if err != nil {
|
|
return errors.Wrap(err, "reading")
|
|
}
|
|
|
|
// Ignore blank rows.
|
|
if record[0] == "" {
|
|
continue
|
|
} else if len(record) < 2 {
|
|
return fmt.Errorf("bad column count on row %d: col=%d", rnum, len(record))
|
|
}
|
|
|
|
var val pilosa.FieldValue
|
|
|
|
// Parse column id.
|
|
columnID, err := strconv.ParseUint(record[0], 10, 64)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid column id on row %d: %q", rnum, record[0])
|
|
}
|
|
val.ColumnID = columnID
|
|
|
|
// Parse FieldValue.
|
|
value, err := strconv.ParseInt(record[1], 10, 64)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid value on row %d: %q", rnum, record[1])
|
|
}
|
|
val.Value = value
|
|
|
|
a = append(a, val)
|
|
|
|
// If we've reached the buffer size then import FieldValues.
|
|
if len(a) == cmd.BufferSize {
|
|
if err := cmd.importValues(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
a = a[:0]
|
|
}
|
|
}
|
|
|
|
// If there are still values in the buffer then flush them.
|
|
if err := cmd.importValues(ctx, a); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// importValues sends batches of FieldValues to the server.
|
|
func (cmd *ImportCommand) importValues(ctx context.Context, vals []pilosa.FieldValue) error {
|
|
logger := log.New(cmd.Stderr, "", log.LstdFlags)
|
|
|
|
// Group vals by slice.
|
|
logger.Printf("grouping %d vals", len(vals))
|
|
valsBySlice := http.FieldValues(vals).GroupBySlice()
|
|
|
|
// Parse path into FieldValues.
|
|
for slice, vals := range valsBySlice {
|
|
if cmd.Sort {
|
|
sort.Sort(http.FieldValues(vals))
|
|
}
|
|
|
|
logger.Printf("importing slice: %d, n=%d", slice, len(vals))
|
|
if err := cmd.Client.ImportValue(ctx, cmd.Index, cmd.Field, slice, vals); err != nil {
|
|
return errors.Wrap(err, "importing values")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cmd *ImportCommand) TLSHost() string {
|
|
return cmd.Host
|
|
}
|
|
|
|
func (cmd *ImportCommand) TLSConfiguration() server.TLSConfig {
|
|
return cmd.TLS
|
|
}
|