2015-11-27 19:25:52 +01:00
|
|
|
|
---
|
|
|
|
|
title: "B2"
|
|
|
|
|
description: "Backblaze B2"
|
|
|
|
|
---
|
|
|
|
|
|
2021-07-20 20:45:41 +02:00
|
|
|
|
# {{< icon "fa fa-fire" >}} Backblaze B2
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
|
|
|
|
B2 is [Backblaze's cloud storage system](https://www.backblaze.com/b2/).
|
|
|
|
|
|
|
|
|
|
Paths are specified as `remote:bucket` (or `remote:` for the `lsd`
|
2020-10-13 23:49:58 +02:00
|
|
|
|
command.) You may put subdirectories in too, e.g. `remote:bucket/path/to/dir`.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
## Configuration
|
|
|
|
|
|
2015-11-27 19:25:52 +01:00
|
|
|
|
Here is an example of making a b2 configuration. First run
|
|
|
|
|
|
|
|
|
|
rclone config
|
|
|
|
|
|
2019-02-09 10:00:05 +01:00
|
|
|
|
This will guide you through an interactive setup process. To authenticate
|
|
|
|
|
you will either need your Account ID (a short hex number) and Master
|
|
|
|
|
Application Key (a long hex number) OR an Application Key, which is the
|
|
|
|
|
recommended method. See below for further details on generating and using
|
|
|
|
|
an Application Key.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
|
|
|
|
```
|
2021-11-01 21:34:46 +01:00
|
|
|
|
No remotes found, make a new one?
|
2015-11-27 19:25:52 +01:00
|
|
|
|
n) New remote
|
|
|
|
|
q) Quit config
|
|
|
|
|
n/q> n
|
|
|
|
|
name> remote
|
2016-02-21 14:39:04 +01:00
|
|
|
|
Type of storage to configure.
|
|
|
|
|
Choose a number from below, or type in your own value
|
2019-08-26 11:47:17 +02:00
|
|
|
|
[snip]
|
|
|
|
|
XX / Backblaze B2
|
2016-02-21 14:39:04 +01:00
|
|
|
|
\ "b2"
|
2019-08-26 11:47:17 +02:00
|
|
|
|
[snip]
|
|
|
|
|
Storage> b2
|
2018-08-01 15:33:01 +02:00
|
|
|
|
Account ID or Application Key ID
|
2015-11-27 19:25:52 +01:00
|
|
|
|
account> 123456789abc
|
|
|
|
|
Application Key
|
|
|
|
|
key> 0123456789abcdef0123456789abcdef0123456789
|
|
|
|
|
Endpoint for the service - leave blank normally.
|
2017-01-09 06:09:19 +01:00
|
|
|
|
endpoint>
|
2015-11-27 19:25:52 +01:00
|
|
|
|
Remote config
|
|
|
|
|
--------------------
|
|
|
|
|
[remote]
|
|
|
|
|
account = 123456789abc
|
|
|
|
|
key = 0123456789abcdef0123456789abcdef0123456789
|
2017-01-09 06:09:19 +01:00
|
|
|
|
endpoint =
|
2015-11-27 19:25:52 +01:00
|
|
|
|
--------------------
|
|
|
|
|
y) Yes this is OK
|
|
|
|
|
e) Edit this remote
|
|
|
|
|
d) Delete this remote
|
|
|
|
|
y/e/d> y
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This remote is called `remote` and can now be used like this
|
|
|
|
|
|
|
|
|
|
See all buckets
|
|
|
|
|
|
|
|
|
|
rclone lsd remote:
|
|
|
|
|
|
2018-07-31 00:14:03 +02:00
|
|
|
|
Create a new bucket
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
|
|
|
|
rclone mkdir remote:bucket
|
|
|
|
|
|
|
|
|
|
List the contents of a bucket
|
|
|
|
|
|
|
|
|
|
rclone ls remote:bucket
|
|
|
|
|
|
|
|
|
|
Sync `/home/local/directory` to the remote bucket, deleting any
|
|
|
|
|
excess files in the bucket.
|
|
|
|
|
|
2020-06-05 18:04:23 +02:00
|
|
|
|
rclone sync -i /home/local/directory remote:bucket
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Application Keys
|
2018-08-01 15:33:01 +02:00
|
|
|
|
|
|
|
|
|
B2 supports multiple [Application Keys for different access permission
|
|
|
|
|
to B2 Buckets](https://www.backblaze.com/b2/docs/application_keys.html).
|
|
|
|
|
|
2019-01-01 20:52:43 +01:00
|
|
|
|
You can use these with rclone too; you will need to use rclone version 1.43
|
|
|
|
|
or later.
|
2018-08-01 15:33:01 +02:00
|
|
|
|
|
|
|
|
|
Follow Backblaze's docs to create an Application Key with the required
|
2019-02-09 10:00:05 +01:00
|
|
|
|
permission and add the `applicationKeyId` as the `account` and the
|
2018-08-01 15:33:01 +02:00
|
|
|
|
`Application Key` itself as the `key`.
|
|
|
|
|
|
2019-02-09 10:00:05 +01:00
|
|
|
|
Note that you must put the _applicationKeyId_ as the `account` – you
|
2018-08-01 15:33:01 +02:00
|
|
|
|
can't use the master Account ID. If you try then B2 will return 401
|
|
|
|
|
errors.
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### --fast-list
|
2017-06-06 17:40:00 +02:00
|
|
|
|
|
|
|
|
|
This remote supports `--fast-list` which allows you to use fewer
|
|
|
|
|
transactions in exchange for more memory. See the [rclone
|
|
|
|
|
docs](/docs/#fast-list) for more details.
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Modified time
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
|
|
|
|
The modified time is stored as metadata on the object as
|
|
|
|
|
`X-Bz-Info-src_last_modified_millis` as milliseconds since 1970-01-01
|
|
|
|
|
in the Backblaze standard. Other tools should be able to use this as
|
|
|
|
|
a modified time.
|
|
|
|
|
|
2019-05-24 17:07:22 +02:00
|
|
|
|
Modified times are used in syncing and are fully supported. Note that
|
|
|
|
|
if a modification time needs to be updated on an object then it will
|
|
|
|
|
create a new version of the object.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Restricted filename characters
|
2018-11-02 13:14:43 +01:00
|
|
|
|
|
|
|
|
|
In addition to the [default restricted characters set](/overview/#restricted-characters)
|
|
|
|
|
the following characters are also replaced:
|
|
|
|
|
|
|
|
|
|
| Character | Value | Replacement |
|
|
|
|
|
| --------- |:-----:|:-----------:|
|
|
|
|
|
| \ | 0x5C | \ |
|
|
|
|
|
|
|
|
|
|
Invalid UTF-8 bytes will also be [replaced](/overview/#invalid-utf8),
|
|
|
|
|
as they can't be used in JSON strings.
|
|
|
|
|
|
2020-07-06 17:28:30 +02:00
|
|
|
|
Note that in 2020-05 Backblaze started allowing \ characters in file
|
|
|
|
|
names. Rclone hasn't changed its encoding as this could cause syncs to
|
|
|
|
|
re-transfer files. If you want rclone not to replace \ then see the
|
|
|
|
|
`--b2-encoding` flag below and remove the `BackSlash` from the
|
|
|
|
|
string. This can be set in the config.
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### SHA1 checksums
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2016-01-13 11:29:43 +01:00
|
|
|
|
The SHA1 checksums of the files are checked on upload and download and
|
2016-07-13 15:50:47 +02:00
|
|
|
|
will be used in the syncing process.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2017-11-03 13:49:15 +01:00
|
|
|
|
Large files (bigger than the limit in `--b2-upload-cutoff`) which are
|
|
|
|
|
uploaded in chunks will store their SHA1 on the object as
|
|
|
|
|
`X-Bz-Info-large_file_sha1` as recommended by Backblaze.
|
|
|
|
|
|
|
|
|
|
For a large file to be uploaded with an SHA1 checksum, the source
|
|
|
|
|
needs to support SHA1 checksums. The local disk supports SHA1
|
|
|
|
|
checksums so large file transfers from local disk will have an SHA1.
|
|
|
|
|
See [the overview](/overview/#features) for exactly which remotes
|
|
|
|
|
support SHA1.
|
|
|
|
|
|
|
|
|
|
Sources which don't support SHA1, in particular `crypt` will upload
|
|
|
|
|
large files without SHA1 checksums. This may be fixed in the future
|
2019-07-28 19:47:38 +02:00
|
|
|
|
(see [#1767](https://github.com/rclone/rclone/issues/1767)).
|
2017-11-03 13:49:15 +01:00
|
|
|
|
|
|
|
|
|
Files sizes below `--b2-upload-cutoff` will always have an SHA1
|
|
|
|
|
regardless of the source.
|
2016-06-15 19:49:11 +02:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Transfers
|
2016-07-05 12:26:02 +02:00
|
|
|
|
|
|
|
|
|
Backblaze recommends that you do lots of transfers simultaneously for
|
2017-10-28 08:03:51 +02:00
|
|
|
|
maximum speed. In tests from my SSD equipped laptop the optimum
|
2016-07-05 12:26:02 +02:00
|
|
|
|
setting is about `--transfers 32` though higher numbers may be used
|
|
|
|
|
for a slight speed improvement. The optimum number for you may vary
|
|
|
|
|
depending on your hardware, how big the files are, how much you want
|
|
|
|
|
to load your computer, etc. The default of `--transfers 4` is
|
|
|
|
|
definitely too low for Backblaze B2 though.
|
|
|
|
|
|
2021-03-02 20:11:57 +01:00
|
|
|
|
Note that uploading big files (bigger than 200 MiB by default) will use
|
|
|
|
|
a 96 MiB RAM buffer by default. There can be at most `--transfers` of
|
2016-07-13 15:50:47 +02:00
|
|
|
|
these in use at any moment, so this sets the upper limit on the memory
|
|
|
|
|
used.
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Versions
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
|
|
|
|
When rclone uploads a new version of a file it creates a [new version
|
|
|
|
|
of it](https://www.backblaze.com/b2/docs/file_versions.html).
|
2017-07-23 14:02:42 +02:00
|
|
|
|
Likewise when you delete a file, the old version will be marked hidden
|
|
|
|
|
and still be available. Conversely, you may opt in to a "hard delete"
|
|
|
|
|
of files with the `--b2-hard-delete` flag which would permanently remove
|
|
|
|
|
the file instead of hiding it.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2017-07-23 14:02:42 +02:00
|
|
|
|
Old versions of files, where available, are visible using the
|
|
|
|
|
`--b2-versions` flag.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2016-07-02 18:03:08 +02:00
|
|
|
|
If you wish to remove all the old versions then you can use the
|
|
|
|
|
`rclone cleanup remote:bucket` command which will delete all the old
|
2016-07-05 12:26:02 +02:00
|
|
|
|
versions of files, leaving the current ones intact. You can also
|
|
|
|
|
supply a path and only old versions under that path will be deleted,
|
2020-10-13 23:49:58 +02:00
|
|
|
|
e.g. `rclone cleanup remote:bucket/path/to/stuff`.
|
2016-07-02 18:03:08 +02:00
|
|
|
|
|
2018-12-02 19:05:32 +01:00
|
|
|
|
Note that `cleanup` will remove partially uploaded files from the bucket
|
|
|
|
|
if they are more than a day old.
|
2018-09-29 15:47:31 +02:00
|
|
|
|
|
2016-07-05 12:26:02 +02:00
|
|
|
|
When you `purge` a bucket, the current and the old versions will be
|
|
|
|
|
deleted then the bucket will be deleted.
|
2015-11-27 19:25:52 +01:00
|
|
|
|
|
2016-07-05 12:26:02 +02:00
|
|
|
|
However `delete` will cause the current versions of the files to
|
|
|
|
|
become hidden old versions.
|
2016-04-04 18:58:36 +02:00
|
|
|
|
|
2017-10-28 08:03:51 +02:00
|
|
|
|
Here is a session showing the listing and retrieval of an old
|
2016-07-05 12:26:02 +02:00
|
|
|
|
version followed by a `cleanup` of the old versions.
|
|
|
|
|
|
|
|
|
|
Show current version and all the versions with `--b2-versions` flag.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ rclone -q ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
|
|
|
|
|
$ rclone -q --b2-versions ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
8 one-v2016-07-04-141032-000.txt
|
|
|
|
|
16 one-v2016-07-04-141003-000.txt
|
|
|
|
|
15 one-v2016-07-02-155621-000.txt
|
|
|
|
|
```
|
|
|
|
|
|
2017-10-28 08:03:51 +02:00
|
|
|
|
Retrieve an old version
|
2016-07-05 12:26:02 +02:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ rclone -q --b2-versions copy b2:cleanup-test/one-v2016-07-04-141003-000.txt /tmp
|
|
|
|
|
|
|
|
|
|
$ ls -l /tmp/one-v2016-07-04-141003-000.txt
|
|
|
|
|
-rw-rw-r-- 1 ncw ncw 16 Jul 2 17:46 /tmp/one-v2016-07-04-141003-000.txt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Clean up all the old versions and show that they've gone.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ rclone -q cleanup b2:cleanup-test
|
|
|
|
|
|
|
|
|
|
$ rclone -q ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
|
|
|
|
|
$ rclone -q --b2-versions ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
```
|
2016-04-04 18:58:36 +02:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Data usage
|
2016-10-25 22:36:45 +02:00
|
|
|
|
|
|
|
|
|
It is useful to know how many requests are sent to the server in different scenarios.
|
|
|
|
|
|
|
|
|
|
All copy commands send the following 4 requests:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
/b2api/v1/b2_authorize_account
|
|
|
|
|
/b2api/v1/b2_create_bucket
|
|
|
|
|
/b2api/v1/b2_list_buckets
|
|
|
|
|
/b2api/v1/b2_list_file_names
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The `b2_list_file_names` request will be sent once for every 1k files
|
|
|
|
|
in the remote path, providing the checksum and modification time of
|
|
|
|
|
the listed files. As of version 1.33 issue
|
2019-07-28 19:47:38 +02:00
|
|
|
|
[#818](https://github.com/rclone/rclone/issues/818) causes extra requests
|
2016-10-25 22:36:45 +02:00
|
|
|
|
to be sent when using B2 with Crypt. When a copy operation does not
|
|
|
|
|
require any files to be uploaded, no more requests will be sent.
|
|
|
|
|
|
|
|
|
|
Uploading files that do not require chunking, will send 2 requests per
|
|
|
|
|
file upload:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
/b2api/v1/b2_get_upload_url
|
|
|
|
|
/b2api/v1/b2_upload_file/
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Uploading files requiring chunking, will send 2 requests (one each to
|
|
|
|
|
start and finish the upload) and another 2 requests for each chunk:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
/b2api/v1/b2_start_large_file
|
|
|
|
|
/b2api/v1/b2_get_upload_part_url
|
|
|
|
|
/b2api/v1/b2_upload_part/
|
|
|
|
|
/b2api/v1/b2_finish_large_file
|
|
|
|
|
```
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
#### Versions
|
2016-06-15 19:49:11 +02:00
|
|
|
|
|
2019-03-27 20:12:24 +01:00
|
|
|
|
Versions can be viewed with the `--b2-versions` flag. When it is set
|
2018-10-01 19:36:15 +02:00
|
|
|
|
rclone will show and act on older versions of files. For example
|
2016-07-05 12:26:02 +02:00
|
|
|
|
|
|
|
|
|
Listing without `--b2-versions`
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ rclone -q ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
And with
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ rclone -q --b2-versions ls b2:cleanup-test
|
|
|
|
|
9 one.txt
|
|
|
|
|
8 one-v2016-07-04-141032-000.txt
|
|
|
|
|
16 one-v2016-07-04-141003-000.txt
|
|
|
|
|
15 one-v2016-07-02-155621-000.txt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Showing that the current version is unchanged but older versions can
|
|
|
|
|
be seen. These have the UTC date that they were uploaded to the
|
|
|
|
|
server to the nearest millisecond appended to them.
|
|
|
|
|
|
|
|
|
|
Note that when using `--b2-versions` no file write operations are
|
|
|
|
|
permitted, so you can't upload files or delete them.
|
2018-10-01 19:36:15 +02:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### B2 and rclone link
|
2019-07-25 09:53:51 +02:00
|
|
|
|
|
|
|
|
|
Rclone supports generating file share links for private B2 buckets.
|
|
|
|
|
They can either be for a file for example:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
./rclone link B2:bucket/path/to/file.txt
|
|
|
|
|
https://f002.backblazeb2.com/file/bucket/path/to/file.txt?Authorization=xxxxxxxx
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
or if run on a directory you will get:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
./rclone link B2:bucket/path
|
|
|
|
|
https://f002.backblazeb2.com/file/bucket/path?Authorization=xxxxxxxx
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
you can then use the authorization token (the part of the url from the
|
|
|
|
|
`?Authorization=` on) on any file path under that directory. For example:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
https://f002.backblazeb2.com/file/bucket/path/to/file1?Authorization=xxxxxxxx
|
|
|
|
|
https://f002.backblazeb2.com/file/bucket/path/file2?Authorization=xxxxxxxx
|
|
|
|
|
https://f002.backblazeb2.com/file/bucket/path/folder/file3?Authorization=xxxxxxxx
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
2020-05-22 13:22:52 +02:00
|
|
|
|
{{< rem autogenerated options start" - DO NOT EDIT - instead edit fs.RegInfo in backend/b2/b2.go then run make backenddocs" >}}
|
2021-11-01 16:42:05 +01:00
|
|
|
|
### Standard options
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
Here are the standard options specific to b2 (Backblaze B2).
|
|
|
|
|
|
|
|
|
|
#### --b2-account
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Account ID or Application Key ID.
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
- Config: account
|
|
|
|
|
- Env Var: RCLONE_B2_ACCOUNT
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
#### --b2-key
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Application Key.
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
- Config: key
|
|
|
|
|
- Env Var: RCLONE_B2_KEY
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
#### --b2-hard-delete
|
|
|
|
|
|
|
|
|
|
Permanently delete files on remote removal, otherwise hide files.
|
|
|
|
|
|
|
|
|
|
- Config: hard_delete
|
|
|
|
|
- Env Var: RCLONE_B2_HARD_DELETE
|
|
|
|
|
- Type: bool
|
|
|
|
|
- Default: false
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
### Advanced options
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
Here are the advanced options specific to b2 (Backblaze B2).
|
|
|
|
|
|
|
|
|
|
#### --b2-endpoint
|
|
|
|
|
|
|
|
|
|
Endpoint for the service.
|
2021-11-01 16:42:05 +01:00
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
|
Leave blank normally.
|
|
|
|
|
|
|
|
|
|
- Config: endpoint
|
|
|
|
|
- Env Var: RCLONE_B2_ENDPOINT
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
#### --b2-test-mode
|
|
|
|
|
|
|
|
|
|
A flag string for X-Bz-Test-Mode header for debugging.
|
|
|
|
|
|
|
|
|
|
This is for debugging purposes only. Setting it to one of the strings
|
|
|
|
|
below will cause b2 to return specific errors:
|
|
|
|
|
|
|
|
|
|
* "fail_some_uploads"
|
|
|
|
|
* "expire_some_account_authorization_tokens"
|
|
|
|
|
* "force_cap_exceeded"
|
|
|
|
|
|
|
|
|
|
These will be set in the "X-Bz-Test-Mode" header which is documented
|
|
|
|
|
in the [b2 integrations checklist](https://www.backblaze.com/b2/docs/integration_checklist.html).
|
|
|
|
|
|
|
|
|
|
- Config: test_mode
|
|
|
|
|
- Env Var: RCLONE_B2_TEST_MODE
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
|
|
|
|
#### --b2-versions
|
|
|
|
|
|
|
|
|
|
Include old versions in directory listings.
|
2021-11-01 16:42:05 +01:00
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
|
Note that when using this no file write operations are permitted,
|
|
|
|
|
so you can't upload files or delete them.
|
|
|
|
|
|
|
|
|
|
- Config: versions
|
|
|
|
|
- Env Var: RCLONE_B2_VERSIONS
|
|
|
|
|
- Type: bool
|
|
|
|
|
- Default: false
|
|
|
|
|
|
|
|
|
|
#### --b2-upload-cutoff
|
|
|
|
|
|
|
|
|
|
Cutoff for switching to chunked upload.
|
|
|
|
|
|
|
|
|
|
Files above this size will be uploaded in chunks of "--b2-chunk-size".
|
|
|
|
|
|
2021-03-02 20:11:57 +01:00
|
|
|
|
This value should be set no larger than 4.657 GiB (== 5 GB).
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
- Config: upload_cutoff
|
|
|
|
|
- Env Var: RCLONE_B2_UPLOAD_CUTOFF
|
|
|
|
|
- Type: SizeSuffix
|
2021-07-20 20:45:41 +02:00
|
|
|
|
- Default: 200Mi
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
2020-09-02 17:59:04 +02:00
|
|
|
|
#### --b2-copy-cutoff
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Cutoff for switching to multipart copy.
|
2020-09-02 17:59:04 +02:00
|
|
|
|
|
2020-10-13 23:43:40 +02:00
|
|
|
|
Any files larger than this that need to be server-side copied will be
|
2020-09-02 17:59:04 +02:00
|
|
|
|
copied in chunks of this size.
|
|
|
|
|
|
2021-03-02 20:11:57 +01:00
|
|
|
|
The minimum is 0 and the maximum is 4.6 GiB.
|
2020-09-02 17:59:04 +02:00
|
|
|
|
|
|
|
|
|
- Config: copy_cutoff
|
|
|
|
|
- Env Var: RCLONE_B2_COPY_CUTOFF
|
|
|
|
|
- Type: SizeSuffix
|
2021-07-20 20:45:41 +02:00
|
|
|
|
- Default: 4Gi
|
2020-09-02 17:59:04 +02:00
|
|
|
|
|
2018-10-01 21:48:54 +02:00
|
|
|
|
#### --b2-chunk-size
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Upload chunk size.
|
|
|
|
|
|
|
|
|
|
When uploading large files, chunk the file into this size.
|
|
|
|
|
|
|
|
|
|
Must fit in memory. These chunks are buffered in memory and there
|
|
|
|
|
might a maximum of "--transfers" chunks in progress at once.
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
5,000,000 Bytes is the minimum size.
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
|
|
|
|
- Config: chunk_size
|
|
|
|
|
- Env Var: RCLONE_B2_CHUNK_SIZE
|
|
|
|
|
- Type: SizeSuffix
|
2021-07-20 20:45:41 +02:00
|
|
|
|
- Default: 96Mi
|
2018-10-01 21:48:54 +02:00
|
|
|
|
|
2019-02-09 11:42:57 +01:00
|
|
|
|
#### --b2-disable-checksum
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Disable checksums for large (> upload cutoff) files.
|
2019-02-09 11:42:57 +01:00
|
|
|
|
|
2020-05-22 13:22:52 +02:00
|
|
|
|
Normally rclone will calculate the SHA1 checksum of the input before
|
|
|
|
|
uploading it so it can add it to metadata on the object. This is great
|
|
|
|
|
for data integrity checking but can cause long delays for large files
|
|
|
|
|
to start uploading.
|
|
|
|
|
|
2019-02-09 11:42:57 +01:00
|
|
|
|
- Config: disable_checksum
|
|
|
|
|
- Env Var: RCLONE_B2_DISABLE_CHECKSUM
|
|
|
|
|
- Type: bool
|
|
|
|
|
- Default: false
|
|
|
|
|
|
2019-04-13 12:01:58 +02:00
|
|
|
|
#### --b2-download-url
|
|
|
|
|
|
|
|
|
|
Custom endpoint for downloads.
|
|
|
|
|
|
|
|
|
|
This is usually set to a Cloudflare CDN URL as Backblaze offers
|
|
|
|
|
free egress for data downloaded through the Cloudflare network.
|
2021-02-02 14:42:35 +01:00
|
|
|
|
Rclone works with private buckets by sending an "Authorization" header.
|
|
|
|
|
If the custom endpoint rewrites the requests for authentication,
|
|
|
|
|
e.g., in Cloudflare Workers, this header needs to be handled properly.
|
2019-04-13 12:01:58 +02:00
|
|
|
|
Leave blank if you want to use the endpoint provided by Backblaze.
|
|
|
|
|
|
|
|
|
|
- Config: download_url
|
|
|
|
|
- Env Var: RCLONE_B2_DOWNLOAD_URL
|
|
|
|
|
- Type: string
|
|
|
|
|
- Default: ""
|
|
|
|
|
|
2019-08-26 16:25:20 +02:00
|
|
|
|
#### --b2-download-auth-duration
|
|
|
|
|
|
|
|
|
|
Time before the authorization token will expire in s or suffix ms|s|m|h|d.
|
|
|
|
|
|
|
|
|
|
The duration before the download authorization token will expire.
|
|
|
|
|
The minimum value is 1 second. The maximum value is one week.
|
|
|
|
|
|
|
|
|
|
- Config: download_auth_duration
|
|
|
|
|
- Env Var: RCLONE_B2_DOWNLOAD_AUTH_DURATION
|
|
|
|
|
- Type: Duration
|
|
|
|
|
- Default: 1w
|
|
|
|
|
|
2020-09-02 17:59:04 +02:00
|
|
|
|
#### --b2-memory-pool-flush-time
|
|
|
|
|
|
|
|
|
|
How often internal memory buffer pools will be flushed.
|
|
|
|
|
Uploads which requires additional buffers (f.e multipart) will use memory pool for allocations.
|
|
|
|
|
This option controls how often unused buffers will be removed from the pool.
|
|
|
|
|
|
|
|
|
|
- Config: memory_pool_flush_time
|
|
|
|
|
- Env Var: RCLONE_B2_MEMORY_POOL_FLUSH_TIME
|
|
|
|
|
- Type: Duration
|
|
|
|
|
- Default: 1m0s
|
|
|
|
|
|
|
|
|
|
#### --b2-memory-pool-use-mmap
|
|
|
|
|
|
|
|
|
|
Whether to use mmap buffers in internal memory pool.
|
|
|
|
|
|
|
|
|
|
- Config: memory_pool_use_mmap
|
|
|
|
|
- Env Var: RCLONE_B2_MEMORY_POOL_USE_MMAP
|
|
|
|
|
- Type: bool
|
|
|
|
|
- Default: false
|
|
|
|
|
|
2020-02-01 11:31:42 +01:00
|
|
|
|
#### --b2-encoding
|
|
|
|
|
|
|
|
|
|
This sets the encoding for the backend.
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
See the [encoding section in the overview](/overview/#encoding) for more info.
|
2020-02-01 11:31:42 +01:00
|
|
|
|
|
|
|
|
|
- Config: encoding
|
|
|
|
|
- Env Var: RCLONE_B2_ENCODING
|
|
|
|
|
- Type: MultiEncoder
|
|
|
|
|
- Default: Slash,BackSlash,Del,Ctl,InvalidUtf8,Dot
|
|
|
|
|
|
2020-05-22 13:22:52 +02:00
|
|
|
|
{{< rem autogenerated options stop >}}
|
2021-10-14 15:40:18 +02:00
|
|
|
|
|
|
|
|
|
## Limitations
|
2020-11-27 15:08:52 +01:00
|
|
|
|
|
|
|
|
|
`rclone about` is not supported by the B2 backend. Backends without
|
|
|
|
|
this capability cannot determine free space for an rclone mount or
|
|
|
|
|
use policy `mfs` (most free space) as a member of an rclone union
|
|
|
|
|
remote.
|
|
|
|
|
|
|
|
|
|
See [List of backends that do not support rclone about](https://rclone.org/overview/#optional-features)
|
|
|
|
|
See [rclone about](https://rclone.org/commands/rclone_about/)
|
|
|
|
|
|
2018-10-01 19:36:15 +02:00
|
|
|
|
|