javascript - Error: function crashed out of request scope Function killed - Stack Overflow

When I am importing more than 300 record in firebase using google cloud function than am getting error

When I am importing more than 300 record in firebase using google cloud function than am getting error :

  • Error: function crashed out of request scope Function killed.
  • Function execution took 31903 ms, finished with status: 'connection error'

When I am importing more than 300 record in firebase using google cloud function than am getting error :

  • Error: function crashed out of request scope Function killed.
  • Function execution took 31903 ms, finished with status: 'connection error'
Share edited Aug 9, 2017 at 9:29 KENdi 7,7792 gold badges18 silver badges31 bronze badges asked Aug 9, 2017 at 7:07 Rajendra KumarRajendra Kumar 511 silver badge2 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 11

Without a glimpse into your code, I only can guess. "Function crashed outside of request scope" indicates that the cloud function had finished before the asynchronous function(s) did. See for documentation for handling async functions and promises: https://firebase.google./docs/functions/terminate-functions

Take a closer look at your returns. Make sure you don't forget to return the promise to functions. For an example see also here: https://github./firebase/firebase-functions/issues/18#issuement-288375709

I had the same problem and it ended up being a problem with the mysql connection I was using in the project.

In this case I used https://www.npmjs./package/mysql2 and the system was losing connections to the database.

It was not clear where it was happening and I got the following errors and no indication where the problem was occurring. - Error: function crashed out of request scope Function killed. - Function execution took 31903 ms, finished with status: 'connection error'

Placing try..catch around the database calls revealed the correct error and location where it was happening.

Yout might have gone passed a limit, please look at https://firebase.google./docs/database/usage/limits.

If this is the case, you could use multiple databases.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743666174a4487007.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信