-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support UNLOGGED tables #126
Comments
@ergo70: Are you certain you cannot achieve your performance goals through other means? We've seen pretty high insert rates without One bad effect could occur if you execute a The other side of the coin is that this is a PostgreSQL feature and so it's confusing to not support it. All my concerns above would also exist in a single-node setup and PostgreSQL has happily provided What precisely are your write throughput needs (rows/second)? I should be possible to hit them without |
I'm interested in this feature as well. That way, we could have replicated "in-memory tables" for Postgres. :) |
Could
master_create_worker_shards()
be extended in order to optionally createUNLOGGED
shard placements?It seems to work when I change them manually but this is tedious. 😄 But it makes a big difference in write speed. Since there are replicas, the risk of
UNLOGGED
seems to be lower than in a single node database.The text was updated successfully, but these errors were encountered: