feat: エラー処理を実装(まだ途中)
This commit is contained in:
parent
add64b3bc8
commit
43d959f669
@ -122,6 +122,18 @@ def substitute_mail_template(mail_template: str, receive_timing: str, mail_msg:
|
||||
return mail_str
|
||||
|
||||
|
||||
def make_failure_item_on_error(message_id: str) -> dict[str, str]:
|
||||
"""Report batch item failuresによる処理に失敗したメッセージの判別のためのレスポンスを作成する
|
||||
@see <https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-batchfailurereporting>
|
||||
Args:
|
||||
message_id (str): SQSメッセージId
|
||||
|
||||
Returns:
|
||||
dict[str, str]: Report batch item failuresで失敗したSQSメッセージを判別するための辞書オブジェクト
|
||||
"""
|
||||
return {"itemIdentifier": message_id}
|
||||
|
||||
|
||||
def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, str]], list[str]]:
|
||||
|
||||
batch_item_failures = []
|
||||
@ -139,11 +151,11 @@ def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, s
|
||||
logger.info(f'受信したメッセージは既に処理済みのため、処理をスキップします。メッセージID: {message_id}')
|
||||
continue
|
||||
except Exception as e:
|
||||
# TODO: エラー処理実装
|
||||
raise e
|
||||
logger.error(f"E-02-01 メッセージ重複チェック処理に失敗しました エラー内容:{e}")
|
||||
batch_item_failures.append(make_failure_item_on_error(message_id))
|
||||
continue
|
||||
|
||||
# SQSパラメータをJSONシリアライズし、Pythonの辞書オブジェクト(イベントパラメータ)を取得する。
|
||||
|
||||
event_parameter = json.loads(record['body'])
|
||||
|
||||
# ③ 設定ファイル[受領チェック対象ファイルリスト]を読み込む
|
||||
@ -158,8 +170,9 @@ def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, s
|
||||
)
|
||||
logger.info('I-03-02 受領チェック対象ファイルリストを読み込みました')
|
||||
except Exception as e:
|
||||
# TODO: エラー処理実装
|
||||
raise e
|
||||
logger.error(f"E-03-01 受領チェック対象ファイルリストの読み込みに失敗しました エラー内容:{e}")
|
||||
batch_item_failures.append(make_failure_item_on_error(message_id))
|
||||
continue
|
||||
|
||||
# ④ 受領チェック処理を行う
|
||||
receive_timing = event_parameter['receive_timing']
|
||||
@ -232,8 +245,10 @@ def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, s
|
||||
mail_title_without_line_break = mail_title.splitlines()[0]
|
||||
logger.info('I-05-04 通知メール(タイトル)テンプレートファイルを読み込みました')
|
||||
except Exception as e:
|
||||
# TODO: エラー処理実装
|
||||
logger.error(f'E-05-01 通知メール(タイトル)テンプレートファイルの読み込みに失敗しました エラー内容:{e}')
|
||||
raise e
|
||||
batch_item_failures.append(make_failure_item_on_error(message_id))
|
||||
continue
|
||||
|
||||
try:
|
||||
logger.info(
|
||||
@ -250,7 +265,8 @@ def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, s
|
||||
logger.info('I-05-06 通知メール(本文)テンプレートファイルを読み込みました')
|
||||
except Exception as e:
|
||||
logger.error(f'E-05-02 通知メール(本文)テンプレートファイルの読み込みに失敗しました エラー内容:{e}')
|
||||
raise e
|
||||
batch_item_failures.append(make_failure_item_on_error(message_id))
|
||||
continue
|
||||
|
||||
logger.info(f'I-05-07 メール送信指示をします 送信先トピック:{MBJ_NOTICE_TOPIC}')
|
||||
params = {
|
||||
@ -267,7 +283,6 @@ def unreceive_check(records: list, execute_month: str) -> tuple[list[dict[str, s
|
||||
|
||||
|
||||
def lambda_handler(event, context):
|
||||
try:
|
||||
# ① 処理開始ログを出力する
|
||||
logger.info('I-01-01 処理開始 Enciseデータ受領チェック処理')
|
||||
# 処理稼働年月を取得しメモリに保持する
|
||||
@ -287,7 +302,5 @@ def lambda_handler(event, context):
|
||||
push_success_messages_to_dynamo_db(batch_item_success)
|
||||
logger.info('I-07-01 処理済みメッセージIDの記録完了')
|
||||
logger.info('I-07-02 処理終了 Enciseデータ受領チェック処理')
|
||||
except Exception as e:
|
||||
logger.exception(f'E-99 想定外のエラーが発生しました エラー内容:{e}')
|
||||
|
||||
return batch_item_failures
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user