apbf

package module
v0.0.0-...-cf10ea2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 14, 2023 License: ISC Imports: 6 Imported by: 0

README

apbf

Build Status ISC License Doc

Age-Partitioned Bloom Filter (APBF)

An Age-Partitioned Bloom Filter is a probabilistic data structure suitable for processing unbounded data streams where more recent items are more significant than older ones and some false positives are acceptable. It has similar computational costs as traditional Bloom filters and provides space efficiency that is competitive with the current best-known, and more complex, Dictionary approaches.

Similar to classic Bloom filters, APBFs have a non-zero probability of false positives that can be tuned via parameters and are free from false negatives up to the capacity of the filter. However, unlike classic Bloom filters, where the false positive rate climbs as items are added until all queries are a false positive, APBFs provide a configurable upper bound on the false positive rate for an unbounded number of additions.

The unbounded property is achieved by adding and retiring disjoint segments over time where each segment is a slice of a partitioned Bloom filter. The slices are conceptually aged over time as new items are added by shifting them and discarding the oldest one.

An ideal use case for APBFs is efficiently deduplicating a continuous and unbounded event stream with a tunable upper bound on the false positive rate.

Additional Implementation Details

This implementation deviates from the original paper in at least the following important ways:

  • It uses Dillinger-Manolis enhanced double hashing instead of the more traditional Kirsch-Mitzenmacher double hashing since the latter imposes an observable accuracy limit on the filter while the former comes much closer to the theoretical limit of two-index fingerprinting
  • Every filter is given a unique key for the internal hashing logic so each one will have a unique set of false positives and that key is automatically changed when the filter is manually reset by the caller
  • Lemire fast reduction is used instead of standard modular reduction

Choosing Parameters

The API provides two different mechanisms for creating an APBF with the desired properties:

  • The NewFilter method

    This is the recommended approach for most applications. It is parameterized by the number of most-recently added items that must always return true and the target false positive rate to maintain.

    For most applications, the values chosen by this option will be perfectly acceptable, however, applications that desire greater control over the tuning can make use of the second method instead.

  • The NewFilterKL method

    This provides applications with greater control over the tradeoff between overall filter size and computational speed. It is parameterized by the number of most-recently added items that must always return true, the number slices which need consecutive matches, K, and the number of additional slices, L, to reach a desired target false positive rate to maintain.

    For convenience, the go generate command may be used in the code directory to generate a table of K and L combinations along with the false positive rate they maintain and average expected number of accesses for false queries to help select appropriate values.

Accuracy Under Workloads

The following details the results of experimental validation of this implementation with respect to false positive rate of filters with various capacities and target false positive rates.

The methodology used for this analysis is to subject each filter to 10*capacity distinct additions and to probe each filter with capacity*(1/false positive rate) distinct items that were never added. For example, in the case of a capacity of 1000 and target false positive rate of 0.001, ten thousand items are added and one million items that were never added are probed.

It is also worth noting that this analysis uses the NewFilter method, as described above, for the parameter selection.

Capacity Target FP Actual Observed FP
1000 0.1% 0.097%
10000 0.1% 0.099%
10000000 0.1% 0.1%
1000 1.0% 0.867%
10000 1.0% 0.862%
10000000 1.0% 0.857%
1000 2.0% 1.464%
10000 2.0% 1.451%
10000000 2.0% 1.461%
1000 10.0% 6.74%
10000 10.0% 6.96%
10000000 10.0% 7.024%

Memory Usage

The total space (in bytes) used by a filter that can hold n items with a false positive rate of fpRate is approximately 1.3n * -log(fpRate), where log is base 10.

Here is a table of measured usage for some common values for convenience:

Capacity Target FP Size
1000 1.0% 2.78 KiB
10000 1.0% 27.19 KiB
100000 1.0% 271.28 KiB
1000 0.1% 4.10 KiB
10000 0.1% 40.34 KiB
100000 0.1% 402.62 KiB

Benchmarks

The following results demonstrate the performance of the primary filter operations. The benchmarks are from a Ryzen 7 1700 processor.

