Questions tagged [resumable]

21 questions
5
votes
0 answers

resumable upload to GCS Google Cloud Storage signed url has content corrupted

I'm trying to simulate a resumable-upload to a GCS signed-url using Postman to do two PUT to see how it works. After reference several posts: Can I do a resumable upload with a Google Cloud Storage signed URL? Uploading to Google Cloud using a…
Roger PP.
  • 73
  • 1
  • 7
3
votes
0 answers

resumable js is triggering fileSuccess while the chunks are not getting assembled in the server

I am trying to upload a 400MB+ file to a server using resumable.js with pion/laravel-chunk-upload. It allows me to upload smaller files, without any error, but when I try uploading 400MB files, it just fails. Server side code : $receiver = new…
1
vote
0 answers

I Always Got Cors Error When Send DELETE request to gcs Resumable Singed Url

I've tried to use "resumable signed url" when uploading a file. This is the CORS config on the bucket: [{“maxAgeSeconds”: 3600, “method”: [“GET”, “PATCH”, “DELETE”, “OPTIONS”, “POST”, “PUT”], “origin”: [“*”], “responseHeader”: [“*”]}] BE const…
jiyoung
  • 11
  • 1
1
vote
1 answer

Getting cors errors when trying to perform a single chunk resumable upload to google cloud storage using gcs json api, axios, vue3, quasar and node14

I'm trying to perform a single chunk resumable upload via gcs, node, vue per https://cloud.google.com/storage/docs/performing-resumable-uploads . I'm able to produce the signedUrl but get errors when I try to put or post to the signedUrl via the…
1
vote
1 answer

How to make a resumable upload using NodeJS (NestJS) to Google Cloud Storage (GCS)?

I'm having trouble making a resumable upload service in NestJS to GCS. The scenario is, the client uploads a file from the frontend and on the backend it is sent directly to GCS without temporarily storing it on the BE server. Here's the code…
Wisnu
  • 337
  • 4
  • 16
1
vote
2 answers

Autodesk Forge - 504 Gateway Timeout when uploading file as chunks to BIM 360 storage in Node JS

I'm getting a 504 Gateway Timeout when I try to upload a large file in "chunks" using the PUT object resumable API endpoint in Autodesk…
1
vote
0 answers

google Drive v2 Resumable Uploading php api

I'm reading description for resumable download to Gdrive but not founded any workable example for v2 API https://developers.google.com/drive/v2/reference/files/insert How modify this code for resumable uploading big size files for google api ver-2…
0
votes
0 answers

Resumable Upload client to cloud using JS

I am trying to find a suitable JS library that can work for resumable upload. My requirement is very simple: Lets say user starts uploading a single file of 100 mb, in between there occurs a interruption of Network failure, then on restoring…
0
votes
1 answer

Resuming count with numpy.unique from previously computed count

I was wondering if there were already existing solutions for "resumable" computations with numpy. Let me explain: I have a folder with a big amount of grayscale images over which I need to compute a sort of histogram using the numpy.unique function.…
0
votes
1 answer

Uploading a very large file to google drive using the drive api using python script

I am looking to upload a very large zip file (several hundred GBs) from my remote server to my google drive using the drive api v3. I tried following a tutorial at Toward Data Science but it defers the use of resumable uploads to the drive api…
0
votes
0 answers

Attach files larger than 5MB using GMAIL API resumable upload

I am trying to upload an attachment which is greater than 5MB size, hence using resumable upload option of the gmail API using the REST API option.(https://developers.google.com/gmail/api/guides/uploads#resume-upload). In the API spec it is not…
Marlin
  • 1
0
votes
0 answers

For loop inside xhr onreadystatechange request not working

I'm uploading files through google drive API resumable upload as multiple chunks to monitor the upload state. So I used for loop to request for each chunk. The full code is as below : xhr.onreadystatechange = async function () { if…
0
votes
1 answer

With resumable uri i got by google drive api post request, there is no response while uploading with that uri

resumable uri: https://www.googleapis.com/upload/drive/v3/files?uploadType=resumable&upload_id=ADPycducJGWQ62n6E0K5mD81RGJw-0eIsga8dBxarfSY_2Pk5hFJhBs230Q8ay PUT request: let postFile = await axios.request( { method: "PUT", url:…
karthi keyan
  • 1
  • 1
  • 4
0
votes
0 answers

trying to upload big video to facebook using resumable file method

Im trying to upload a video to a group using graph api. I could upload video in my pc without any error but when I try to upload same video from my server (512MB RAM) it give me memory error. I saw a method to upload video using resumable method but…
0
votes
0 answers

How to cache signed url for storage for specific path?

I'm using signed url to generate session uri for resumable upload to gcp storage bucket. The flow is following client performs request to the backend, which generates signed url for post request, which is meant to be used to start resumable upload…
1
2