0

We are doing POC for DB selection. Based on our use case we got three recommendation

  1. Postgres
  2. Cassandra
  3. Azure SQL

We are not going with Cassandra since we are not matching minimum requirements and we have two options left.

Before selecting db, how we can calculate how much size on disk is required for cost estimation.

(We have data volume, schema ready and yearly growth ready)

Paul White
95.3k30 gold badges439 silver badges689 bronze badges
asked Jun 30, 2022 at 22:49
0

1 Answer 1

1

For Azure SQL Database, see Estimate the Size of a Database in the documentation.

Caveat: The instructions will allow only you to estimate the size of objects in uncompressed row store format.

Compression and column store format are much more difficult to estimate in advance, since so much depends on the data itself. See Data compression in the documentation, and related pages. You would likely need to create a physical database with a representative sample of the real data to arrive at a reasonable ballpark estimate.

For Postgres, see Proper storage size estimation technique for PostgreSQL

answered Jul 1, 2022 at 13:04

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.