elie
The options we’re looking at for Postgres hosting are Compose.io and AWS RDS. Anyone have experience with either and how they compare?
Any other options to look at?
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Latest Phoenix Threads
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
From
compose.io:Is this for real? 20gb worth of DB would cost you $245.50, and gets you 2gb of ram. AWS at that price is $51.84 /mo for an instance with equivalent ram, and (20*0.1) = 2 dollars a month for the 20gb for a grand total of $53.84.
Compose.io’s slider doesn’t even go above 100gb.
I can’t speak for compose.io, but RDS has been easy to use for us. Daily backups, multi availability zone etc.
elie
Cool. Thanks. I wish AWS pricing was as easy as that to understand though!
Looks like we’ll go with RDS. I thought Compose may have been cheaper
How is the RDS dashboard for monitoring?
OvermindDL1
I’ve always just hosted my own Postgres, a simple VM if not heavy is still cheaper than any of the above, and for a *BIG* server bare metal will be even more *substantially* cheaper. Just be sure to take backups, even AWS and such are not 'backups.
benwilson512
can you elaborate on this?
brightball
RDS is great. Amazons Aurora is better. Start with RDS and as soon as you are big enough to justify Aurora, switch.
I switched a 100gb MySQL RDS instance to Aurora last year and it’s been amazing. Zero issues, faster performance, costs cut in half, no need for multiaz for failover sake because the data is already redundant, cache is stored separately and the restart time in the event of a crash is supposed to be < 1 minute. Also automatically grows up to 64TB with no intervention.
Cut costs, improved speed and removed my DBA time. When I heard they were adding Aurora for PG I thought that people were messing with me.
alexgaribay
I use Compose. I chose it because I wanted something simple to use and takes care of all the devops-related stuff that comes along with managing a database. The price is alright for smaller datasets but you’re better off looking at alternatives if you need more data.
elie
What sort of price is aurora?
And what additional features does compose give you to help out with the db?
andre1sk
To be honest all hosted offerings are a bit of a joke, RDS 30,000 IOPS for some ungodly amount of money that’s 1/2 of the performance of single low end SSD drive and 1/20 the performance of a decent PCI-E SSD.
OvermindDL1
This.
I ran a very well used postgresql database on my own hardware for pittence, where on Amazon it would have cost me many $thousands a month, their prices are crazy.
benwilson512
Sure, but at the same time it’s cheaper than a dedicated dev ops person, and you can’t screw it up as badly.