-
Notifications
You must be signed in to change notification settings - Fork 639
Closed
Labels
api: storageIssues related to the Cloud Storage API.Issues related to the Cloud Storage API.
Description
I'm seeing upload times of over 6000ms for small 10kB files. Please could someone confirm if this is expected for Google cloud uploads, or is it more likely there is some client problem happening?
I've tried disabling resumable and validation, and this improves things a bit, but not substantially. Our upload code looks like this:
var options = {
resumable : false,
validation: false
};
var remoteWriteStream = bucket.file(fileName).createWriteStream(options);
remoteWriteStream.on('finish', function(){ callback(); });
remoteWriteStream.on('error', function(err){ callback(err); });
sourceStream.pipe(remoteWriteStream);
Metadata
Metadata
Assignees
Labels
api: storageIssues related to the Cloud Storage API.Issues related to the Cloud Storage API.