Skip to main content

Posts

Showing posts with the label serverless

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox

Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates… Stay Up to Date with Daily AWS Updates Delivered to Your Inbox Keeping up with the latest features and updates in Amazon Web Services (AWS) can be challenging. AWS releases new features and updates regularly, which can sometimes be difficult to keep track of. Fortunately, there’s an easy way to stay up to date with AWS feature releases — Amazon Simple Notification Service (SNS). In this article, we’ll take a closer look at how you can use Amazon SNS to subscribe to AWS daily feature updates. Amazon SNS is a fully managed messaging service that allows you to send messages to a large number of subscribers through a variety of transport protocols, including email, SMS, and HTTP/HTTPS. You can use Amazon SNS to send notificat...

Manage MongoDB Atlas Deployments with AWS CDK

Manage MongoDB Atlas Deployments with AWS CDK Manage MongoDB Atlas Deployments with AWS CDK MongoDB Atlas is a fully-managed cloud-based database service offered by MongoDB. It offers a variety of features such as automatic… Manage MongoDB Atlas Deployments with AWS CDK MongoDB Atlas is a fully-managed cloud-based database service offered by MongoDB. It offers a variety of features such as automatic backups, automatic scaling, and easy integration with other cloud services. AWS Cloud Development Kit(CDK) is a tool provided by Amazon Web Services (AWS) that allows you to define infrastructure as code using familiar programming languages such as TypeScript, JavaScript, Python, and others. MongoDB recently announced general availability for Atlas Integrations for AWS CloudFormation and CDK. In this article, we will go through the process of deploying MongoDB Atlas with AWS CDK. Prerequisites Before we start, you will need the following: An AWS account AWS CDK installed on your lo...

Why companies fail on cloud? A perspective from a cloud consultant

Why companies fail on cloud? A perspective from a cloud consultant Why companies fail on cloud? A perspective from a cloud consultant The cloud has become an increasingly popular destination for businesses looking to take advantage of its scalability, cost-effectiveness… Why companies fail on cloud? A perspective from a cloud consultant The cloud has become an increasingly popular destination for businesses looking to take advantage of its scalability, cost-effectiveness, and flexibility. However, despite the many benefits that cloud computing offers, not all companies that move to the cloud are successful. As a cloud consultant, I have seen firsthand the reasons why some companies fail on the cloud. In this article, I will discuss the most common reasons why companies fail on the cloud and how they can avoid these pitfalls. Lack of Strategy One of the biggest mistakes that companies make when moving to the cloud is not having a clear strategy. They may have a vague idea of what...

AWS Lambda Function URLs

AWS Lambda Function URLs AWS Lambda Function URLs AWS Lambda is a Serverless computing service offered by Amazon Web Services (AWS) that allows developers to run code without provisioning… AWS Lambda Function URLs AWS Lambda AWS Lambda is a Serverless computing service offered by Amazon Web Services ( AWS ) that allows developers to run code without provisioning or managing servers. In this tutorial, we will explore AWS Lambda Function URLs , which are the endpoints that allow you to invoke your Lambda functions. AWS Lambda Function URLs are unique HTTP endpoints that you can create using AWS Console, SDK or any other IaC tool. These URLs are used to trigger your Lambda function, and they can be integrated with a variety of workloads. Function URLs are dual stack-enabled, supporting IPv4 and IPv6. After you configure a function URL for your function, you can invoke your function through its HTTP(S) endpoint via a web browser, curl, Postman, or any HTTP client. Once you create ...

AWS Tagging Strategies

