Live data from Hacker News

Bunny Database

bunny.net

31–40 of 142 posts

Re: Bunny Database

#31
post #24
post #23

Earlier quoted context omitted.

When I tried it last year, their edge compute infra was just not there yet. It could not do any meaningful server-side rendering because of code size, compute and JS standard constraints. Has this situation changed?

Not sure what you mean with ssr for a CDN?

Edge computing. Cloudflare workers for example.

Bunny has a similarity concept: https://bunny.net/edge-scripting/

Re: Bunny Database

#32
> Not every project needs Postgres, and that’s okay. Sometimes you just want a simple, reliable database that you can spin up quickly and build on, without worrying it’ll hit your wallet like an EC2.

Isn't the operational burden of SQLite the main selling point over Postgres (not one I subscribe to, but that's neither here nor there)? If it's managed, why do I care if it's SQLite or Postgres? If anything, I would expect Postgres to be the friendlier option, since you won't have to worry about eventually discovering that you actually need some feature even if you don't need it at the start of your project. Maybe there are projects that implement SQLite on top of Postgres so you can gradually migrate away from SQLite if you need Postgres features eventually?

Re: Bunny Database

#34
Maybe I'm not the target market for this, but how hard is it REALLY to manage a RDBMS?

Any Linux distro can have MySQL or Postgres installed in less than five minutes and works out of the box

Even a single core VPS can handle lots of queries per second (assuming the tables are indexed properly and the queries aren't trash)

There are mature open source backup solutions which don't require DB downtime (also available in most package managers)

It's trivial to tune a DB using .conf files (there are even scripts that autotune for you!!!)

Your VPS provider will allow you to configure encryption at rest, firewall rules, and whole disk snapshots as well

And neither MySQL or Postgres ever seem to go down, they're super reliable and stable

Plus you have very stable costs each month

Re: Bunny Database

#37

Maybe I'm not the target market for this, but how hard is it REALLY to manage a RDBMS? Any Linux distro can have MySQL or Postgres installed in less than five minutes and works out of the box Even a single core VPS can handle lots of queries per second (assuming the tables are indexed properly and the queries aren't trash) There are mature open source backup solutions which don't require DB downtime (also available i…

Look into the capabilities of what I consider the leading edge of open source RDBMS managed solutions, Yugabyte: https://www.yugabyte.com

And tell me how easily you can achieve this "out of the box"

If you don't care about business continuity or high availability then everything gets easier

> And neither MySQL or Postgres ever seem to go down, they're super reliable and stable

The box they're on goes down

Re: Bunny Database

#38

Pricing Details: While in public preview, Bunny Database is free. When idle, Bunny Database only incurs storage costs. One primary region is charged continuously, while read replicas only add storage costs when serving traffic (metered by the hour). Reads - $0.30 per billion rows Writes - $0.30 per million rows Storage - $0.10 per GB per active region (monthly)

The best thing about their pricing is that you can prepay. So if you have a runaway cost, it can stop before you run up a 5 or 6 figure bill, unlike Azure/AWS/GCP/CF.

Re: Bunny Database

#39

Maybe I'm not the target market for this, but how hard is it REALLY to manage a RDBMS? Any Linux distro can have MySQL or Postgres installed in less than five minutes and works out of the box Even a single core VPS can handle lots of queries per second (assuming the tables are indexed properly and the queries aren't trash) There are mature open source backup solutions which don't require DB downtime (also available i…

Look into the capabilities of what I consider the leading edge of open source RDBMS managed solutions, Yugabyte: https://www.yugabyte.com And tell me how easily you can achieve this "out of the box" If you don't care about business continuity or high availability then everything gets easier > And neither MySQL or Postgres ever seem to go down, they're super reliable and stable The box they're on goes down

> The box they're on goes down

So? Not everyone needs 99.999999% availability.

Re: Bunny Database

#40

Maybe I'm not the target market for this, but how hard is it REALLY to manage a RDBMS? Any Linux distro can have MySQL or Postgres installed in less than five minutes and works out of the box Even a single core VPS can handle lots of queries per second (assuming the tables are indexed properly and the queries aren't trash) There are mature open source backup solutions which don't require DB downtime (also available i…

It's not about it being hard, it's about delegating. Many companies are a bit less sensitive to pricing and would rather pay monthly for someone else to keep their database up, rather than spending engineering hours on setting up a database, tuning it, updating it, checking its backups, monitoring it and making it scale if needed.

Sure, any regular SME can just install Postgres or MySQL without even setting much up except with `mysql_secure_install`, a user with a password and an 'app' database. But you may end up with 10-20 database installs you need to back up, patch and so on every once in a while. And companies value that.

Post reply on HN