Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
habibur
on April 15, 2022
|
parent
|
context
|
favorite
| on:
Migrating from SQLite to PostgreSQL
I was more interested in knowing performance characteristics.
For the same service how did RAM+CPU load change pre and post migration?
dannyibunny
on April 15, 2022
[–]
Postgres is much heavier than SQLite in terms of binary size/CPU/RAM, but I think scalability is the win.
masklinn
on April 15, 2022
|
parent
[–]
OTOH if you don't tune it the default postgres configuration remains extremely low-resource (which also hampers its performances): 128MB shared buffers, 8MB temp buffers, 4MB work_mem, 64MB maintenance_work_mem, 100 connections, 1000 files open.
mayli
on April 15, 2022
|
root
|
parent
[–]
Compared to less than 1MB for sqlite in this use case.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
For the same service how did RAM+CPU load change pre and post migration?