Issues uploading large file size to box

What is the problem you are having with rclone?- unable to uploaded files larger than 250MB, as the documentation rclone will chunk files size more than 50MB, can someone provide some clarity on the same or what mistake I am making, thanks.

Run the command 'rclone version' and share the full output of the command.

rclone v1.56.0

  • os/version: debian 10.10 (64 bit)
  • os/kernel: 4.19.0-17-amd64 (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.16.5
  • go/linking: static
  • go/tags: none

Which cloud storage system are you using? (eg Google Drive)

box

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone copy 'xxxxx.mkv'  boxdrive:bucket

The rclone config contents with secrets removed.

[boxdrive]
type = box
token = {"access_token":"Q3zGXXXXXXXXXXXXXrbxl3qb6","token_type":"bearer","refresh_token":"bHg6BNKoCnXXXXXXXXXXXDhez9N4sH6HCXXXV","expiry":"2023-02-04T12:59:40.592073776+01:00"}

A log from the command with the -vv flag

2023/02/04 12:23:56 DEBUG : rclone: Version "v1.56.0" starting with parameters ["rclone" "copy" "XXXX.mkv" "boxdrive:bucket" "-vv"]
2023/02/04 12:23:56 DEBUG : Creating backend with remote "XXXX.mkv"
2023/02/04 12:23:56 DEBUG : Using config file from "/home/pbu80/.config/rclone/rclone.conf"
2023/02/04 12:23:56 DEBUG : fs cache: adding new entry for parent of "XXXX.mkv", "/home/data/XXXX"
2023/02/04 12:23:56 DEBUG : Creating backend with remote "boxdrive:bucket"
2023/02/04 12:23:57 DEBUG : XXXX.mkv: Need to transfer - File not found at Destination
2023/02/04 12:23:57 ERROR : XXXX.mkv: Failed to copy: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:57 ERROR : Attempt 1/3 failed with 1 errors and: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:57 DEBUG : XXXX.mkv: Need to transfer - File not found at Destination
2023/02/04 12:23:58 ERROR : XXXX.mkv: Failed to copy: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:58 ERROR : Attempt 2/3 failed with 1 errors and: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:58 DEBUG : XXXX.mkv: Need to transfer - File not found at Destination
2023/02/04 12:23:58 ERROR : XXXX.mkv: Failed to copy: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:58 ERROR : Attempt 3/3 failed with 1 errors and: pre-upload check: Error "file_size_limit_exceeded" (403): File size exceeds the folder owner's file size limit
2023/02/04 12:23:58 INFO  :
Transferred:              0 / 0 Byte, -, 0 Byte/s, ETA -
Errors:                 1 (retrying may help)
Elapsed time:         2.1s

Chunked means it will upload it in parts.

It doesn't bypass any file size limits.

If you have a file too big per your plan, you can't upload it.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.