Slide 29
Slide 29 text
© 2023, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2023, Amazon Web Services, Inc. or its affiliates. All rights reserved.
SIGTERM をきちんとハンドリングできる
アプリケーションを実装する
• SIGTERM を受け取ったら
終了処理をおこなう実装を追加する
• 処理中のデータの取り扱いまで含めて
設計で考慮する
• Web アプリのフレームワークなどで
⼀定程度終了処理が実装済みなことも
process.on('SIGTERM', () => {
console.log('Caught SIGTERM, shutting down');
// TODO: ここで何か処理する
process.exit(0);
});
Node.js での例