Posts

AWS API Gateway Interview questions

Image
///////////////////////////////// In this post we will look at AWS API Gateway Interview questions. Examples are provided with explanation. What is AWS API Gateway? Explain the Architecture of API Gateway? What are the processes involved in working with AWS lambda and API Gateway? How can we use an API key in Amazon API Gateway? What is Mapping Template? What is API Caching? What are the Features of API Gateway? What API types are supported by Amazon API Gateway? What is a resource? What is AWS Lambda Function? How to add CloudFront in front of API Gateway? How can we use API Gateway to create HTTP APIs? How can we find the API endpoint of a lambda function? How can we call an API Gateway API? What are the types of API ? How can we get the list of APIs and their IDs? How can we find the arn of an API Gateway stage? How can we integrate API Gateway with SQS? How to debug AWS API Gateway & Lambda's AWS/ApiGateway 5XXError? What is AWS API Gateway? AWS API Gateway is used by the d

The definitive Guide to Docker compose

Image
 ///// https://gabrieltanner.org/blog/docker-compose ////// ////// The definitive Guide to Docker compose In this guide, you will learn everything you need to know about Docker Compose and how you can use it to run multi-container applications. With applications getting larger and larger as time goes by it gets harder to manage them in a simple and reliable way. That is where Docker Compose comes into play. Docker Compose allows us developers to write a YAML configuration file for our application service which then can be started using a single command. This guide will show you all the important Docker Compose commands and the structure of the configuration file. It can also be used to look up the available commands and options later on. Why care about Docker-compose Before we get into the technical details let's discuss why a programmer should even care about docker-compose in the first place. Here are some reasons why developers should consider implementing Docker in their work.