Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Faster bulk inserts #3

Merged
merged 1 commit into from
Jun 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 25 additions & 5 deletions collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package column
import (
"context"
"fmt"
"math/bits"
"reflect"
"sync"
"sync/atomic"
Expand All @@ -28,6 +29,7 @@ type Collection struct {
cols columns // The map of columns
fill bitmap.Bitmap // The fill-list
size int // The initial size for new columns
count int // The current count of elements
writer commit.Writer // The commit writer
cancel context.CancelFunc // The cancellation function for the context
}
Expand Down Expand Up @@ -79,13 +81,31 @@ func NewCollection(opts ...Options) *Collection {
// next finds the next free index in the collection, atomically.
func (c *Collection) next() uint32 {
c.lock.Lock()
idx := c.findFreeIndex()
c.fill.Set(idx)
c.count++
c.lock.Unlock()
return idx
}

// findFreeIndex finds a free index for insertion
func (c *Collection) findFreeIndex() uint32 {

// Check if we have space at the end, since if we're inserting a lot of data it's more
// likely that we're full in the beginning.
fillSize := len(c.fill)
if fillSize > 0 {
if tail := c.fill[fillSize-1]; tail != 0xffffffffffffffff {
return uint32((fillSize-1)<<6 + bits.TrailingZeros64(^tail))
}
}

// Otherwise, we scan the fill bitmap until we find the first zero. If we don't have it
// then we set the index at the size of the fill list.
idx, ok := c.fill.FirstZero()
if !ok {
idx = uint32(len(c.fill)) * 64
idx = uint32(len(c.fill)) << 6
}

c.fill.Set(idx)
c.lock.Unlock()
return idx
}

Expand Down Expand Up @@ -133,7 +153,7 @@ func (c *Collection) DeleteAt(idx uint32) (deleted bool) {
// Count returns the total number of elements in the collection.
func (c *Collection) Count() (count int) {
c.lock.RLock()
count = c.fill.Count()
count = c.count
c.lock.RUnlock()
return
}
Expand Down
2 changes: 2 additions & 0 deletions txn.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@ func (txn *Txn) deletePending() {
// Clear the items in the collection and reinitialize the purge list
txn.owner.lock.Lock()
txn.owner.fill.AndNot(txn.deletes)
txn.owner.count = txn.owner.fill.Count()

// If there's an associated writer, write into it
if txn.writer != nil {
Expand All @@ -466,6 +467,7 @@ func (txn *Txn) insertPending() {

txn.owner.lock.Lock()
txn.owner.fill.Or(txn.inserts)
txn.owner.count = txn.owner.fill.Count()

// If there's a writer, write before we unlock the column so that the transactions
// are seiralized in the writer as well, making everything consistent.
Expand Down