Tag: Aws
-
Combining Amazon Aurora, Lambda, and SQS to go beyond the native capabilities of MySQL
Posted on November 26, 2018, Level intermediate Resource Length medium
David Yahalom posted on redgate Hub about innovative combination of Amazon Aurora, serverless Lambda and Simple Que Service to strecth MySQL beyond native capabilities.
Tags mysql serverless aws devops miscellaneous queues
-
Introduction to AWS Well-Architected Framework
Posted on July 3, 2018, Level intermediate Resource Length medium
An interesting article on devopedia about Amazon Web Services' Weell-Architected framework (WAFR). Cloud platforms offer a number of services. A typical application can use one or more of these services, each of which can be configured in a number of different ways. AWS Well-Architected Framework (WAFR) offers a set of guidelines and best practices to help practitioners migrate, manage and optimize their applications and their operations on the AWS cloud.
Tags programming serverless aws software-architecture
-
Splitting up Terraform & state file separation
Posted on April 12, 2018, Level intermediate Resource Length short
Site reliability engineer Matt Ouille's article about terraform state files. Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. State files literally are the single source of truth, as far as Terraform is concerned, in regard to your infrastructure.
Tags programming devops aws serverless
-
Productive with Docker in 20 minutes
Posted on March 13, 2018, Level beginner Resource Length long
George Fogle article about how to find a better, more productive development workflow with Docker. Docker and container-based development is really going to save you time in the future. As well as make working and debugging code a breeze.
Tags containers aws docker
-
Comparing AWS Lambda performance of Node.js, Python, Java, C# and Go
Posted on March 10, 2018, Level intermediate Resource Length long
Yun Zhi Li -- VP of Engineering APAC at continoHQ -- wrote this article as a reaction to comparison of lambdas done in previous year by Yan Cui. He noticed that despite AWS adding more languages to lambda runtime, old languages were not neglected. In the article he reviewed and updated runtime performance benchmark of all five programming languages supported by AWS Lambda.
Tags serverless aws performance apis
-
AWS AppSync GraphQL API with Golang Lambda source
Posted on February 25, 2018, Level intermediate Resource Length medium
Sebastian Muller wrote this article / tutorial about AWS AppSync, a serverless GraphQL with support for custom data sources using AWS Lambda. To enable easy access to his RSS feed, author created a simple GraphQL API using AWS AppSync.
Tags aws serverless app-development apis
-
Deploy serverless machine learning microservice with scikit-learn
Posted on February 18, 2018, Level intermediate Resource Length medium
Patrick Michelberger created this tutorial in which we deploy a machine learning microservice using AWS Lambda, AWS API Gateway and scikit-learn.
Tags machine-learning aws serverless python
-
Why AWS DynamoDB is not for everyone
Posted on January 10, 2018, Level beginner Resource Length long
Cloud architect Forrest Brazeal wrote intriguing article in which he considers shortcomings and advantages of DynamoDB. He interviewed a number of engineers and developers about their experiences with the database service. As great as DynamoDB is -- and as rousing as its success stories are -- it has also left plenty of failed implementations in its wake.
Tags nosql aws database
-
Automating CI/CD workflow for serverless apps with CircleCI
Posted on January 1, 2018, Level intermediate Resource Length long
Rupak Ganguly wrote neat post about the process of continuous integration and deployment (CI/CD) of serverless application -- which can be really challenging. In this post, author takes a deep look at the end-to-end workflow of automating a CI/CD process for a serverless application via CircleCI.
Tags cicd aws containers serverless
-
Managing AWS Lambda function concurrency
Posted on December 17, 2017, Level intermediate Resource Length long
Chris Munns long article diving straight to the point of AWS Lambda concurrency. In AWS Lambda, which is the core of the serverless platform at AWS, the unit of scale is a concurrent execution. This refers to the number of executions of your function code that are happening at any given time.
Tags serverless nodejs aws
-
AWS Cloud9 – cloud developer environments
Posted on December 1, 2017, Level beginner Resource Length long
Randall Hunt published article on how to run your Integrated Development Environment (IDE) in the cloud. One of the first things you learn when you start programming is that, just like any crafts person, your tools matter. A powerful editor and testing pipeline supercharge your productivity.
Tags programming aws
-
How to host Hugo static website generator on AWS Lambda
Posted on November 25, 2017, Level intermediate Resource Length medium
Ilya Bezdelev wrote tutorial how to create a static website publishing platform hosted in the cloud using several AWS services. It will run static website generator Hugo on AWS Lambda, store files in AWS S3 and serve them from AWS CloudFront. This is older (2015) but still very good article.
Tags web-development serverless aws docker