Insert payloads (fylr restore)
This page describes the process of inserting a local backup of JSON payloads to a target fylr instance
The fylr restore command performs POST requests to the API of the target fylr instance. It iterates over the list of payloads from the manifest.json file.
A basic restore command looks like this:
fylr restore \
--server '<fylr url>/api/v1' \
--login root
--password '<cleartext>' \
--manifest '<instance folder>/manifest.json' \
--client-id web-client \
--client-secret foo \
--client-token-url '<fylr url>/api/oauth2/token' \
--chunk 1000 \
--timeout-min=1 \
--file-api rput \
--file-version original \
--purge # --purge OR --continue--server,--loginand--passwordrefer to the target serverfor the
--serverparameter, include the HTTP Basic Auth:http://<login>:<password>@<fylr url>/api/v1--chunkdefines the batch size of objects in POST requests toapi/v1/dbif the objects are too big or complex, the requests might take too long and cause a timeout
in this case, lower this value and continue restoring with
--continue
Parameters
This is a complete overview of the command line parameters (run fylr restore -h):
--manifest
--manifestManifest file that has been created by the backup command.
this parameter is mandatory!
type:
string
--server
--serverAPI Url of the target instance. The Url must include the API base endpoint, for fylr this is <target url>/api/v1.
this parameter is mandatory!
type:
string
--login
--loginUsername of the user in the target instance. It should be a user with root rights or sufficient read rights.
this parameter is mandatory!
type:
string
--password
--passwordPassword of the user in the target instance.
this parameter is mandatory!
type:
string
--purge
--purgeDefines the mode of the restoring (purge or continue).
If this is true, the complete restore starts from the beginning, and the target instance is purged.
The parameters --purge and --continue are mutually exclusive. Not both can be true.
type:
booldefault:
false
--continue
--continueDefines the mode of the restoring (purge or continue).
If this is true, the restore continues from the last point in the progress.json file, if a previous restore run was interrupted.
The parameters --purge and --continue are mutually exclusive.
type:
booldefault:
false
--base-config
--base-configPath to a specific base config file. Defaults to <instance folder>/base_config.json from the backup.
This parameter is not allowed in combination with --continue.
type:
stringdefault:
base_config.json
--datamodel
--datamodelPath to a specific datamodel file. Defaults to <instance folder>/datamodel.json from the backup.
This parameter is not allowed in combination with --continue.
Trying to upload a datamodel without --purge will not work, if there is already a datamodel on the target instance!
Only use --datamodel=- if the target instance already has a matching datamodel!
type:
stringdefault:
datamodel.json
--skip-constraints
--skip-constraintsSkip constraints during restore.
type:
booldefault:
false
--include-password
--include-passwordInclude user password hashes. If this option is true, the restore tool checks if there is at least one user where a password hash is present. This is done by checking the has_passwords flag in the manifest.json. If this value is false, the restore will stop with an error.
If the source is an easydb5: make sure that the source instance is configured to output the user passwords, and repeat the backup. See https://docs.easydb.de/en/sysadmin/configuration/easydb-server.yml/available-variables/ under include_passwords for the necessary settings in the source instance.
For a fylr source instance this is not necessary, since the password hashes are always returned over the API.
type:
booldefault:
false
--include-events
--include-eventsComma separated list of event types.
type:
stringdefault:
""
--chunk
--chunkDeprecated! This parameter is removed in fylr in version v6.18.0.
The upload batch size for objects to the target instance. Can be used to control the size of the requests. It can be lowered if the requests cause timeouts or network problems.
This parameter was renamed to --chunk-size
type:
intminimum:
1maximum:
1000default:
100
--chunk-size
--chunk-sizeThe upload batch size for objects to the target instance. Can be used to control the size of the requests. It can be lowered if the requests cause timeouts or network problems.
type:
intminimum:
1maximum:
1000default:
100
--limit
--limitDeprecated! This parameter is removed in fylr in version v6.17.0.
Set this to a number bigger than 0 to limit the number of objects of each objecttype. This can be used to test or debug to only restore a small sample of the source instance.
type:
intminimum:
0default:
0
--file-api
--file-apiMethod used to upload files. Leave empty to not upload files.
put: restore tool uploads files synchronous.rput: target server loads files from remote URLs.rput_leave: target server stores remote URLs, no data is copied to storage.
type:
string
--file-api-access-token
--file-api-access-tokenUse this to pass an access token to fylr backends. This is needed to load files from fylr source instances. It appends the access_token query parameter to the remote url of files, and removes the x-fylr-signature query parameter.
type:
string
--file-version
--file-versionSpecify which version of the source asset is used. Default is "original" which might take long for --file-api=put.
type:
stringdefault:
"original"
--upload-versions
--upload-versionsSet to true, to not produce local preview versions, but instead upload/link the source versions.
The upload method --file-api is used for versions the same way as for the original file.
type:
booldefault:
false
--rename-versions
--rename-versionsRename versions before uploading. This affects uploaded rights as well as file versions.
type:
string
--max-parallel
--max-parallelMaximum numbers of parallel workers.
This creates more load on the target system.
type:
intminimum:
0default:
1
--max-parallel-upload-files
--max-parallel-upload-filesMaximum number of parallel uploads of original files and their versions. Defaults to 4 (0 for bulk). The maximum is 10 (unlimited for bulk).
type:
intminimum:
0maximum:
10default:
4
--timeout-min
--timeout-minTimeout for connections to target in minutes.
type:
intminimum:
1default:
10
--upload-ignore-files-with-errors
--upload-ignore-files-with-errorsSet to true to ignore file upload errors and strip objects from them.
type:
booldefault:
false
--client-id
--client-idIf the target instance uses OAuth2 for user authentication, this is the configured Client ID.
type:
string
--client-secret
--client-secretIf the target instance uses OAuth2 for user authentication, this is the configured Client Secret. Can be kept empty if the instance is public.
type:
string
--client-token-url
--client-token-urlIf the target instance uses OAuth2 for user authentication, this is the OAuth2 callback endpoint of the instance.
For fylr this is <source url>/api/oauth2/token.
type:
string
--verify
--verifySet to true to verify payloads of an existing backup.
type:
booldefault:
false
--insecure
--insecureSet to true to skip the certificate check for the connection to the target instance.
Only use this option if you can trust the remote server!
type:
booldefault:
false
--verbose
--verboseSet to true to log debugging info.
type:
booldefault:
false
--log-network
--log-networkSet to true to log the requests and responses.
type:
booldefault:
false
--log
--logIf this is a valid file path, the log output is written to this file. If this is empty (default), the log output is written to stdout instead.
type:
string
Last updated