Best of AWS Lambda — 2022

  1. 1
    Article
    Avatar of spaceliftSpacelift·3y

    The Most Comprehensive List of DevOps Tools for 2023

    The Most Comprehensive List of DevOps Tools for 2023 gathers some of the most useful and commonly used DevOps tools and technologies. Git Git is the most commonly used distributed version control system and is the clear winner in this space. GitHub GitHub is the default and most broadly used code repository management system.

  2. 2
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Architecture For Next App

    Serverless architecture for Next App Serverless has been there for a fair amount of time but surely has come to a more mature state than it was there about a few years ago.

  3. 3
    Article
    Avatar of pointerPointer·4y

    mikeroyal/Self-Hosting-Guide: Self-Hosting Guide. Learn all about locally hosting(on premises & private web servers) and managing software applications by yourself or your organization.

    Most self-hosted software can be installed using Docker, a packaging system which allows software to bundle their configuration and dependencies. Shipwright is a WebUI to generate templates for Yacht, Portainer, Docker-Compose, and Unraid. Dozzle is a small lightweight application with a web based interface to monitor Docker logs. Diun is a tool that receive notifications when a Docker image is updated.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Learn Serverless AWS by Building 7 Projects

    The Time-To-Live (TTL) tells dynamo that once the time reaches this date, delete the record from Dynamo. For the front end you can write a simple web app with two sections: create new reminder, and list my reminders. This can be in React, Vue, Angular, or even raw HTML, CSS and JavaScript.

  5. 5
    Article
    Avatar of itnextITNEXT·4y

    Techniques for Optimising SQL Queries

    The power of Explain will give a detailed information on what our query will do and how much it’ll cost in time when executed. This is one of the most common mistakes that I’ve seen a lot of people doing, regardless of their level of experience or years in the industry.

  6. 6
    Article
    Avatar of awstipAWS Tip·3y

    From Monolith to Serverless

    AWS Lambda is the core component of the serverless platform, but there are a number of other services that are part of the broader serverless toolset. The key is to leverage as many of these services as you can to take care of the core primitive application layer concerns.

  7. 7
    Article
    Avatar of communityCommunity Picks·4y

    Serverless Clean Architecture & Code with Domain-Driven Design 🚀

    Serverless Clean Architecture & Code with Domain-Driven Design. We will discuss the advantages and reasons for this architectural approach throughout the article.

  8. 8
    Article
    Avatar of awstipAWS Tip·4y

    Architecture serverless email sending application in AWS

    A poorly architecture email system may end up in failure to handle the large workload and result in loss in business. Amazon SQS will trigger an event to the ALB of the Lambda functions with JSON message payload.

  9. 9
    Article
    Avatar of awstipAWS Tip·4y

    Building an API using Serverless framework

    Serverless is a way to build and run applications & services without having to manage servers. There are 40+ Lambda templates for the most common use cases (e.g. microservice-http-endpoint, dynamodb-process-stream, sns-message, sqs-poller, s3-get-object, etc. You only pay for the time that Lambdas work.

  10. 10
    Article
    Avatar of awstipAWS Tip·4y

    Serverless cron job with AWS

    cron is a program that allows you to schedule tasks repeatedly at a specific time. With the cron job, we can specify that task to run at that specific time repeatedly every day. There are even bridges (cloud watch event ) and lambda.

  11. 11
    Article
    Avatar of dzDZone·3y

    What Is Loosely Coupled Architecture?

    The primary purpose of a loosely coupled architecture is to create a system that doesn’t fail due to the failure of a single component. Loosely coupled vs. tightly coupled Architecture is an important point to ponder. Microservices is an architectural design that facilitates the development of an application as small and independent services that run their own processes.

  12. 12
    Article
    Avatar of scottlogicScott Logic·4y

    Can Web3 beat public cloud?

    Web3 sees the internet becoming a network of applications (distributed apps, or dApps), written as smart contracts, running on a public blockchain. At its core it uses blockchain technology, with the promise of being decentralised, permissionless and trustless. We’ll return to these at various points within this blog post.

  13. 13
    Article
    Avatar of quastorQuastor Daily·4y

    How the BBC uses Serverless

    The BBC relies heavily on Functions as a Service (FaaS) for scaling, specifically AWS Lambda functions. All traffic to the BBC website goes to the Global Traffic Manager, which is a web server based on N We’ll go through a couple of the things they did.

  14. 14
    Article
    Avatar of awstipAWS Tip·3y

    No-cost ways to learn AWS Cloud over the holidays

    AWS Cloud Platform is giving plenty of learning gifts to choose from this month. Introduction to AWS Services introduces you to AWS products, services, and common solutions. It's time to set goals for 2023 and build in-demand cloud skills and build your future in the Cloud.

  15. 15
    Article
    Avatar of communityCommunity Picks·4y

    When Is Serverless More Expensive Than Containers?

    Serverless applications offer significant cost of ownership (TCO) advantages compared to containers. Comparing provisioned services like EC2 with a pay-for-what-you-use service like Lambda is difficult but not impossible to do. The tipping point is usually difficult to objectify.

  16. 16
    Article
    Avatar of glcGolang News·4y

    A simple, fast container image builder for Golang applications

    ko is a simple, fast container image builder for Go applications. It’s ideal for use cases where your image contains a single Go application without any/many dependencies on the OS base image. ko also includes support for simple YAML templating, which makes it a powerful tool for Kubernetes applications. The image must be pushed to Google Container Registry or Artifact Registry.

  17. 17
    Article
    Avatar of awstipAWS Tip·4y

    Build an API using AWS Lambda and API Gateway

    AWS has significantly impacted the serverless development industry as a top serverless supplier. AWS Lambda is an event-driven, serverless computing platform. API Gateway and Lambda proxy is a straightforward, effective solution for creating an API with just a single API method setup.

  18. 18
    Article
    Avatar of awstipAWS Tip·4y

    Serverless

    Serverless is an execution model where the cloud provider is responsible for executing a piece of code by dynamically allocating the resources. With Lambda, you can run code for virtually any type of application or backend service. But should not worry about the project or anything else.

  19. 19
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Computing

    Serverless is event-driven, functional code which runs on a cloud in a stateless manner. If you send one request to the API gateway, that will poke to the function, and the function comes up to serve the request and go back to sleep and the next rest come it has no idea about the previous request. The above screen shows that the function has been successfully created.