The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/services/sqlstore/bulk.go

60 lines
1.3 KiB

package sqlstore
import (
"fmt"
"reflect"
"github.com/grafana/grafana/pkg/services/sqlstore/migrator"
)
const DefaultBatchSize = 1000
type BulkOpSettings struct {
BatchSize int
}
func NativeSettingsForDialect(d migrator.Dialect) BulkOpSettings {
return BulkOpSettings{
BatchSize: d.BatchSize(),
}
}
func normalizeBulkSettings(s BulkOpSettings) BulkOpSettings {
if s.BatchSize < 1 {
sessionLogger.Debug("Invalid batch size, falling back to the default", "requested", s.BatchSize, "actual", DefaultBatchSize)
s.BatchSize = DefaultBatchSize
}
return s
}
func (sess *DBSession) BulkInsert(table any, recordsSlice any, opts BulkOpSettings) (int64, error) {
var inserted int64
err := InBatches(recordsSlice, opts, func(batch any) error {
a, err := sess.Table(table).InsertMulti(batch)
inserted += a
return err
})
return inserted, err
}
func InBatches(items any, opts BulkOpSettings, fn func(batch any) error) error {
opts = normalizeBulkSettings(opts)
slice := reflect.Indirect(reflect.ValueOf(items))
if slice.Kind() != reflect.Slice {
return fmt.Errorf("need a slice of objects in order to batch")
}
for i := 0; i < slice.Len(); i += opts.BatchSize {
end := i + opts.BatchSize
if end > slice.Len() {
end = slice.Len()
}
chunk := slice.Slice(i, end).Interface()
if err := fn(chunk); err != nil {
return err
}
}
return nil
}