By

Vincent Sanders
Are you new to python? No worries, we have put together a list of great resources to help you learn python for free. All of the resources listed in this article are free and have been selected because of the quality of the content and the frequency of which developers at TG4 use them. 1....
Continue Reading
When building a multi-environment application using Terraform, you will need a way to specify environment specific variables. We will discuss how we accomplish this through the use of input variables and tfvars files. Terraform input variables When constructing your cloud architecture using Terraform, you can dynamically configure your resources and services using input variables. You...
Continue Reading
Tired of manually deploying your AWS lambda after every change? Let’s discuss how you can offload these responsibilities to a build automation tool, like Jenkins. Jenkins is able to deploy the latest version of your lambda with just a simple click of a button. Deploying an AWS Lambda In order to deploy an AWS lambda...
Continue Reading
Recently we discussed how to design a serverless batch process that notifies data consumers using S3 bucket notifications. However, when using Terraform to deploy notifications there are a few things we must take into account. How Terraform deploys S3 bucket notifications Who else is using the same S3 bucket How Terraform deploys S3 bucket notifications When using Terraform...
Continue Reading
s3 bucket notification
Previously we designed a simple serverless batch process to extract data from a data warehouse. This design lacked an intuitive way for data consumers to be notified when new data is available. Requiring consumers to do one of the following: Consume data regardless of when it was last updated Create logic to identify when new...
Continue Reading
serverless batch
In this post, we will discuss a solution for extracting data from a warehouse and saving to a remote location. In a typical corporate IT environment, multiple applications read and manipulate the same data. With this in mind, transactional applications may need their own copy of the data. So today we will design a serverless...
Continue Reading
Terraform, by HashiCorp, is an open source Infrastructure as Code (IaC) software. Terraform creates execution plans to build data center infrastructure through the use of configuration files. Enabling users to confidently create, change, or destroy their infrastructure. The benefits of using IaC software such as Terraform includes: Automation – Include in your continuous build process...
Continue Reading
invalid elf header
Are you experiencing an “Invalid ELF header” error when executing your AWS Lambda? If so, you have came to the right place for help. We will discuss the root cause of this error and how to solve this issue with the help of Docker. Root cause for invalid elf header error When executed, AWS Lambdas...
Continue Reading
Python is a great language to learn for its ease of use and its powerful application in big data. When first learning python, there are 4 powerful concepts that can be hard to understand depending on your prior programming experience. Today, we explain these concepts in detail to help you write cleaner code. 1. A...
Continue Reading
dockerignore file
When building docker images, it is easy to include files that aren’t necessary for your application to run successfully. Which increases our image size and can potentially cause deployment issues. In this post, we will discuss the value of the .dockerignore file and how it can be used to cleanup your docker images. What is...
Continue Reading
1 2 3