admin管理员组文章数量:1340687
I have a cloud function that is returning a lot of data (50'000 documents) as objects. When I run it I get the error finished with status: 'response error'
.
This only happens when I export all of the data, when a limit (up to 20'000) is applied it works without problem. This lets me think that the response might be too big, but there is no info in the logs about this at all. Also adding try / catch does not work. In the console I only get the above message without any further indication.
I know that functions normally log when timeout is hit or the memory exceeded, so I am wondering what else could be the source of error.
exports.run = functions.runWith({ timeoutSeconds: 540, memory: '8GB' }).https.onRequest(async (req, res) => {
try {
const querySnap = await db.collection("myData").get();
const data = querySnap.docs.map(doc => doc.data());
return res.status(200).json({
data: data
}).end();
} catch (err) {
console.log(err);
return res.status(400).end();
}
});
EDIT: It is indeed the size of the response that causes this error. You can reproduce this if you simply return data of given size (with Buffer.alloc(bytes)
).
I have a cloud function that is returning a lot of data (50'000 documents) as objects. When I run it I get the error finished with status: 'response error'
.
This only happens when I export all of the data, when a limit (up to 20'000) is applied it works without problem. This lets me think that the response might be too big, but there is no info in the logs about this at all. Also adding try / catch does not work. In the console I only get the above message without any further indication.
I know that functions normally log when timeout is hit or the memory exceeded, so I am wondering what else could be the source of error.
exports.run = functions.runWith({ timeoutSeconds: 540, memory: '8GB' }).https.onRequest(async (req, res) => {
try {
const querySnap = await db.collection("myData").get();
const data = querySnap.docs.map(doc => doc.data());
return res.status(200).json({
data: data
}).end();
} catch (err) {
console.log(err);
return res.status(400).end();
}
});
EDIT: It is indeed the size of the response that causes this error. You can reproduce this if you simply return data of given size (with Buffer.alloc(bytes)
).
1 Answer
Reset to default 14I thins you hit the max HTTP response size which is 10 MB for HTTP functions
Reference : https://cloud.google./functions/quotas#resource_limits with the screenshot below take from that ref.
本文标签: javascriptFirebase Cloud Function finished with status 39response error39Stack Overflow
版权声明:本文标题:javascript - Firebase Cloud Function finished with status: 'response error' - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743649821a2516128.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论