Patterns | DNS | CDN | Load Balancer | Auto Scaling Group | Instance | Container | Application | Datastore |
---|---|---|---|---|---|---|---|---|
Fail fast - Timeout | ||||||||
Circuit breaker | ||||||||
Retry with exponential backoff and Jitter | ||||||||
Feature Toggle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WEBVTT | |
Kind: captions | |
Language: en | |
00:00:02.640 --> 00:00:05.250 | |
All right, let's get started. | |
00:00:05.250 --> 00:00:10.250 | |
First off, I want to thank everyone for coming. |
- Hexagonal Architecture Pattern - Designing testable Lambda functions
- Shared library vs Service - AWS Lambda — how best to manage shared code and shared infrastructure
- Should you have few monolithic functions or many single-purposed functions?
- Adapter Pattern - Writing portable serverless applications – datree.io – Medium
- AWS re:Invent 2017: Become a Serverless Black Belt: Optimizing Your Serverless Appli (SRV401) - YouTube
- Twelve Factor Serverless Applications - [Blog Post](https://aws.amazon.com/fr/blogs/compute/applying-the-twelve-f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Google Drive API Helper | |
Class Google_Drive_Helper { | |
private $client; | |
private $logger; |