i am using azure-storage to read blob files from container in my nodejs code
My code
blobService.listBlobsSegmented(containerName, token, { maxResults : 10 }, function(err, result) {
if (err) {
console.log("Couldn't list blobs for container %s", containerName);
console.error(err);
} else {
// do things here
}
});
It is working fine but when increase blob limit 10 to 500 my network stop working. what can be issue here ?
via Navneet Garg
No comments:
Post a Comment