본문 바로가기

전체 글12

#5 Lambda @Severless 란 무엇인가? -New paradigm in which the developers don't have to mange severs anymore. -Just deploy code -Just deploy functions - Severless == FaaS (Function as a Service) - 서버리스 라고 해서 서버가 없는것이 아니다. 우리가 (End user) manage/provision/ 서버를 직접 보는것 을 못할뿐이다. + 1. 서버리스 컴퓨팅 (Serverless Computing) 전통적으로 웹 기반으로 서비스를 만든다고 하면 클라이언트와 서버, 즉 프론트엔드와 백엔드를 각각 다루게 된다. 그 중에서도 서버 쪽을 보면, 물론 서버 사이드 프로그래밍 언어를 이용해 .. 2020. 12. 19.
#4 ECS @시작하기 전 Docker 란 무엇인가? Docker is software development platform to deploy apps Apps 은 'containers' 라고 불리는데 저장되고, 어떠한 OS 에서도 실행이 가능하다. Apps are the same, regardless of where they're run. -no compability(호환성) issue. -containers 스케일 조정 매우 쉬움 AWS 에서 Docker를 사용할수 있다. 바로 'ECS' #Elastic Container Service (시험나옴) -Lunch docker container on AWS -사용하기 위해선 EC2 instance 를 먼저 만들어야됨 ----------------------------.. 2020. 12. 19.
File Management File Manager -File management system (Software) File access responsibilities -Creating, deleting, modifying, controlling Four tasks -storage tracking -파일이 어떻게 저장되는지, 어떻게 효율적으로 공간에 저장하는지 -효율적 파일 엑세스 -File allocation and File deallocation Policy determines -File storage location -System and user access Access to material 1. flexibility of access to information -Share files -Provide distributed acc.. 2020. 11. 25.
RAID RAID -Physical disk drive set viewed as a single logical unit RAID 0 bit stripping / No parity 디스크 드라이브 마다 strip을 나눠서 할당 EX)디스크가 4개면 스트립을 4개로 할당하여 한번에 읽음 근데 이중 디스크 하나가 고장나면 한번에 읽어야되는데 못읽게됨 Benefit -Device appear as one logical unit -Best for large data quantity: non-critical data(별로 안 중요한 데이터) RAID 1 Mirroring RAID 4 블록 단위로 분산 stripping / parity strip Avoid level 4 bottleneck Complicated to rege.. 2020. 11. 25.