Problem I have a project which we need to migrate from an on-prem solution to the AWS cloud. Currently, the […]
Tag: amazon-web-services
A bash script to submit an AWS EMR job and poll until the cluster terminates
Problem #!/bin/bash set -ue # use AWS CLI to launch a cluster create_cluster_response=$(aws emr create-cluster –release-label emr-4.3.0 –region us-east-1 –etc) […]
Connecting to EC2 instances using the instance name instead of IP
Problem I’m an intensive user of AWS EC2 instances, many instances are launched, stopped, repurposed, etc. To connect to any […]
PHP filesystem on a shared file system
Problem I have a project which we need to migrate from an on-prem solution to the AWS cloud. Currently, the […]
Send Data from DynamoDB to Lambda (C#) and to Azure Queue
Problem I am a beginner and trying to send data from AWS DynamoDB to Azure Queues. Note that this code […]
Send Data from DynamoDB to Lambda (C#) and to Azure Queue
Problem I am a beginner and trying to send data from AWS DynamoDB to Azure Queues. Note that this code […]
Elastic Beanstalk configuration using ebextensions container_commands combining leader_only and test
Problem For our Django app running on AWS Elastic Beanstalk, we use a web-server/worker setup. The same code is deployed […]
Bash Database Backup to AWS S3
Problem I’ve written a bash script that backs up databases and uploads the backups to an S3 bucket. I have […]
Listing EC2 instances
Problem I’ve got this massive nested for loop with a few if and else statements in nodeJs. The output of […]
node.js connecting to s3 and youtube
Problem I have a task to connect to S3 get a JSON file with the names of artists, use the […]