首页 > 其他分享 >Udemy AWS SAA - EBS, AMI, EFS

Udemy AWS SAA - EBS, AMI, EFS

时间:2024-04-07 18:12:15浏览次数:13  
标签:AMI SSD SAA EFS volume instance EBS performance

EBS (Elastic Block Store) Volume

  • it is a network drive you can attach to you instances while they run
  • it allows you instances to persist data, even after their termination. Just like a "network USB stick" (not physical)
  • they can only be mounted to one instance at a time. And it is bound to a specific availability zone

EBS - Delete on Termination Attribute

  • can control preserve root volume when instance is terminated

EBS Snapshots

  • Make a backup (snapshot) of your EBS volume at a point in time
  • You can copy snapshot from AZ to AZ
  • You can archive it so cheaper, it take 24-72 hrs for restoring the archive
  • You can recover deleted snapshots from recycle bin
  • FSR (Fast Snapshot Restore): force full initialization of snapshot to have no latency on the first use, but very expensive

AMI

  • Amazon Machine Image, a customization of an EC2 instance, you can add your own software, configuration, OS, monitoring, so that faster boot / config time bc all your software is pre-packaged
    • Public AMI: AWS provided;
    • Your own AMI: make and maintain them yourself;
    • An AWS marketplace AMI: AMI made by someone else

AMI Process

EC instance store

  • EBS volumes are good but (it's network drive) limited performance
  • So we need a high-performance in I/O hardware disk, use EC2 instance store. But it lose storage if they are stopped, so ephemeral, only good for buffer / cache / scratch data / temporary content
  • risk of data loss if hardware fails, so need to backup and replicate

EBS Volume Types

  • gp2/gp3 (SSD): General purpose SSD volume that balances price and performance fora wide variety of workloads

  • iol /io2 (SSD): Highest-performance SSD volume for mission-critical low-latency or high-throughput workloads

  • stl (HDD): Low cost HDD volume designed for frequently accessed, throughput-intensive workloads

  • scl (HDD): Lowest cost HDD volume designed for less frequently accessed workloads

  • only gp2 / gp3 and io1 / io2 can be used as boot volumes

EBS Volume Use Case

  • GP: gp3 can increase IOPS and throughput independently, but gp2's volume size and IOPS are linked
  • Provisioned IOPS SSD: great for database workload (sensitive to storage performance and consistency)
  • HHD: hard disk drives, cannot be a boot volume

Multi-attach feature of EBS, only available to io1/io2

  • It allows us attach same EBS volume to multiple EC2 instances in the same AZ
  • it's up to 16 EC2 instances at a time
    can achieve higher application availability in clustered linux app

EBS Encryption

  • When you create an encrypted EBS volume, you get the following:
    • Data at rest is encrypted inside the volume
    • All the data in fight moving between the instance and the volume is encrypted
    • All snapshots are encrypted
    • All volumes created from the snapshot
  • Encryption and decryption are handled transparently (you have nothing todo)
  • Encryption has a minimal impact on latency
  • EBS Encryption leverages keys from KMS (AES-256)

标签:AMI,SSD,SAA,EFS,volume,instance,EBS,performance
From: https://www.cnblogs.com/miramira/p/18119619

相关文章

  • Java商城免费搭建 VR全景商城 saas商城 b2b2c商城 o2o商城 积分商城 秒杀商城 拼团商
     1.涉及平台平台管理、商家端(PC端、手机端)、买家平台(H5/公众号、小程序、APP端(IOS/Android)、微服务平台(业务服务) 2.核心架构SpringCloud、SpringBoot、Mybatis、Redis3.前端框架VUE、Uniapp、Bootstrap/H5/CSS3、IOS、Android、小程序4.核心思想分布式、微服务......
  • 新零售SaaS架构:客户管理系统架构设计(万字图文总结)
    什么是客户管理系统?客户管理系统,也称为CRM(CustomerRelationshipManagement),主要目标是建立、发展和维护好客户关系。CRM系统围绕客户全生命周期的管理,吸引和留存客户,实现缩短销售周期、降低销售成本、增加销售收入的目的,从而提高企业的盈利能力和竞争力。CRM系统以客户数据为......
  • B/S架构SaaS模式 医院云HIS系统源码,自主研发,支持电子病历4级
    B/S架构SaaS模式医院云HIS系统源码,自主研发,支持电子病历4级系统概述:一款满足基层医院各类业务需要的云HIS系统。该系统能帮助基层医院完成日常各类业务,提供病患挂号支持、病患问诊、电子病历、开药发药、会员管理、统计查询、医生站和护士站等一系列常规功能,还能与公卫、PAC......
  • 【VMware vCenter】修改vCenter Server管理后台VAMI登录用户ROOT的密码策略。
    vCenterServer作为家庭实验室环境时,可以设置一个简单且容易记住的密码,而不需要考虑那么多的安全性要求。默认情况下,vCenter的密码强度要求比较高,SSO用户还好可以修改,VAMI账户root并没有提供可以修改的地方。vCenter的SSO用户密码策略可以在vSphereClient-系统管理-SingleSign......
  • .NET 代理模式(二) 动态代理-DynamicProxy
    前言我们都知道,在.NET中实现动态代理AOP有多种方案,也有很多框架支持,但大多框架的实现原理都是通过Emit配合Activator一起使用,从IL级别上实现动态代理。其实在.NET中有一个更为简单的方案可以实现动态代理,那就是DispatchProxy类。DispatchProxy类DispatchProxy类是.NETCor......
  • Udemy AWS SAA - Private vs Public IP (IPv4)
    IPv4[0-255].[0-255].[0-255].[0-255]uniqueacrossthewholeweb,canbegeo-locatedeasily**PrivateNetwork:**everyoneinthenetworkcantalktoeachotheruniqueacrossprivatenetworkmachinesconnecttoWWWusingaNAT+internetgateway(aproxy)......
  • [Paper Reading] VQ-GAN: Taming Transformers for High-Resolution Image Synthesis
    名称[VQ-GAN](TamingTransformersforHigh-ResolutionImageSynthesis)时间:CVPR2021oral21.06机构:HeidelbergCollaboratoryforImageProcessing,IWR,HeidelbergUniversity,GermanyTL;DRTransformer优势在于能较好地长距离建模sequence数据,而CNN优势是天生对局部......
  • Udemy AWS SAA - EC2
    172+198=37037/370EC2=ElasticComputeCloud=InfrastructureasaServiceItmainlyconsistsinthecapabilityof:Rentingvirtualmachines(EC2)wecanchooseOSofthevirtualmachine,howmuchcomputepowerofaCPU,howmuchRAMwecanchoosehow......
  • Udemy AWS SAA - Intro and IAM
    HowtochooseanAWSRegionifyouneedtolaunchanewappCompliance:withdatagovernanceandlegalrequirement,dataneverleavesaregionw/oyourexplicitpermissionProximity:tocustomers,toreducelatencyAvailableservices:someregiondoesn&#......
  • AcWing—最短Hamilton路径
    91.最短Hamilton路径-AcWing题库所需知识:二进制状态压缩,动态规划假设现在有六个点:j/i012345002451312065312460832355805441335035312430起点为0终点为5,假设现在走到终点前一点,不妨设该点为4,即现在要确定从0到4,最少要走多远,起点为1终点为4,现有六条路可以选择:first:0–......