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
82
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
110
AWS re:Invent 2025 Apache Iceberg Recap
shigeruoda
1
110
Amazon Athena で JSON・Parquet・Iceberg のデータを検索し、性能を比較してみた
shigeruoda
1
590
Amazon S3標準/ S3 Tables/S3 Express One Zoneを使ったログ分析
shigeruoda
6
980
CFP選定とタイムテーブル決めについて
shigeruoda
0
200
今年前半のAWSアップデートを振り返り
shigeruoda
0
160
#31 JAWS-UG主催 週刊AWSキャッチアップ (2024/5/6週)
shigeruoda
0
230
#30 JAWS-UG主催 週刊AWSキャッチアップ(2024/4/29週)
shigeruoda
0
190
#28 JAWS-UG主催 週刊AWSキャッチアップ(2024/4/15週)
shigeruoda
0
220
Other Decks in Technology
See All in Technology
攻撃と防御で学ぶAI時代のプロダクトセキュリティ演習
recruitengineers
PRO
9
2.9k
ソフトウェアサプライチェーンの構造的リスクとコンテナ環境の保護
kyohmizu
3
290
トヨタ⽣産⽅式(TPS)⼊⾨
recruitengineers
PRO
3
890
【CEDEC2026】コードレビュー支援ツール開発から学ぶ:LLMを用いた業務システムの実践的な運用設計と誤出力対策
cygames
PRO
0
820
強化学習「理論」入門
enakai00
3
3.6k
事業価値と Engineering 2026年度版
recruitengineers
PRO
50
24k
私がブラウザを自作したくなった理由
supurazako
1
240
AIのためのEthernet技術動向 (SerDes)
markunet
1
100
Data Hubグループ 紹介資料
sansan33
PRO
0
3.2k
Bill One 開発エンジニア 紹介資料
sansan33
PRO
7
19k
Goでデータパイプラインを作ろう
sansantech
PRO
1
470
名刺メーカーDevグループ 紹介資料
sansan33
PRO
0
1.2k
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1.5k
The Curious Case for Waylosing
cassininazir
1
460
Testing 201, or: Great Expectations
jmmastey
46
8.2k
Lightning talk: Run Django tests with GitHub Actions
sabderemane
0
230
The Invisible Side of Design
smashingmag
301
52k
How to Align SEO within the Product Triangle To Get Buy-In & Support - #RIMC
aleyda
2
1.8k
Chasing Engaging Ingredients in Design
codingconduct
0
270
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
63
45k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.5k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
32
3k
Code Reviewing Like a Champion
maltzj
528
40k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
73
41k
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