support rclone - #466
Open
happy-v587 wants to merge 1 commit into
Open
Conversation
Contributor
|
Hello ! Thank you for contributing ! Out of curiosity, what is your use-case for rclone ? If it's a specific storage not already covered by PGHoard it might make sense to implement it directly. As for direct rclone support, since it is a "meta-storage" so to speak, we don't feel like including it as-is. Would that suit your needs ? |
|
@happyuncle Thanks for this PR. Since it lacks of documentation, here's a simple example of how to use it: {
"backup_location": "/home/pghoard/backup/metadata",
"backup_sites": {
"example-site": {
"nodes": [
{
"host": "127.0.0.1",
"port": 5433,
"user": "backup",
"password": "secret",
"application_name": "pghoard"
}
],
"object_storage": {
"storage_type": "rclone",
"remote_clone_config_path": "/home/pghoard/backup/rclone.conf",
"source": "/home/pghoard/backup/rclone/",
"destination": "onedrive-encrypted",
"destination_path": "/backups/"
},
"pg_data_directory": "/var/lib/postgresql/14/main/"
}
}
}Notes:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By using rclone tool, we can support more storage.
https://rclone.org/
Just want to ask if this way is OK?
If it's OK, I'll sort out the documents and tests