Add
Capacity Target FP Time / Op Allocs / Op
1000 0.1% 59ns ± 1% 0
1000 0.01% 69ns ± 2% 0
1000 0.001% 78ns ± 2% 0
100000 0.01% 80ns ± 1% 0
100000 0.0001% 110ns ± 1% 0
1000000 0.00001% 205ns ± 2% 0
Contains (item matches filter, worst case)
Capacity Target FP Time / Op Allocs / Op
1000 0.1% 69ns ± 2% 0
1000 0.01% 80ns ± 1% 0
1000 0.001% 89ns ± 1% 0
100000 0.01% 80ns ± 1% 0
100000 0.0001% 98ns ± 1% 0
Contains (item does NOT match filter)
Capacity Target FP Time / Op Allocs / Op
1000 0.1% 42.0ns ±26% 0
1000 0.01% 37.7ns ±5% 0
1000 0.001% 37.0ns ±4% 0
100000 0.01% 37.6ns ±10% 0
100000 0.0001% 36.3ns ±6% 0

Installation and Updating

This package is part of the github.com/EXCCoin/exccd/container/apbf module. Use the standard go tooling for working with modules to incorporate it.

Examples

  • Basic Usage
    Demonstrates creating a new APBF, adding items to it up to the maximum capacity, querying the oldest item, then adding more items to it in order to cause the older items to be evicted.

License

Package apbf is licensed under the copyfree ISC License.

Documentation

Overview

Package apbf implements an optimized Age-Partitioned Bloom Filter.

Example (BasicUsage)

This example demonstrates creating a new APBF, adding items to it up to the maximum capacity, querying the oldest item, then adding more items to it in order to cause the older items to be evicted.

package main

import (
	"fmt"

	"github.com/EXCCoin/exccd/container/apbf"
)

func main() {
	// Create a new filter that will always return true for the most-recent 1000
	// items and maintains a false positive rate on items that were never added
	// of 0.01% (1 in 10,000).
	const maxItems = 1000
	const fpRate = 0.0001
	filter := apbf.NewFilter(maxItems, fpRate)

	// Add items to the filter.
	for i := 0; i < maxItems; i++ {
		item := fmt.Sprintf("item %d", i)
		filter.Add([]byte(item))
	}

	// At this point, the maximum number of items guaranteed to return true has
	// been reached, so the first entry will still be a member.
	if !filter.Contains([]byte("item 0")) {
		fmt.Println("filter does not contain expected item 0")
		return
	}

	// Adding more items will eventually evict the oldest items.
	for i := 0; i < maxItems; i++ {
		item := fmt.Sprintf("item %d", i+maxItems)
		filter.Add([]byte(item))
	}
	if filter.Contains([]byte("item 0")) {
		fmt.Println("filter contains unexpected item 0")
		return
	}

}
Output:

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func CalcFPRate

func CalcFPRate(k, l uint8) float64

CalcFPRate calculates and returns the false positive rate for an APBF created with the given parameters.

NOTE: This involves allocations, so the result should be cached by the caller if it intends to use it multiple times.

This function is safe for concurrent access.

Types

type Filter

type Filter struct {
	// contains filtered or unexported fields
}

Filter implements an Age-Partitioned Bloom Filter (APBF) that is safe for concurrent access.

An APBF is a probabilistic data structure suitable for use in processing unbounded data streams where more recent items are more significant than older ones and some false positives are acceptable. It has similar computational costs as traditional Bloom filters and provides space efficiency that is competitive with the current best-known, and more complex, Dictionary approaches.

Similar to classic Bloom filters, APBFs have a non-zero probability of false positives that can be tuned via parameters and are free from false negatives up to the capacity of the filter. However, unlike classic Bloom filters, where the false positive rate climbs as items are added until all queries are a false positive, APBFs provide a configurable upper bound on the false positive rate for an unbounded number of additions.

The unbounded property is achieved by adding and retiring disjoint segments over time where each segment is a slice of a partitioned Bloom filter. The slices are conceptually aged over time as new items are added by shifting them and discarding the oldest one.

See the NewFilter documentation for details regarding tuning parameters and expected approximate total space usage.

func NewFilter

func NewFilter(minCapacity uint32, fpRate float64) *Filter

