Oreilly - Production-Ready Serverless - 10000MNLV201730
Oreilly - Production-Ready Serverless
by Yan Cui | Released March 2019 | ISBN: None


The level of detail and pace are perfect for someone looking to tackle a complicated subject and being directly hands on like this is great. Best resource for real-world Serverless usage I have seen so far. survey responder Production-Ready Serverless: Operational Best Practices teaches you how to build applications that take advantage of AWS Lambda and other AWS platform features like API Gateway and Kinesis. AWS expert Yan Cui guides you from writing your first AWS Lambda functions through handling the operational challenges Lambda can bring as you integrate serverless development practices into your applications. You'll build a basic e-commerce site piece by piece, including a Lambda-based web API using the API Gateway service. This hands-on course introduces processing events in real-time using Lambda and Kinesis Streams, implementing security against common OWASP attacks, modern serverless design patterns, and best practices for maximizing performance and minimizing cost! AWS Lambda is a platform for running cloud-hosted functions—small, single-responsibility services that handle tasks and orchestrate data flow among other AWS services. Lambda functions responds to the events triggered by users and your application. AWS automatically scales Lambda for you based on demand, so you can minimize infrastructure plumbing management and enjoy the reliability, security, and responsiveness you need to create amazing applications! Inside: Creating and deploying Lambda functions with the Serverless framework Building web APIs with Lambda and API Gateway Implementing authentication and authorization using API Gateway, IAM, and Cognito User Pools Implementing canary deployments using API Gateway and Lambda Processing real-time events with Lambda and Kinesis Streams Collecting and aggregating analytics events in real-time Testing Lambda functions Managing configurations for Lambda functions at scale Securing applications against common OWASP attacks Leading practices for Lambda, API Gateway and Kinesis Serverless design patterns For developers with some experience building cloud-based applications on AWS. Yan Cui has worked with AWS since 2010 and has architected and implemented many scalable backend systems running on AWS, including a successful mobile game with 1,000,000 daily active users. He has worked with AWS Lambda in production extensively in the last 18 months, including migrating a social network from a monolithic backend architecture running on EC2 to an event-driven, service-oriented architecture centered around AWS Lambda. Yan is also an AWS hero! An essential guide to getting started with Serverless with AWS Lambda. Michael Bright The jump start you need to serverless AWS Development. Paulo Cesar Dias Lima Excellent introduction to securing and deploying your first serverless lambda on AWS. Anonymous Reviewer Show and hide more
  1. INTRODUCTION
    • Introduction to course 00:07:50
    • AWS Lambda 101 00:09:25
    • Serverless Framework 101 00:10:03
    • Managing permissions for the Serverless Framework 00:04:54
  2. BUILDING API WITH API GATEWAY AND LAMBDA
    • Creating a landing page 00:09:30
    • Creating the restaurants API 00:09:32
    • Displaying restaurants on the landing page 00:03:51
    • How to secure APIs in API Gateway 00:09:09
    • Securing the get-restaurants endpoint with IAM authorization 00:04:56
    • Cognito 101 00:07:02
    • Securing API endpoints with Cognito user pools 00:08:20
    • Leading practices for API Gateway 00:10:28
    • Summary 00:02:59
  3. TESTING
    • AWS Lambda requires a different approach to testing 00:05:40
    • Writing integration tests 00:11:06
    • Writing acceptance tests 00:11:23
    • BONUS What can possibly go wrong? 00:07:05
  4. DEBUGGING
    • Running and debugging functions locally with the Serverless Framework 00:06:50
    • Running and debugging functions locally with SAM local 00:05:41
    • Serverless Framework vs. SAM Local 00:02:19
  5. CI/CD
    • What is CI/CD? 00:09:48
    • Setting up a CI/CD pipeline for deploying Lambda functions 00:10:24
    • Troubleshooting AWS CodeBuild problems 00:07:50
    • Summary 00:03:18
  6. PROJECT ORGANIZATION TIPS
    • Few monolithic functions vs. many single-purpose functions 00:11:14
    • How should you organize your functions into repos? 00:09:48
    • How should you manage shared infrastructures? 00:08:07
    • Tips for more effective teamwork 00:12:22
  7. PROCESS REAL-TIME EVENTS WITH KINESIS & LAMBDA
    • Designing the order flow with events 00:07:38
    • Implementing the place-order step 00:05:40
    • Implementing the notify-restaurant step 00:06:32
    • Implementing the accept-order step 00:02:07
    • Implementing the notify-user step 00:03:18
    • Implementing the fulfill-order step 00:01:34
    • Dealing with partial failures 00:07:02
    • Implementing partial failure retries with SNS 00:08:12
    • Implementing per-function IAM roles 00:04:36
    • Leading practices for using Kinesis and Lambda 00:04:37
    • Problems with the event-driven approach 00:05:58
    • Summary 00:03:32
  8. LOGGING
    • Pushing logs from CloudWatch Logs to Elasticsearch 00:11:12
    • Structured logging 00:08:00
    • Sample debug-level logging 00:09:00
  9. MONITORING
    • Serverless monitoring requires a different way of thinking 00:07:23
    • Recording custom metrics synchronously 00:08:25
    • Recording custom metrics asynchronously 00:08:07
    • Recording memory usage and billed duration as metrics 00:04:05
    • Auto-creating alarms for APIs 00:07:07
    • Summary 00:03:00
  10. X-RAY
    • AWS X-Ray 101 00:05:26
    • Using X-Ray to trace Lambda executions 00:05:17
    • Setting up custom X-Ray traces in Lambda functions 00:04:02
    • AWS X-Ray limitations 00:04:49
  11. CORRELATION IDS
    • Laying out the plan 00:03:33
    • Auto-capturing incoming correlation IDs via HTTP headers 00:02:56
    • Including all the captured correlation IDs in the logs 00:06:15
    • Forwarding correlation IDs via HTTP headers 00:06:51
    • Forwarding correlation IDs via Kinesis events 00:08:16
    • Auto-capturing incoming correlation IDs via Kinesis events 00:08:49
    • Enabling debug logging on individual user events 00:06:25
    • Auto-capturing incoming correlation IDs via SNS messages 00:04:11
    • Forwarding correlation IDs via SNS messages 00:03:40
    • Summary 00:05:53
  12. PERFORMANCE
    • Lifecycle of a Lambda function 00:03:48
    • Strategies to minimize cold starts 00:11:00
    • Taking advantage of container reuse for optimization 00:03:59
    • Cost considerations 00:05:04
  13. ERROR HANDLING
    • Lambda retry behaviors 00:05:02
  14. LAMBDA LIMITS
    • Hard and soft limits for Lambda 00:03:15
    • Other service limits 00:02:39
    • How to request a soft limit raise 00:02:57
  15. MANAGING CONFIGURATIONS
    • SSM Parameter Store 101 00:03:47
    • Referencing SSM parameters in serverless.yml 00:06:06
    • Limitations with Lambda environment variables 00:02:35
    • Using Middy middleware to load SSM parameters at runtime 00:05:54
    • Secrets Manager 101 00:05:23
    • Using Middy middleware to load Secrets Manager secrets at runtime 00:03:26
    • Considerations for advanced use cases 00:03:28
  16. VPC
    • Configuring Lambda functions' access to a VPC 00:05:15
    • When to use VPC and why you mostly shouldn’t 00:04:27
    • You don’t need VPCs to secure your functions 00:06:09
    • FunctionShield 00:05:20
    • Encapsulating common middleware with a wrapper 00:07:34
  17. CANARY DEPLOYMENTS
    • Why should we do canary deployments? 00:03:55
    • Lambda weighted alias 101 00:02:33
    • sls deploy with weighted alias 00:06:41
    • Enabling auto-rollback during deployment 00:06:08
    • Problems with weighted alias 00:03:24
    • Problems with CodeDeploy 00:04:53
    • Wrap up/Next 00:07:26
  18. Show and hide more

    Oreilly - Production-Ready Serverless

    10000MNLV201730.production.ready.serverless.OR.part1.rar

    10000MNLV201730.production.ready.serverless.OR.part2.rar

    10000MNLV201730.production.ready.serverless.OR.part3.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss