Bloom Filter
SELECT COUNT(*)
FROM baseballStats
WHERE playerID = 12345{
"tableIndexConfig": {
"bloomFilterColumns": [
"playerID",
...
],
...
},
...
}Last updated
Was this helpful?
SELECT COUNT(*)
FROM baseballStats
WHERE playerID = 12345{
"tableIndexConfig": {
"bloomFilterColumns": [
"playerID",
...
],
...
},
...
}Last updated
Was this helpful?
Was this helpful?
{
"tableIndexConfig": {
"bloomFilterConfigs": {
"playerID": {
"fpp": 0.01,
"maxSizeInBytes": 1000000,
"loadOnHeap": true
},
...
},
...
},
...
}