NewFilter returns an Age-Partitioned Bloom Filter (APBF) suitable for use in processing unbounded data streams where more recent items are more significant than older ones and some false positives are acceptable. The parameters specify the number of most-recently added items that must always return true and the target false positive rate to maintain.

Every new filter uses a unique key for the internal hashing logic so that each one will have a unique set of false positives. The key is also automatically changed by Reset.

Note that, due to rounding, the actual max number of items that can be added to the filter before old entries are expired might actually be slightly higher than the specified target and can be obtained via the Capacity method on the returned filter.

Similarly, the actual false positive rate might be slightly better than the target rate and can be obtained via the FPRate method on the returned filter.

In other words, both parameters are treated as lower bounds so that the returned filter has at least the requested target values.

For most applications, the values will be perfectly acceptable, however, applications that desire greater control over the tuning can make use of NewFilterKL instead.

The total space (in bytes) used by a filter that can hold 'n' items with a false positive rate of 'fpRate' is approximately:

1.3n * -log(fpRate), where log is base 10

func NewFilterKL

func NewFilterKL(minCapacity uint32, k, l uint8) *Filter

NewFilterKL returns an Age-Partitioned Bloom Filter (APBF) suitable for use in processing unbounded data streams where more recent items are more significant than older ones and some false positives are acceptable. The parameters specify the number of most-recently added items that must always return true, the number slices which need consecutive matches, k, and the number of additional slices, l, to reach a desired target false positive rate to maintain.

Every new filter uses a unique key for the internal hashing logic so that each one will have a unique set of false positives. The key is also automatically changed by Reset.

Applications might prefer using NewFilter to specify the max capacity and a target false positive rate unless they specifically require the additional fine tuning provided here.

For convenience, the 'go generate' command may be used in the code directory to generate a table of k and l combinations along with the false positive rate they maintain and average expected number of accesses for false queries to help select appropriate parameters.

Note that, due to rounding, the actual max number of items that can be added to the filter before old entries are expired might actually be slightly higher than the specified target and can be obtained via the Capacity method on the returned filter.

The total space (in bytes) used by a filter that can hold 'n' items for the given 'k' and 'l' is approximately:

ceil(ceil(1.44k * ceil(n / l+1)) * (k+l) / 8)

func (*Filter) Add

func (f *Filter) Add(data []byte)

Add inserts the provided data into the filter.

This function is safe for concurrent access.

func (*Filter) Capacity

func (f *Filter) Capacity() uint32

Capacity returns the max number of items that were most recently added which are guaranteed to return true. Adding more items than the returned value will cause the oldest items to be expired.

This function is safe for concurrent access.

func (*Filter) Contains

func (f *Filter) Contains(data []byte) bool

Contains returns the result of a probabilistic membership test of the provided data such that there is a non-zero probability of false positives, per the false positive rate of the filter, and a zero probability of false negatives for the previous number of items supported by the max capacity of the filter.

In other words, the most recent max capacity number of items added to the filter will always return true while items that were never added or have been expired will only report true with the false positive rate of the filter.

This function is safe for concurrent access.

func (*Filter) FPRate

func (f *Filter) FPRate() float64

FPRate calculates and returns the actual false positive rate for the filter.

NOTE: This involves allocations, so the result should be cached by the caller if it intends to use it multiple times.

This function is safe for concurrent access.

func (*Filter) K

func (f *Filter) K() uint8

K returns the filter configuration parameter for the number of slices that need consecutive matches. It is one of the tunable parameters that determine the overall capacity and false positive rate of the filter.

This function is safe for concurrent access.

func (*Filter) L

func (f *Filter) L() uint8

L returns the filter configuration parameter for the number of additional slices. It is one of the tunable parameters that determine the overall capacity and false positive rate of the filter.

This function is safe for concurrent access.

func (*Filter) Reset

func (f *Filter) Reset()

Reset clears the filter and changes the key used in the internal hashing logic to ensure a unique set of false positives versus those prior to the reset.

This function is safe for concurrent access.

func (*Filter) Size

func (f *Filter) Size() int

Size returns the total bytes occupied by the filter data plus overhead.

This function is safe for concurrent access.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL