GoogleCloudPlatform / appengine-gcs-client

App Engine-Cloud Storage custom client library
Apache License 2.0
124 stars 112 forks source link

How to do chunked upload using this library? #32

Open speshiou opened 8 years ago

speshiou commented 8 years ago

I slice large file as several pieces and upload them over ajax since GAE has limited 32MB per request and will cause OOM. But I can not open the existing file with append mode, or seeking the specific position of file to write the chunked data.

I would like to know how to do it using this library or I only can do it using JSON API? Thank you!