GDrive quota exceeded

What is the problem you are having with rclone?

My upload using rclone stop. This is the message that I received.

2020/11/03 02:10:39 ERROR : Fatal error received - not attempting retries
2020/11/03 02:10:39 INFO :
Transferred: 766.996G / 782.816 GBytes, 98%, 5.304 MBytes/s, ETA 50m54s
Errors: 1 (fatal error encountered)
Checks: 48245 / 48245, 100%
Deleted: 24122
Renamed: 24121
Transferred: 24121 / 34129, 71%
Elapsed time: 41h8m15.3s

2020/11/03 02:10:39 Failed to move: googleapi: Error 403: User rate limit exceeded., userRateLimitExceeded

What is your rclone version (output from rclone version)

rclone v1.53.1

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Linux 64 bits(Unraid 6.7.2)

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

Google Drive

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

rclone move --bwlimit "5.75M" --drive-chunk-size 64M --no-traverse --fast-list --drive-stop-on-upload-limit -v /mnt/user/.move/ ijm:mncfs

The rclone config contents with secrets removed.

[ijm]
type = drive
client_id = removed
client_secret = removed
token = {"access_token":"ya29.A0AfH6SMDbkxkZ14-t09Q5qNRGLMNaIk9if1rlC4c1pORL2JQg8O4BkTrVFruyHyrvukpe8ptJdlFRyiEv4slvSb_Rcem7qK5lhOtmdvOsI4KWU96dhUHrYGIjuDDCsiWJgOWnG_dRs18tYSUI6aHuXDRHm8DrSKKefeJaKTbFAsssBQ","token_type":"Bearer","refresh_token":"1/taozgnlRR2glYUNMbq4eqCsu9s4hIGOWM8ZHGVpGM1mFHf-QbGSbFF0P58FFUurm","expiry":"2020-11-05T01:01:13.430512599+08:00"}
root_folder_id = 0AE3PpvdmZGAoUk9PVA

[ijm-cache]
type = cache
remote = ijm:
plex_url = 
plex_username = 
plex_password = 
chunk_size = 10M
info_age = 48h
chunk_total_size = 100G

A log from the command with the -vv flag

2020/11/03 02:10:39 ERROR : Fatal error received - not attempting retries
2020/11/03 02:10:39 INFO :
Transferred: 766.996G / 782.816 GBytes, 98%, 5.304 MBytes/s, ETA 50m54s
Errors: 1 (fatal error encountered)
Checks: 48245 / 48245, 100%
Deleted: 24122
Renamed: 24121
Transferred: 24121 / 34129, 71%
Elapsed time: 41h8m15.3s

2020/11/03 02:10:39 Failed to move: googleapi: Error 403: User rate limit exceeded., userRateLimitExceeded

You can only upload 750GB per day and you ran out.

I know. Thats why i use --drive-stop-on-upload-limit flag. But why do i still get the error? Why do i still hit the limit?

you hit the limit due to the amount of data you uploaded.

you get that error due to the way --drive-stop-on-upload-limit works.
i would not use that flag, as any uploads still in progress are killed.
https://rclone.org/drive/#drive-stop-on-upload-limit

I dont understand. The error I received is from the flag --drive-stop-on-upload-limit? Not from google? I thought, if you use the flag, you would not get ban from google as the flag stops rclone from uploading to google.

Are you saying that the line

2020/11/03 02:10:39 Failed to move: googleapi: Error 403: User rate limit exceeded., userRateLimitExceeded

is actually from rclone? Not from google?

did you read that link i shared?

there is no way around that 750GB/day limit.

once you hit that limit, google will send a message to rclone.
rclone will not be able to start new uploads.
but any uploads in progress will continue.

if you use that flag, rclone will kill any current uploads that are in progress.

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