Postgres

Postgres is a DBMS.

  • "SQL tells the database what information you want, and the DBMS determines the best way to provide it."

Think of postgres as a microservice that is stateful.

  • Further, don’t think of it as a storage layer, but rather as a concurrent data access service. The service is capable of handling data processing. When we think of Postgres only as our data layer, we tend to overlook the power that Postgres can actually bring to the table.
    • anal: think of The Matrix, where Neo awakes in the pod near the start of the movie. If each pod were a piece of data, the mechanical arms that move and manipulate the pods would be Postgres.
      • In actuality, it would be both— the whole system. Limiting our thinking to just the data also limits our thinking in terms of what we consider Postgres to be capable of.

In PG, data consistency is maintained by using a multiversion model (Multi-version Concurrency Control (MVCC)).

  • This means that each SQL statement sees a snapshot of data (a database version) as it was some time ago, regardless of the current state of the underlying data.
  • source

Performance

It's possible to scale Postgres to storing a billion 1KB rows entirely in memory - This means you could quickly run queries against the full name of everyone on the planet on commodity hardware and with little fine-tuning.

  • Postgres can easily handle 10,000 insertions per second.

If we have the SQL do the data related heavy lifting, there will often be a net gain in performance. Mostly, it is because round-trip times and latency along with memory and bandwidth resources usage depend directly on the size of the result sets.

It's rarely a mistake to start with Postgres and then switch out the most performance critical parts of your system when the time comes.

UE Resources


Children
  1. Acid
  2. Admin
  3. Clause
  4. Connecting to Postgres
  5. Extensions
  6. Internals
  7. Lang
  8. Operators
  9. Performance
  10. Plpgsql
  11. Prod
  12. Psql
  13. Pub Sub
  14. Query
  15. Scaling
  16. Seed
  17. System
  18. Table
  19. Tablespaces
  20. Terms
  21. Testing
  22. Tools

Backlinks