Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions docs/concepts/managed-storage/managed-postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ For a smoother experience with Defang, we recommend using Postgres 14 for your c

```

## Final Snapshots

When a project is deployed to a production environment any managed postgres instances are automatically configured to create a snapshot of the database before deletion. The snapshot will be named with the following format
Copy link
Member

@jordanstephens jordanstephens Dec 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should specifically mention the "deployment mode".

Suggested change
When a project is deployed to a production environment any managed postgres instances are automatically configured to create a snapshot of the database before deletion. The snapshot will be named with the following format
When a project is deployed with the `production` [deployment mode](/docs/concepts/deployment-modes) any managed postgres instances are automatically configured to create a snapshot of the database before deletion. The snapshot will be named with the following format


`
<project-name>-<service>-postgres-<id>-final-snapshot
`

The AWS Console can be used to restore a snapshop into a new instance of postgres.

<!--
### Major Version Updating of Engine

Expand Down
11 changes: 11 additions & 0 deletions docs/concepts/managed-storage/managed-redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,14 @@ cache:
- mode: host
target: 6379
```

## Final Snapshots

When a project is deployed with the `production` [deployment mode](/docs/concepts/deployment-modes) any managed redis instances are automatically
configured to create a snapshot of the datastore before deletion. The snapshot will be named with the following format

`
<project-name>-<service>-redis-<id>-final-snapshot
`

The AWS Console can be used to restore a snapshop into a new instance of redis.
Loading