Yes, you can stream whatever you like from R2 without any issues, you'll pay for the storage and req
Yes, you can stream whatever you like from R2 without any issues, you'll pay for the storage and requests from R2
put causes this errorNoSuchKey: The specified key does not exist. does this mean that I provided the wrong access key?


putUncaught (in response) TypeError: This ReadableStream is disturbed.NoSuchKey: The specified key does not exist.let reader = request.body.getReader()
console.log({reader})
let pending = true;
while (pending) {
let foo = await reader.read();
console.log(foo)
if (foo.done) {
pending = false
}
}
reader.releaseLock()
await env.EXTRACTOR_BINDING.put(key, request.body);
return new Response(`Put ${key} successfully! with count of ${count}`);