2022-03-08から1日間の記事一覧

{EventBridge}Amazon EventBridge イベントのアーカイブと再生

AWS

https://docs.aws.amazon.com/ja_jp/eventbridge/latest/userguide/eb-archive.html イベントは、必ずしもアーカイブに追加された順序通りに再生されるわけではありません。再生では、イベント内の時間に基づいて再生するイベントを処理し、1 分間隔で再生し…

{EventBridge}スケジュールに従って実行する Amazon EventBridge ルールの作成

AWS

https://docs.aws.amazon.com/ja_jp/eventbridge/latest/userguide/eb-create-rule-schedule.html cron 式の日フィールドと曜日フィールドを同時に指定することはできません。一方のフィールドに値または * (アスタリスク) を指定する場合、もう一方のフィー…

SQLチューニング(update文のwhere条件に更新テーブル追加)

DB

MySQL (8.0.26) drop table tab1;create table tab1( col1 bigint ,col2 bigint ); drop table tab2;create table tab2( col1 bigint ,col2 bigint ); drop table tab3;create table tab3( col1 bigint ,col2 bigint ); drop procedure proc1; delimiter //c…

SQLチューニング(ビューマージの抑止)

DB

MySQL (8.0.26) drop table tab1;create table tab1( col1 bigint ); drop table tab2;create table tab2( col1 bigint ); drop table tab3;create table tab3( col1 bigint ); drop table tab4;create table tab4( col1 bigint ); drop procedure proc1; de…

{EventBridge}イベントに反応する Amazon EventBridge ルールの作成

AWS

https://docs.aws.amazon.com/ja_jp/eventbridge/latest/userguide/eb-create-rule.htmlhttps://docs.aws.amazon.com/ja_jp/eventbridge/latest/userguide/eb-putevents.html#eb-send-events-aws-cli ターゲットをLambda関数とするルールを作成し、テストイ…