Tag: Serverless
-
The Right Way™ to do Serverless in Python
Posted on July 2, 2018, Level intermediate Resource Length medium
Michael Lavers published this interesting piece about serverless in Python. In this blog post author takes a brief tour of serverless as it applies to Python as well as some handy tips and tricks to help you get your footing in serverless domain.
Tags programming serverless python
-
How to build your own serverless platform
Posted on June 5, 2018, Level intermediate Resource Length long
In this post, Tomasz Janczuk, will provide a blueprint for building your own serverless platform, based on the lessons learned from working on Auth0 Extend in the recent years.
Tags serverless devops containers
-
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
-
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
-
Lambda architecture in Microsoft Azure
Posted on February 9, 2018, Level intermediate Resource Length medium
Josh Lane interesting article on lambda architecture in Azure. His article focuses mainly on IoT specifics, but this design requires only a few minor tweaks to accommodate other non-IoT contexts. The concepts behind lambda architecture are straightforward and uncomplicated on their own.
Tags software-architecture cloud azure serverless
-
Shareloc: share your location with friends using the cloud
Posted on January 3, 2018, Level intermediate Resource Length long
Gerrit Grunwald wrote pos about how easy it is to use Java SE and JavaFX to create mobile applications that run on iOS and Android devices in the cloud -- without the need to learn a lot of different platforms.
Tags cloud app-development serverless
-
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
-
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
-
Writing event-driven serverless app plus local development
Posted on November 16, 2017, Level intermediate Resource Length long
Rupak Ganguly lengthy article on developing and event-driven serverless application. The application has a simple frontend using curl that calls into a couple of backend services: a users service and an email service. It relies on the serverless framework, and app is then deployed to AWS Lambda.
Tags cloud serverless microservices aws