Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. # AWS-SA-Notes
  2.  
  3. ## S3: Object based storage
  4. *
  5.  
  6.  
  7. ## CloudFront:
  8. *
  9.  
  10. ##EC2:
  11. ### EC2 Types in pricing
  12. 1. On Demand
  13. 2. Reserver
  14. 3. Spot
  15. 4. Dedicated Hosts
  16.  
  17. ### EC2 types
  18. 1. D (D2) (Storage Optimized) - Dense storage - File server/Data wearehousing
  19. 2. I (I2) (Storage Optimized) - High speed storage - NOSQL DB, Data Warehousing
  20. 3. R (R4) (Memory Optimized) - Memory Optimized - Memory intensive app / DB
  21. 4. T (T2) (General Purpose) - Low cost general purpose - Web server, small DB
  22. 5. M (M4) (General Purpose) - General purpose - Application Server
  23. 6. C (C4) (Compute Optimized) - Compute Optimized - CPU intensive Apps/ DB
  24. 7. G (G2) (GPU Instances) - Graphic intensive - Video encoding/ 3D video steaming
  25. 8. F (F1) - Field programmable gateway - Hardware acceleration for your code
  26. 9. P (P2) (GPU Compute) - Graphics/ General purpose GPU - Machine learning, Bit coin mining
  27. 10. X (X1) (Memory Optimized) - Memory Optimized - SAP HANA/ Apache Spark
  28.  
  29. ### EBS: Block based storage
  30. 1. General Purpose SSD (GP2) - less than 10,000 IOPS
  31. 2. Provisioned IOPS SSD (IO1) - more than 10,000 IOPS - no sql DB or large DB
  32. 3. Throughput optimized HDD (ST1) - Big Data/ Data wearehouse/ Log processing
  33. cannt boot volume
  34. 4. Cold HDD (SC1) - Low coast - File server
  35. cannt boot volume
  36. 5. Magnetic (Standerd) - Lowest, Infrquently data access
  37.  
  38. ### RAID: Redundant Array of Independent Disks
  39. 1. RAID 0 - Striped, No Redundancy, Good Performance - Gaming PC
  40. 2. RAID 1 - Mirrored (copy exact copy to another disk), Redundancy(If one disk failed, you can still use the RAID array using other disk)
  41. 3. RAID 5 - Good for reading, AWS DOESNOT RECOMMAND ever putting Raid 5's on EBS
  42. 4. RAID 10 - Combination of RAID 0 and 1, Striped and Mirrored, Good performance
  43. and good redundency
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement