#cloud functions謎のエラーの原因は?
console
1Error: Process exited with code 16 2 at process.on.code (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/invoker.js:275:22) 3 at process.emit (events.js:198:13) 4 at process.EventEmitter.emit (domain.js:448:20) 5 at process.exit (internal/process/per_thread.js:168:15) 6 at Object.sendCrashResponse (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/logger.js:37:9) 7 at process.on.err (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/invoker.js:271:22) 8 at process.emit (events.js:198:13) 9 at process.EventEmitter.emit (domain.js:448:20) 10 at emitPromiseRejectionWarnings (internal/process/promises.js:140:18) 11 at process._tickCallback (internal/process/next_tick.js:69:34)
cloud functionsでmonthCountEvents
関数をデプロイすると、monthCountEvents
が発動するたびにこのようなエラーが発生します。
このエラーの原因は何でしょうか?
#何を実現したいか?
Firebase 要素の数をカウントするなら、最初からこの方法でいきましょう!(Cloud Functions)
☝️上記の記事を参考に、Firestoreのドキュメントの数をカウントしています。
users/{userId}/events/{eventId}
のドキュメントに変化があった場合、Firestore内のドキュメントフィールド2箇所にカウントを記録します。
typescript
1exports.monthCountEvents = functions.region('asia-northeast1').firestore 2 .document('users/{userId}/events/{eventId}') 3 .onWrite((change, context) => {
#該当のコード
ほぼ同じようなコードでも、エラーが**「発生しないパターン」と「発生するパターン」**があります。。。😟
##エラーが発生しないパターン
typescript:functions/index.ts
1import * as functions from 'firebase-functions'; 2import * as admin from 'firebase-admin'; 3admin.initializeApp(); 4const db = admin.firestore(); 5 6// // Start writing Firebase Functions 7// // https://firebase.google.com/docs/functions/typescript 8 9// eventが作成された時にカウントする 10exports.countEvents = functions.region('asia-northeast1').firestore 11 .document('users/{userId}/events/{eventId}') 12 .onWrite((change, context) => { 13 14 let periods: boolean; 15 let dayEventCounts: number; 16 if (!change.before.exists) { 17 periods = change.after.get('periods'); 18 dayEventCounts = change.after.get('dayEventCounts'); 19 } else { 20 periods = change.before.get('periods'); 21 dayEventCounts = change.before.get('dayEventCounts'); 22 } 23 24 const userId = context.params.userId; 25 const FieldValue = admin.firestore.FieldValue; 26 const countsRef = db.collection('users').doc(userId); 27 28 if (!change.before.exists && !periods) { 29 // 登録時に件数をインクリメント 30 countsRef.update({ eventCount: FieldValue.increment(dayEventCounts) }); 31 return 32 } else if (change.before.exists && !change.after.exists && !periods) { 33 // 削除時に件数をデクリメント 34 countsRef.update({ eventCount: FieldValue.increment(-dayEventCounts) }); 35 return 36 } 37 return; 38 }); 39 40exports.monthCountEvents = functions.firestore.document('users/RmSJbxK2A2QNWZbm2nLQwEr7tNw2/events/{eventId}') 41 .onWrite((change) => { 42 let pushMonths: any; 43 let periods: boolean; 44 let dayEventCounts: number; 45 if (!change.before.exists) { 46 pushMonths = change.after.get('pushMonths'); 47 periods = change.after.get('periods'); 48 dayEventCounts = change.after.get('dayEventCounts'); 49 } else { 50 pushMonths = change.before.get('pushMonths'); 51 periods = change.before.get('periods'); 52 dayEventCounts = change.before.get('dayEventCounts'); 53 } 54 55 const FieldValue = admin.firestore.FieldValue; 56 const countsRef = db.collection(`users/RmSJbxK2A2QNWZbm2nLQwEr7tNw2/counts`).doc(pushMonths); 57 countsRef.get().then((docSnapshot) => { 58 if (!docSnapshot.exists) { 59 countsRef.set({ monthCount: 1, monthDate: pushMonths }); 60 } 61 }); 62 63 if (!change.before.exists && !periods) { 64 // 登録時に件数をインクリメント 65 return countsRef.update({ monthCount: FieldValue.increment(dayEventCounts) } ); 66 } else if (change.before.exists && !change.after.exists && !periods) { 67 // 削除時に件数をデクリメント 68 return countsRef.update({ monthCount: FieldValue.increment(-dayEventCounts) }); 69 } 70 return 71 })
このmonthCountEvents
はなんのエラーもなく発動します。
これはテスト用なので、自分のuidを指定してonWrite
がトリガーするようにしています。
##エラーが発生するパターン
typescript:functions/index.ts
1import * as functions from 'firebase-functions'; 2import * as admin from 'firebase-admin'; 3admin.initializeApp(); 4const db = admin.firestore(); 5 6// // Start writing Firebase Functions 7// // https://firebase.google.com/docs/functions/typescript 8 9// eventが作成された時にカウントする 10exports.countEvents = functions.region('asia-northeast1').firestore 11 .document('users/{userId}/events/{eventId}') 12 .onWrite((change, context) => { 13 14 let periods: boolean; 15 let dayEventCounts: number; 16 if (!change.before.exists) { 17 periods = change.after.get('periods'); 18 dayEventCounts = change.after.get('dayEventCounts'); 19 } else { 20 periods = change.before.get('periods'); 21 dayEventCounts = change.before.get('dayEventCounts'); 22 } 23 24 const userId = context.params.userId; 25 const FieldValue = admin.firestore.FieldValue; 26 const countsRef = db.collection('users').doc(userId); 27 28 if (!change.before.exists && !periods) { 29 // 登録時に件数をインクリメント 30 countsRef.update({ eventCount: FieldValue.increment(dayEventCounts) }); 31 return 32 } else if (change.before.exists && !change.after.exists && !periods) { 33 // 削除時に件数をデクリメント 34 countsRef.update({ eventCount: FieldValue.increment(-dayEventCounts) }); 35 return 36 } 37 return; 38 }); 39 40exports.monthCountEvents = functions.region('asia-northeast1').firestore 41 .document('users/{userId}/events/{eventId}') 42 .onWrite((change, context) => { 43 44 let pushMonths: any; 45 let periods: boolean; 46 let dayEventCounts: number; 47 if (!change.before.exists) { 48 pushMonths = change.after.get('pushMonths'); 49 periods = change.after.get('periods'); 50 dayEventCounts = change.after.get('dayEventCounts'); 51 } else { 52 pushMonths = change.before.get('pushMonths'); 53 periods = change.before.get('periods'); 54 dayEventCounts = change.before.get('dayEventCounts'); 55 } 56 57 const userId = context.params.userId; 58 const FieldValue = admin.firestore.FieldValue; 59 const monthCountRef = db.collection(`users/${userId}/counts`).doc(pushMonths); 60 monthCountRef.get().then((docSnapshot) => { 61 if (!docSnapshot.exists) { 62 monthCountRef.set({ monthCount: 1, monthDate: pushMonths }); 63 } 64 }); 65 66 if (!change.before.exists && !periods) { 67 // 登録時に件数をインクリメント 68 return monthCountRef.update({ monthCount: FieldValue.increment(dayEventCounts) }); 69 } else if (change.before.exists && !change.after.exists && !periods) { 70 // 削除時に件数をデクリメント 71 return monthCountRef.update({ monthCount: FieldValue.increment(-dayEventCounts) }); 72 } 73 return; 74 });
このmonthCountEvents
は本番用なので、自分のuidではなくワイルドカードを使い、onWrite
をトリガーしています。
何が違って、何が原因なのかさっぱりわかりません。。。
どなたかご教授ください!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。