Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
JAWS-UG主催 週刊AWSキャッチアップ(2024/02/12週)
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
ShigeruOda
February 23, 2024
Technology
78
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
JAWS-UG主催 週刊AWSキャッチアップ(2024/02/12週)
https://jaws-ug.doorkeeper.jp/events/170048
ShigeruOda
February 23, 2024
More Decks by ShigeruOda
See All by ShigeruOda
JAWS-UG クラウド女子会×初心者支部 コラボ会 ~子連れ参加ウェルカム勉強会!
shigeruoda
0
96
AWS re:Invent 2025 Apache Iceberg Recap
shigeruoda
1
98
Amazon Athena で JSON・Parquet・Iceberg のデータを検索し、性能を比較してみた
shigeruoda
1
570
Amazon S3標準/ S3 Tables/S3 Express One Zoneを使ったログ分析
shigeruoda
6
960
CFP選定とタイムテーブル決めについて
shigeruoda
0
190
今年前半のAWSアップデートを振り返り
shigeruoda
0
150
#31 JAWS-UG主催 週刊AWSキャッチアップ (2024/5/6週)
shigeruoda
0
220
#30 JAWS-UG主催 週刊AWSキャッチアップ(2024/4/29週)
shigeruoda
0
180
#28 JAWS-UG主催 週刊AWSキャッチアップ(2024/4/15週)
shigeruoda
0
210
Other Decks in Technology
See All in Technology
AIAU_UMEMOGU_ninomiya_slide
ninomiya_ii
0
240
SONiCの統計情報を取得したい
sonic
0
230
失敗を資産に変えるClaude Code
shinyasaita
0
720
白金鉱業Meetup_Vol.24_「AIエージェントは分けるほど良い」は本当か? / Is it true that “the more you divide AI agents, the better”?
brainpadpr
1
410
自分が詳しくない領域でAIを使う #プロヒス2026
konifar
13
5.1k
攻撃者視点で考えるDetection Engineering
cryptopeg
3
2k
日本 Fintech 未来予測レポート 2027〜2028年(手動編集版)
8maki
1
2.5k
ザ・データベース、MySQL ~ OSC 2026 Sendai ~
sakaik
0
140
ぼっちではじめた登壇が「51名」「241件」の発信に化けた
subroh0508
1
240
[チョークトーク資料]AWS DevOps Agent を使いこなす / AWS Dev Ops Agent Chalk Talk AWS Summit Japan 2026
kinunori
3
560
2026TECHFRESH畢業分享會 - Lightning Talk - 資料也要 CI/CD? 用 Airbyte 自動化資料同步
line_developers_tw
PRO
0
1.3k
2026TECHFRESH畢業分享會 - 葬送的通靈師:化系統與用戶雜訊成行動訊號
line_developers_tw
PRO
0
1.3k
Featured
See All Featured
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
1
260
JAMstack: Web Apps at Ludicrous Speed - All Things Open 2022
reverentgeek
1
480
Intergalactic Javascript Robots from Outer Space
tanoku
273
27k
Chasing Engaging Ingredients in Design
codingconduct
0
220
Marketing Yourself as an Engineer | Alaka | Gurzu
gurzu
0
240
Done Done
chrislema
186
16k
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
440
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.5k
The Cost Of JavaScript in 2023
addyosmani
55
10k
Gemini Prompt Engineering: Practical Techniques for Tangible AI Outcomes
mfonobong
2
440
The browser strikes back
jonoalderson
0
1.3k
Noah Learner - AI + Me: how we built a GSC Bulk Export data pipeline
techseoconnect
PRO
0
200
Transcript
週刊AWS 2024.02.12週
AWS Wickr で、StandardプランとPremiumプランの機能を最大3ヶ月間 無料で試すことができる拡張フリートライアル体験(enhanced free trial experience)が利用可能になりました。Wickrはエンドツーエンドの暗号 化されたメッセージングとコラボレーションを支援するサービスです。 AWS Wickr
now allows you to try premium features for free
AWS Wickr now allows you to try premium features for
free
AWS Wickr now allows you to try premium features for
free
AWS Wickr now allows you to try premium features for
free
Amazon DocumentDB (MongoDB互換性) で、テキスト検索がサポート されました。フィールドにインデックスを作成しておくことで高速なテ キスト検索を実現します。Amazon DocumentDB 5.0以降で利用可能で あり、現時点では英語のみのサポートです。 Amazon
DocumentDB (with MongoDB compatibility) now supports text search
Amazon DocumentDB (with MongoDB compatibility) now supports text search
Amazon DocumentDB (with MongoDB compatibility) now supports text search
Amazon DocumentDB (with MongoDB compatibility) now supports text search
Comments項目にindex作成 db.test.createIndex({"comments": "text"}) Amazon DocumentDB (with MongoDB compatibility) now supports
text search
データ格納 db.test.insertMany([ {"_id":1, "star_rating":4, "comments":"リンゴは赤い"},{"_id":2, "star_rating":5, "comments":"pie is delicious"}, {"_id":3,
"star_rating": 3, "comments": "パイはおいしい:3, "comments": "りんご、オレンジはヘルシー:"apples, oranges - healthy fruit"}, {"_id":4, "star_rating":2, "comments": "アップルパイを焼く:"bake the apple pie in the oven"}, {"_id":5, "star_rating": 5, "comments": "アップルパイをオーブンで焼く:5, "comments": "面白いソファ":"interesting couch"}, {"_id":6, "star_rating":5、"コメント":"2022年に販売されるカウチに興味がある"}]) Amazon DocumentDB (with MongoDB compatibility) now supports text search
検索 db.test.find({$text:{$search: " apple pie "}}) 結果 { "_id" :
1, "star_rating" : 4, "comments" : "apple is red" } { "_id" : 2, "star_rating" : 5, "comments" : "pie is delicious" } { "_id" : 3, "star_rating" : 3, "comments" : "apples, oranges - healthy fruit" } { "_id" : 4, "star_rating" : 2, "comments" : "bake the apple pie in the oven" } Amazon DocumentDB (with MongoDB compatibility) now supports text search
Amazon DocumentDB (with MongoDB compatibility) now supports text search
Amazon DocumentDB にメンテナンス通知の機能が追加されました。こ れにより、AWS Health DashboardやEメールを通じて、スケジュール されたメンテナンスアクティビティについて通知を受け取ることができ るようになります。 Amazon DocumentDB
(with MongoDB compatibility) now supports maintenance notifications
・1.AWS Health Dashboard ・2.Eメール ・3.Amazon EventBridge ・ChatBot ・Lambda、など RDSでの観点ですが ”予定”ではなく”即時”で対応することが必要なモノは通知されない場合
がある。上記3点の全てに通知がこない場合がある。 Amazon DocumentDB (with MongoDB compatibility) now supports maintenance notifications
AWS AppSync で使用状況とパフォーマンスのより詳細な可視化を実現 するために、より多くのメトリクスが提供されるようになりました。利 用者のメトリクスの拡張として、リクエストとエラーのカウント、レイ テンシー、キャッシュヒット/ミスの詳細なビューといった新しいオプシ ョンを含むようになりました。また、ネットワーク/CPUスループットの 問題を診断する際に役立つ2つのキャッシュメトリクスも追加されまし た。詳細はこちらのドキュメントをご覧ください。 AWS
AppSync introduces 12 new Amazon CloudWatch metrics for enhanced monitoring
AWS AppSync introduces 12 new Amazon CloudWatch metrics for enhanced
monitoring
AWS AppSync introduces 12 new Amazon CloudWatch metrics for enhanced
monitoring
AWS AppSync introduces 12 new Amazon CloudWatch metrics for enhanced
monitoring
AWS AppSync introduces 12 new Amazon CloudWatch metrics for enhanced
monitoring
AWS AppSync introduces 12 new Amazon CloudWatch metrics for enhanced
monitoring
Amazon EMR Step(EMRのジョブ管理の単位)のAPIであるDescribeStep とListStepで、過去7日間に完了した最大10,000ステップの取得をサポ ートするようになりました(以前は1,000ステップまででした)。 Amazon EMR on EC2 now
supports retrieval of 10,000 steps completed within last 7 days
Amazon EMR on EC2 now supports retrieval of 10,000 steps
completed within last 7 days
Amazon EMR on EC2 now supports retrieval of 10,000 steps
completed within last 7 days
Amazon EMR on EC2 now supports retrieval of 10,000 steps
completed within last 7 days
Amazon Redshiftで INTERVAL データ型がサポートされました。これは 期間(レンジ)を表現するための型です。例えば12時間、6週間、1ヶ月 などを定義できます。 Amazon Redshift announces support
for the INTERVAL data type and Continue Handler statements in stored procedure
Amazon Redshift announces support for the INTERVAL data type and
Continue Handler statements in stored procedure
Amazon OpenSearch Service でブルー/グリーンデプロイメント (Blue/Green deployment)を必要とせずに、クラスターのボリュームサイ ズ、ボリュームタイプ、IOPS、スループットを変更できるようになりま した。ブルー/グリーンデプロイメントの場合、別クラスターを新しい設 定で平行して起動してから移行しますが、こういった手間や時間をかけ ることなく変更が可能になりました。
Amazon OpenSearch Service now lets you update cluster volume without blue/green
Amazon OpenSearch Service now lets you update cluster volume without
blue/green
Amazon OpenSearch Service now lets you update cluster volume without
blue/green
Amazon OpenSearch Serverless で TLS 1.3 が利用可能になり、合わせ て perfect forward
secrecy もサポートされるようになりました。これは 暗号化プロトコルの仕様として、仮に秘密キーが漏洩した場合でも、以 前のセッションで暗号化されたデータの安全性を守るように鍵を利用す る手法であり、外部からのアタックに対してより堅牢な通信を実現しま す。 Amazon OpenSearch Serverless now supports TLS 1.3 and perfect forward secrecy
API Gatewayが TLS 1.3 をサポートしました。これによりラウンドトリ ップ(1-RTT)の TLS ハンドシェイクを使うことによるパフォーマンスを 最適化と、前述の OpenSearch
Service と同様に perfect forward secrecy をサポートする暗号のみを使うことで、セキュリティの強化を提供しま す。 API Gateway now supports TLS 1.3
Amazon Relational Database Service (Amazon RDS) for Db2 がデータベ ースの監査ログをサポートするようになりました。これを有効化するこ
とで、 IBM Db2 ネイティブの監査機能が利用可能になります。監査ロ グは Amazon S3 に格納されます。詳細はこちらのドキュメントを参照 してください。 Amazon RDS for Db2 now supports audit logging
Amazon MSK がTiered Storage対応クラスターにおいて、インプレース バージョンアップグレードをサポートしました、v2.8.2.tieredを使用し ているクラスターは、最新のApache Kafka 3.6.0にアップグレードでき るようになりました。v3.6.0はTiered Storageの本番環境グレード
(production-grade Tiere)での稼働サポートが含まれています。 Amazon MSK now supports in-place version upgrades for Tiered Storage enabled clusters
Amazon MSK now supports in-place version upgrades for Tiered Storage
enabled clusters
シナリオ ・remote.storage.enable を true ・retention.ms は 5 日間に設定 ・local.retention.ms は
2 日間に設定 Amazon MSK now supports in-place version upgrades for Tiered Storage enabled clusters
Time T0 - 階層型ストレージを有効にする前。 Amazon MSK now supports in-place version
upgrades for Tiered Storage enabled clusters
Time T1 (2 日未満) - 階層型ストレージが有効。セグメント 0 が階層型 ストレージにコピーされます。 Amazon
MSK now supports in-place version upgrades for Tiered Storage enabled clusters
Time T2 - ローカル保持が有効。(二日後) Amazon MSK now supports in-place version
upgrades for Tiered Storage enabled clusters
Time T3 - 全体保持が有効。(五日後) Amazon MSK now supports in-place version
upgrades for Tiered Storage enabled clusters
Amazon Data Firehose (※Amazon Kinesis Data Firehoseから改名されま した) で、Amazon S3バケットへのストリーム配信時に、タイムゾーン
を選択したバケットプレフィックスの作成が可能になりました。これま では日本時刻でPrefixを作成する場合にはLambdaとの組み合わせ等が必 要でしたら、今回の改善で設定のみで利用可能になりました。詳細はこ ちらのドキュメントをご覧ください。 Amazon Data Firehose enables selecting a time zone for bucket prefixes when delivering streams to Amazon S3
FirehoseがAmazon S3にデータを配信する場合 オブジェクトのキー名は<evaluated prefix><suffix>の形式となる <evaluated prefix> YYYY/MM/dd/HH UTC以外のタイムゾーンも設定可能 <suffix> <配信ストリーム名>-<配信ストリームバージョン>-<年>-<月>-<日>-<
時>-<分>-<秒>-<uuid><ファイル拡張子> Amazon Data Firehose enables selecting a time zone for bucket prefixes when delivering streams to Amazon S3