-
Notifications
You must be signed in to change notification settings - Fork 77
Clarify seed from a URI that dumps can also be used as seeds #2509
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
base: dev
Are you sure you want to change the base?
Conversation
This PR includes documentation updates Updated pages: |
@@ -114,6 +118,7 @@ include::partial$/aws-s3-overrides.adoc[] | |||
include::partial$/aws-s3-credentials.adoc[] | |||
|
|||
. Create database from `myBackup.backup`. | |||
This backup can be a full backup or a differential backup, or a dump file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This backup can be a full backup or a differential backup, or a dump file. | |
This backup can be a full backup, a differential backup, or a dump file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see also lines 144 and 167
|
||
| `ftp:` | ||
| `URLConnectionSeedProvider` | ||
| `\ftp://myftp.com/backups/backup1.backup` | ||
`ftp://myftp.com/backups/backup1.dump` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`ftp://myftp.com/backups/backup1.dump` | |
`\ftp://myftp.com/backups/backup1.dump` |
|
||
| `http:` | ||
| `URLConnectionSeedProvider` | ||
| `\http://myhttp.com/backups/backup1.backup` | ||
`http://myhttp.com/backups/backup1.dump` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`http://myhttp.com/backups/backup1.dump` | |
`\http://myhttp.com/backups/backup1.dump` |
|
||
| `https:` | ||
| `URLConnectionSeedProvider` | ||
| `\https://myhttp.com/backups/backup1.backup` | ||
`https://myhttp.com/backups/backup1.dump` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`https://myhttp.com/backups/backup1.dump` | |
`\https://myhttp.com/backups/backup1.dump` |
The sources of seeds are called _seed providers_. | ||
|
||
Backups have `.backup` extension at the end, while the dumps extension is what the user chooses. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Backups have `.backup` extension at the end, while the dumps extension is what the user chooses. | |
Backups have a `.backup` extension, while the dump file can have whatever extension the user chooses. |
No description provided.