AWS Cloud Cost Optimization

aws-cloud-cost-optimization

Challenge: Reduce the AWS Cloud Operating cost without compromising any existing feature

Steps:

  1. Switch to 8×5 from 24×7 in Dev and QA Environments​
  2. Use the correct size of Serves in Dev and QA based on the load​
  3. Avoid using same server configuration like Prod in Dev and QA​
  4. Create Lifecycle rules and auto-shutdown feature for Servers ( SQL Analytics, SageMaker, S3 …. )​
  5. Minimise Operational Maintenance activities
Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
understanding-jwt:-basics-of-authentication-and-algorithms

Understanding JWT: Basics of Authentication and Algorithms

Next Post
functional-options-pattern-in-go

Functional Options Pattern in Go

Related Posts
5章5

5章5

このJavaコードのスニペットには、ItemクラスとMainクラスの2つのクラスが含まれています。ItemクラスにはnameというString型の変数とpriceというint型の変数があり、priceは100に初期化されています。 Mainクラスにはmainメソッドがあり、ここでプログラムが実行されます。mainメソッドはItemオブジェクトの配列itemsを作成し、その長さを3に設定します。その後、整数型の変数totalを0で初期化し、forループを使用して各Itemオブジェクトのpriceをtotalに加算します。 しかし、このコードにはItemオブジェクトを実際にitems配列に割り当てるコードがありません。つまり、items配列にはデフォルトでnullが設定されているため、Itemのインスタンスが存在せず、items[i].priceを参照しようとするとNullPointerExceptionが発生します。 そのため、選択肢E「実行時に例外がスローされる」という答えが正しいです。Itemオブジェクトがitems配列に割り当てられていないため、forループの実行時にnullのpriceにアクセスしようとして例外がスローされます。 コードにコメントを加えて説明すると以下のようになります: public class Item { String name; // 商品名を保存する変数 int price = 100; //…
Read More