AWS의 대표적인 서버리스 서비스인 Lambda를 사용하면 다양한 런타임에서 코드를 실행할 수 있습니다. 그러나 공식 제품 설명에는 PHP가 명시적으로 나와 있지 않습니다. Lambdas에서 PHP 코드를 실행할 수 없다는 뜻인가요? 아니요, 그렇지 않습니다!
이 시리즈(AWS 사용자 그룹 Poitiers와의 강연에서 파생됨)에서는 서버리스가 무엇인지, PHP(선호하는 언어인 경우)를 Lambda에서 실행하는 방법에 대해 논의하겠습니다.
서버리스는 클라우드 제공업체가 고객의 워크로드에 할당된 리소스를 동적으로 확장하는 동시에 물리적 인프라(서버, 전력 냉각)뿐만 아니라 실행 런타임(패칭, ..)까지 관리하는 호스팅 패러다임입니다.
엄격한 의미에서 모든 요청에 대해 컴퓨팅이 할당되어 '0으로 축소' 가격 책정 모델(리소스는 시간별로 지불되지 않고 실제 수요에 비례하여만 지불됨)로 이어지는 동시에 기본 제공되는 최고 수준을 제공합니다. -가용성.
이는 클라우드의 다른 이점에 추가되며, 주로 모든 것이 API와 함께 제공되어 자동화가 가능하다는 사실입니다.
이러한 이점이 합쳐져 사실상 무료 기능 분기 임시 환경을 확보할 수 있어 개발자 생산성과 리드 타임이 향상됩니다.
서버리스 생태계에는 다양한 솔루션이 있습니다. 2014년에 서버리스 컴퓨팅(Lambda)이 등장했을 때 관리형 대기열(SQS)은 10년, S3는 8년 동안 존재했습니다.
위 슬라이드에서 Aurora는 0으로 확장되지 않기 때문에 엄격한 서버리스 정의와 일치하지 않습니다(v1은 0으로 확장되지만 시작하는 데 몇 분 정도 걸릴 수 있음, v2의 경우 데이터베이스가 쿼리를 제공할 수 있도록 작성자 및 리더 인스턴스 모두에 최소 0.5 ACU가 있어야 합니다.
아래에서는 서버리스 서비스만 포함하는 웹 애플리케이션을 호스팅하기 위한 일반적인 아키텍처를 확인할 수 있습니다. 제한된 수의 사용자에 대해 이러한 애플리케이션을 호스팅하는 데 드는 비용은 연간 1달러 미만일 수 있습니다.
그렇고..아니요. 이는 마이크로서비스를 염두에 두고 설계되었지만 여전히 모놀리식 아키텍처를 배포할 수 있습니다(새 환경이 시작될 때마다 장시간 실행되는 시작 시퀀스가 없는 한).
마이크로서비스 아키텍처를 사용하면 애플리케이션 구성 요소 간의 결합을 줄일 수 있습니다(다른 언어 사용, 비동기 패턴을 통해, 인프라 수준 결합을 제거하여 확장성 향상).
그러나 단일 목적 기능이 여러 개 있는 경우 비즈니스 로직을 구현하려면 기능 간의 조정이 필요할 수 있습니다. 이러한 코디네이션은 두 가지 기본 패턴을 사용하여 구현할 수 있습니다.
Lambda는 AWS의 Function-as-a-Service 솔루션입니다. Lambda를 사용하면 인스턴스 배포와 OS 또는 런타임 패치에 대해 걱정할 필요 없이 코드를 배포하고 즉각적인 고가용성과 확장성을 얻을 수 있습니다.
Lambda는 동기 호출(API 게이트웨이, Application Load Balancer 또는 Lambda 함수 URL을 통해) 또는 비동기 호출(AWS 생성 또는 사용자 생성 이벤트에 응답)과 함께 사용할 수 있습니다.
When you deploy a Lambda you chose how much memory it needs to run. Allocated CPU is proportional. You then pay based on the number of milliseconds used. For instance a 128Mb Lambda costs 1.7*10^-9$/ms. That's 164 hours of compute before you spend your first dollar.
And Lambda scales. Fast. Much faster than anything else. No more 429s (or 500 if you're workload is not well protected) errors due to high traffic variation.
Lambda execution environments process only one single request at a given time, and are re-used for subsequent requests. That means that, for a Lambda function to scale, or when a Lambda function hasn't been invoked for a while, Lambda will have to start a new execution environment : that's a cold start.
If cold starts are detrimental to your application (again, that's probably better that all traffic being slow or hitting 429s), then there are a few options. AWS has a nice article about using Lambda warmers or setting provisioned concurrency to address it. In addition to those, for Java users, Lambda SnapStart features makes it possible to deliver good cold start performance, by snapshotting the microVM after the JVM inits.
The official product FAQ states it "natively supports Java, Go, PowerShell, Node.js, C#, Python, and Ruby code, and provides a Runtime API which allows you to use any additional programming languages to author your functions."
In the next blog posts in this series, we'll explain how you can run PHP on Lambda leveraging two distinct frameworks, Bref and the Lambda Web Adapter, and compare the possibilities offered by each of them.
The above is the detailed content of How to run PHP on AWS ServerLess architecture ? Part Whats serverless?. For more information, please follow other related articles on the PHP Chinese website!