Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions installation/database-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,25 @@ We have documented steps for some hosting providers:
FOR TABLE public.lists, public.todos;
```
</Accordion>
<Accordion title="Render Postgres">
Logical replication can be enabled for [Render Postgres](https://render.com/docs/postgresql) but you need to contact their support team. Here are some prerequisites before contacting them:
- The disk size must be at least 10 GB.
- You must be on a Professional workspace or higher.

The Render support team will ask you the following:

- Database user for replication (you can use the default or create a new user yourself)
- Schema(s)
- Publication name (only if you want us to set `FOR ALL TABLES`; otherwise, you'll be able to create publications per table yourself later)

If you want to create the publication `FOR ALL TABLES`, you must let their support team to know that you want the publication name to be `powersync`.

Additional notes they'll share with you:

> We will reserve approximately 1/8 of your storage for `wal_keep_size`. This will not be available for your normal operations and will always be reserved no matter what.
We will also schedule maintenance for the database to pick up the changes. It will be initially scheduled for 14 days out with a deadline of 30 days out. Once the maintenance is added, you can reschedule to any time between immediately and the deadline. If you do nothing, it will run automatically at the initially scheduled time of 14 days out.

</Accordion>
</AccordionGroup>


Expand Down