AWS Tagging Strategies AWS Tagging Strategies Tags are metadata that you can assign to AWS resources such as EC2 instances, S3 buckets, and RDS databases. Tags are key-value pairs that… AWS Tagging Strategies Tags are metadata that you can assign to AWS resources such as EC2 instances, S3 buckets, and RDS databases. Tags are key-value pairs that allow users to label resources with information that is relevant to their business needs. Users can assign multiple tags to a resource, and tags can be searched, filtered, and used for cost allocation. Benefits of AWS Tagging Resource Management : Tags make it easy to manage resources by allowing users to filter and search for resources by tags. This makes it easy to find resources and keep track of them. Cost Allocation : Tags allow users to allocate costs to the correct department or business unit. This helps businesses to accurately track and allocate costs, making it easier to manage budgets. Security : Tags can be used to contr...

Healthcare Workloads on AWS

Healthcare Workloads on AWS Healthcare Workloads on AWS Healthcare is one of the most important and rapidly growing industries in the world, and with the rise of digital technologies, it has… Healthcare Workloads on AWS Healthcare is one of the most important and rapidly growing industries in the world, and with the rise of digital technologies, it has become increasingly important to handle vast amounts of data efficiently and securely. Cloud computing has become an essential tool for healthcare organizations to store, process, and manage their data, and Amazon Web Services (AWS) is one of the leading cloud platforms for healthcare workloads. AWS provides a wide range of services that are specifically designed for healthcare organizations, making it possible to store and process sensitive patient data securely and cost-effectively. This includes services for data warehousing, big data analytics, machine learning, and more. AWS also provides a highly secure and compliant envi...

Opt-out For AWS Lambda Updates. Why and how?

Opt Out For AWS Lambda Updates. Why and how? Opt Out For AWS Lambda Updates. Why and how? AWS Lambda is a Serverless computing platform that enables users to run code without having to manage servers. It provides a fully managed… Opt Out For AWS Lambda Updates. Why and how? AWS Lambda is a Serverless computing platform that enables users to run code without having to manage servers. It provides a fully managed environment for executing your code, which includes runtime, operating system, and system libraries. The AWS Lambda execution environment is the environment in which your Lambda function code is executed. It is an isolated environment that has its own resources and dependencies, and it runs on Amazon Linux, a distribution of Linux specifically designed for cloud computing. AWS Lambda automatically patches the underlying infrastructure for your functions, so you don’t have to worry about managing operating system or runtime updates. This includes security patches for the ...

Serverless Kubernetes with AWS EKS

Serverless Kubernetes with Amazon EKS Serverless Kubernetes with Amazon EKS The term Serverless does not mean that there are no servers involved at all. As many people are still confused with the fairly new term… Serverless Kubernetes with Amazon EKS The term Serverless does not mean that there are no servers involved at all. As many people are still confused with the fairly new term, we would like to clarify that first; Serverless is a cloud execution model in which the cloud provider runs the server, and dynamically manages the allocation of machine resources and low-level operations. The serverless model abstracts away the complexity of running distributed systems on the cloud and provides easy to use application interfaces. Serverless offerings on AWS include AWS Lambda, DynamoDB, S3 and Fargate. In this tutorial, we are going to deploy a Serverless Kubernetes cluster on Amazon Elastic Kubernetes Service(EKS) using Cloud Development Kit(CDK) and we will leverage AWS Fargate...

URL Shortener with DocumentDb(MongoDB Compatible), Lambda and CDK

Create and Deploy Simple URL Shortener with AWS CDK and DocumentDB Create and Deploy Simple URL Shortener with AWS CDK and DocumentDB In this tutorial we will walk you through creating and deploying a simple URL shortener application using AWS CDK, DocumentDB, Lambda and… Create a Simple URL Shortener with AWS CDK and DocumentDB In this tutorial, we will walk you through creating and deploying a simple URL shortener application using AWS CDK , DocumentDB , Lambda and API Gateway . DocumentDB is a document database which is fully compatible with MongoDB 3.6 API . DocumentDB takes lots of inspiration from other AWS Database Services, in which storage and compute layers are separated. This allows fairly simple scalability and high-performance throughput. CDK is a new way to manage AWS resources using common programming languages. Let’s get started. In case you haven’t installed AWS CDK yet, here is how to do it. npm install -g aws-cdk Let’s build the application logic first This ...