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
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
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
AWS Security Agent といっしょに脅威モデリングをやってみよう
amarelo_n24
1
180
When Platform Engineering Meets GenAI
sucitw
0
130
ロボティクスの技術 / Robotics Technology
ks91
PRO
0
110
気軽に使える"情報のハブ"としてのNotion活用 〜フロー情報の集積点 と、 Claude Code × Notion AI〜
syucream
1
150
【Snowflake Summit 2026 Recap!!】Snowflake Summit Deep Dive: Security & Governance
civitaspo
1
270
PostgreSQL 19 新機能概要 OSC Hokkaido 2026
nori_shinoda
0
130
Oracle Cloud Infrastructure:2026年6月度サービス・アップデート
oracle4engineer
PRO
0
130
10年間のブログ発信を振り返って見えたWebアプリケーションエンジニアとしての軌跡
stefafafan
0
160
AIAU_UMEMOGU_ninomiya_slide
ninomiya_ii
0
240
【Cyber-sec+】経営層を"動かす"ための考え方
hssh2_bin
0
200
AIチャット検索改善の3週間
kworkdev
PRO
2
140
現地で盛り上がった WWDC26 Keynote
zozotech
PRO
1
270
Featured
See All Featured
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
170
Lightning Talk: Beautiful Slides for Beginners
inesmontani
PRO
2
580
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.2k
SEO Brein meetup: CTRL+C is not how to scale international SEO
lindahogenes
1
2.7k
A better future with KSS
kneath
240
18k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
950
KATA
mclloyd
PRO
35
15k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
25k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
360
30k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Navigating Team Friction
lara
192
16k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
2
300
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