Building the world’s fastest website analytics (2021)
1–10 of 40 posts
Re: Building the world’s fastest website analytics (2021)
#2Re: Building the world’s fastest website analytics (2021)
#3At some point, isn't it better to build your own database? And choose the trade offs that fit your project. Or pay/hire someone to do it.
Though, I’d be sorely tempted to spin up a bfc of clickhouse on bare metal.
Re: Building the world’s fastest website analytics (2021)
#4At some point, isn't it better to build your own database? And choose the trade offs that fit your project. Or pay/hire someone to do it.
Building a reliable DBMS with any kind of decent performance can easily take years. And by then, it's still not sure that you're doing any better than any of the existing solutions.
Re: Building the world’s fastest website analytics (2021)
#5At some point, isn't it better to build your own database? And choose the trade offs that fit your project. Or pay/hire someone to do it.
Re: Building the world’s fastest website analytics (2021)
#6At some point, isn't it better to build your own database? And choose the trade offs that fit your project. Or pay/hire someone to do it.
And that point is when you can’t find someone to host it for you. Though, I’d be sorely tempted to spin up a bfc of clickhouse on bare metal.
Re: Building the world’s fastest website analytics (2021)
#7Earlier quoted context omitted.
And that point is when you can’t find someone to host it for you. Though, I’d be sorely tempted to spin up a bfc of clickhouse on bare metal.
That one was tried, among many others covered in the article.
Re: Building the world’s fastest website analytics (2021)
#8At some point, isn't it better to build your own database? And choose the trade offs that fit your project. Or pay/hire someone to do it.
Re: Building the world’s fastest website analytics (2021)
#9I just started working at FeatureBase a few weeks ago, here in Austin. It's Open Source and we have a 5 minute guide to get it running here: https://docs.featurebase.com/. We also have a cloud/serverless option.
FeatureBase is a B-tree database which uses Roaring Bitmaps. This makes it suitable for doing analytical queries on massive data sets immediately after ingestion. You do have to model the data properly, however.