FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
1–10 of 14 posts
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#2Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#3any ideas on real life Use Cases?
Hopefully make it easy to find all the bills that your specific congress person was involved in for example.
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#4any ideas on real life Use Cases?
But really it's useful anytime you need low latency analytics on fresh data.
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#5I havn't wrapped my head around how this helps speed up queries while data is being ingested.
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#6Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#7I've seen bitmaps mentioned a number of times lately. I must admit it is not something I am all that familiar with. Can someone explain to me why bitmaps are more valuable than standard column oriented databases? I havn't wrapped my head around how this helps speed up queries while data is being ingested.
Adtech is an example of a sector that benefits from this...they slice and dice datasets a lot to target ad campaigns and such. Being able to do that quickly is useful.
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#8I've seen bitmaps mentioned a number of times lately. I must admit it is not something I am all that familiar with. Can someone explain to me why bitmaps are more valuable than standard column oriented databases? I havn't wrapped my head around how this helps speed up queries while data is being ingested.
They are useful for categorical variables. For example, is a record in the "Likes motorcycles" category? They are fast because (well, one reason) bitwise logical operations are very fast for CPUs to do. Adtech is an example of a sector that benefits from this...they slice and dice datasets a lot to target ad campaigns and such. Being able to do that quickly is useful.
I guess it's easy for me to visualize both row and column based. Im struggling with the bitmaps concept.
Re: FeatureBase: Open-Source, Real-Time Database Built on Roaring Bitmaps
#9I've seen bitmaps mentioned a number of times lately. I must admit it is not something I am all that familiar with. Can someone explain to me why bitmaps are more valuable than standard column oriented databases? I havn't wrapped my head around how this helps speed up queries while data is being ingested.
They are useful for categorical variables. For example, is a record in the "Likes motorcycles" category? They are fast because (well, one reason) bitwise logical operations are very fast for CPUs to do. Adtech is an example of a sector that benefits from this...they slice and dice datasets a lot to target ad campaigns and such. Being able to do that quickly is useful.