2015-06-06 11:05:21 +02:00
|
|
|
---
|
|
|
|
title: "Bugs"
|
2015-06-06 15:33:08 +02:00
|
|
|
description: "Rclone Bugs and Limitations"
|
2015-06-06 11:05:21 +02:00
|
|
|
---
|
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
# Bugs and Limitations
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
## Limitations
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
### Directory timestamps aren't preserved
|
2015-06-06 11:05:21 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
Rclone doesn't currently preserve the timestamps of directories. This
|
|
|
|
is because rclone only really considers objects when syncing.
|
2015-06-06 15:33:08 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
### Rclone struggles with millions of files in a directory
|
2015-06-06 15:33:08 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
Currently rclone loads each directory entirely into memory before
|
|
|
|
using it. Since each Rclone object takes 0.5k-1k of memory this can
|
|
|
|
take a very long time and use an extremely large amount of memory.
|
2015-08-17 18:14:05 +02:00
|
|
|
|
2019-08-04 12:43:10 +02:00
|
|
|
Millions of files in a directory tend caused by software writing cloud
|
|
|
|
storage (eg S3 buckets).
|
|
|
|
|
|
|
|
### Bucket based remotes and folders
|
|
|
|
|
|
|
|
Bucket based remotes (eg S3/GCS/Swift/B2) do not have a concept of
|
|
|
|
directories. Rclone therefore cannot create directories in them which
|
|
|
|
means that empty directories on a bucket based remote will tend to
|
|
|
|
disappear.
|
|
|
|
|
|
|
|
Some software creates empty keys ending in `/` as directory markers.
|
|
|
|
Rclone doesn't do this as it potentially creates more objects and
|
|
|
|
costs more. It may do in future (probably with a flag).
|
|
|
|
|
|
|
|
## Bugs
|
|
|
|
|
2019-09-13 19:39:23 +02:00
|
|
|
Bugs are stored in rclone's GitHub project:
|
2019-08-04 12:43:10 +02:00
|
|
|
|
|
|
|
* [Reported bugs](https://github.com/rclone/rclone/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
|
|
* [Known issues](https://github.com/rclone/rclone/issues?q=is%3Aopen+is%3Aissue+milestone%3A%22Known+Problem%22)
|
2015-06-06 15:33:08 +02:00
|
|
|
|