Documentation ¶
Index ¶
- Constants
- func GetCounterKey(ser *serial.T) (key []byte)
- func GetIndexKeysForEvent(ev *event.T, ser *serial.T) (keyz [][]byte)
- func GetTagKeyElements(tagValue string, CA *createdat.T, ser *serial.T) (prf index.P, elems []keys.Element, err error)
- func GetTagKeyPrefix(tagValue string) (key []byte, err error)
- func PrepareQueries(f *filter.T) (qs []query, ext *filter.T, since uint64, err error)
- type AccessEvent
- type Backend
- func (b *Backend) AccessLoop(c context.T, txMx *sync.Mutex, accCh chan *AccessEvent)
- func (b *Backend) Close()
- func (b *Backend) CountEvents(c context.T, f *filter.T) (count int, err error)
- func (b *Backend) DeleteEvent(c context.T, ev *event.T) (err error)
- func (b *Backend) EventGCCount() (countItems count.Items, total int, err error)
- func (b *Backend) EventGCMark() (deleteItems del.Items, err error)
- func (b *Backend) EventGCRun() (err error)
- func (b *Backend) EventGCSweep(serials del.Items) (err error)
- func (b *Backend) GarbageCollector()
- func (b *Backend) IncrementAccesses(txMx *sync.Mutex, acc []*AccessEvent) (err error)
- func (b *Backend) IndexGCCount() (serials IndexMap, err error)
- func (b *Backend) IndexGCMark() (toDelete []uint64, err error)
- func (b *Backend) IndexGCRun() (err error)
- func (b *Backend) IndexGCSweep(toDelete []uint64) (err error)
- func (b *Backend) Init() (err error)
- func (b *Backend) QueryEvents(c context.T, f *filter.T) (ch event.C, err error)
- func (b *Backend) SaveEvent(c context.T, ev *event.T) (err error)
- func (b *Backend) Serial() (ser uint64, err error)
- func (b *Backend) SerialBytes() (ser []byte, err error)
- func (b *Backend) SerialKey() (idx []byte, ser *serial.T)
- func (b *Backend) SweepHasL2(serials del.Items) (err error)
- func (b *Backend) SweepL1Only(serials del.Items) (err error)
- func (b *Backend) Update(fn func(txn *badger.Txn) (err error)) (err error)
- func (b *Backend) View(fn func(txn *badger.Txn) (err error)) (err error)
- func (b *Backend) Wipe() (err error)
- type GCCountFunc
- type IndexCount
- type IndexMap
- type PruneFunc
- type Results
- type SortPruned
Constants ¶
const DefaultMaxLimit = 1024
const IndexGCSkip = 5
Variables ¶
This section is empty.
Functions ¶
func GetCounterKey ¶
GetCounterKey returns the proper counter key for a given event ID.
func GetIndexKeysForEvent ¶
GetIndexKeysForEvent generates all the index keys required to filter for events. evtSerial should be the output of Serial() which gets a unique, monotonic counter value for each new event.
func GetTagKeyElements ¶
func GetTagKeyPrefix ¶
GetTagKeyPrefix returns tag index prefixes based on the initial field of a tag.
There is 3 types of index tag keys:
- TagAddr: [ 8 ][ 2b Kind ][ 8b Pubkey ][ address/URL ][ 8b Serial ] - Tag32: [ 7 ][ 8b Pubkey ][ 8b Serial ] - Tag: [ 6 ][ address/URL ][ 8b Serial ]
This function produces the initial bytes without the index.
Types ¶
type AccessEvent ¶
func MakeAccessEvent ¶
func MakeAccessEvent(EvID eventid.T, Ser *serial.T) (ae *AccessEvent)
MakeAccessEvent generates an *AccessEvent from an event ID and serial.
func (AccessEvent) String ¶
func (a AccessEvent) String() (s string)
type Backend ¶
type Backend struct { Ctx context.T WG *sync.WaitGroup Path string // MaxLimit is the largest a single event JSON can be, in bytes. MaxLimit int // DBSizeLimit is the number of bytes we want to keep the data store from // exceeding. DBSizeLimit int // DBLowWater is the percentage of DBSizeLimit a GC run will reduce the used // storage down to. DBLowWater int // DBHighWater is the trigger point at which a GC run should start if // exceeded. DBHighWater int // GCFrequency is the frequency of checks of the current utilisation. GCFrequency time.Duration HasL2 bool // Encoder maintains a pool of events that are recently decoded to avoid memory // allocation and unnecessary work. Encoder *cache.Encoder // DB is the badger db interface *badger.DB // contains filtered or unexported fields }
func GetBackend ¶
func GetBackend( Ctx context.T, WG *sync.WaitGroup, path string, hasL2 bool, maxMessageSize int, params ...int, ) (b *Backend)
GetBackend returns a reasonably configured badger.Backend.
The variadic params correspond to DBSizeLimit, DBLowWater, DBHighWater and GCFrequency as an integer multiplier of number of seconds.
Note that the cancel function for the context needs to be managed by the caller.
func (*Backend) AccessLoop ¶
AccessLoop is meant to be run as a goroutine to gather access events in a query and when it finishes, bump all the access records
func (*Backend) CountEvents ¶
func (*Backend) EventGCCount ¶ added in v1.2.0
func (*Backend) EventGCMark ¶ added in v1.2.0
EventGCMark scans for counter entries and based on GC parameters returns a list of the serials of the events that need to be pruned.
func (*Backend) EventGCRun ¶ added in v1.2.0
func (*Backend) EventGCSweep ¶ added in v1.2.0
EventGCSweep implements the EventGCSweep function. If hasL2 is true, a separate prune function is called.
func (*Backend) GarbageCollector ¶
func (b *Backend) GarbageCollector()
GarbageCollector starts up a ticker that runs a check on space utilisation and when it exceeds the high-water mark, prunes back to the low-water mark.
This function should be invoked as a goroutine, and will terminate when the backend context is canceled.
func (*Backend) IncrementAccesses ¶
func (b *Backend) IncrementAccesses(txMx *sync.Mutex, acc []*AccessEvent) (err error)
IncrementAccesses takes a list of event IDs of events that were accessed in a query and updates their access counter records.
func (*Backend) IndexGCCount ¶ added in v1.2.0
func (*Backend) IndexGCMark ¶ added in v1.2.0
IndexGCMark scans all indexes, collects the data related to the set of pruned indexes, sorts them by access time and selects the set of index serials to remove
func (*Backend) IndexGCRun ¶ added in v1.2.0
func (*Backend) IndexGCSweep ¶ added in v1.2.0
func (*Backend) QueryEvents ¶
func (*Backend) SerialBytes ¶
SerialBytes returns a new serial value, used to store an event record with a conflict-free unique code (it is a monotonic, atomic, ascending counter).
func (*Backend) SerialKey ¶
SerialKey returns a key used for storing events, and the raw serial counter bytes to copy into index keys.
func (*Backend) SweepHasL2 ¶ added in v1.2.0
SweepHasL2 implements a prune where only events and access records are deleted. This way searches can find them and fetch them from an L2 event store.
func (*Backend) SweepL1Only ¶ added in v1.2.0
SweepL1Only implements a simple prune that deletes an event and all related indexes.
type IndexCount ¶ added in v1.2.0
type IndexCount struct {
// contains filtered or unexported fields
}
type IndexMap ¶ added in v1.2.0
type IndexMap map[uint64]*IndexCount
type SortPruned ¶ added in v1.2.0
type SortPruned []prunedItem
func (SortPruned) Len ¶ added in v1.2.0
func (s SortPruned) Len() int
func (SortPruned) Less ¶ added in v1.2.0
func (s SortPruned) Less(i, j int) bool
func (SortPruned) Swap ¶ added in v1.2.0
func (s SortPruned) Swap(i, j int)
func (SortPruned) Total ¶ added in v1.2.0
func (s SortPruned) Total() (total int)