Whats the maximum number of virtual processor cores available in aws lambda
Memory: 3008 MB
| #!/usr/bin/env python3 | |
| import sys | |
| from github import Github | |
| if len(sys.argv) < 2: | |
| print(f"USAGE: {sys.argv[0]} USERNAME") | |
| sys.exit(1) | |
| username = sys.argv[1] |
| # config | |
| BUCKET_NAME=your-bucket-name | |
| STACK_NAME=lambda-power-tuning-demo | |
| # package | |
| sam package --s3-bucket $BUCKET_NAME --template-file template.yml --output-template-file packaged.yml | |
| # deploy | |
| sam deploy --template-file packaged.yml --stack-name $STACK_NAME --capabilities CAPABILITY_AUTO_EXPAND CAPABILITY_IAM |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>AWS RSS feeds 2019-04-22</title> | |
| </head> | |
| <body> | |
| <outline text="AWS" title="AWS"> | |
| <outline type="rss" text="Infrastructure & Automation" title="Infrastructure & Automation" xmlUrl="https://aws.amazon.com/blogs/infrastructure-and-automation/feed/" htmlUrl="https://aws.amazon.com/blogs/infrastructure-and-automation/"/> | |
| <outline type="rss" text="AWS Developer Blog" title="AWS Developer Blog" xmlUrl="http://feeds.feedburner.com/AwsDeveloperBlog" htmlUrl="https://aws.amazon.com/blogs/developer/"/> |
| import os | |
| from PIL import Image, ImageFilter | |
| import boto3 | |
| rek = boto3.client("rekognition") | |
| def get_face_boxes(faces, source_size): | |
| return [ | |
| ( | |
| int(f['BoundingBox']['Left'] * source_size[0]), |
ALTER TABLE logs.trades CHANGE recentprice price int;kops: https://github.com/kubernetes/kops
Getting Started Guide: https://github.com/kubernetes/kops/blob/master/docs/aws.md
Installing Kubernetes on AWS with kops: https://kubernetes.io/docs/getting-started-guides/kops/
Mulit-master Kubernetes Cluster on AWS with kops: http://blog.arungupta.me/multimaster-kubernetes-cluster-amazon-kops/
Booting Kubernetes on Amazon Elastic Compute with kops: https://deis.com/docs/workflow/quickstart/provider/aws/boot/
Setting up an HA Kubernetes Cluster in AWS with private topology with kops 1.5.1: https://www.nivenly.com/kops-1-5-1/
Kubernetes on AWS: https://daemonza.github.io/2017/01/15/kubernetes-on-aws/
Your 2nd day with Kubernetes on AWS: https://www.nivenly.com/2nd-hour/
Tectonic (Terraform): http://github.com/coreos/tectonic-installer
Graphical installer: https://coreos.com/tectonic/docs/latest/install/aws/
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
This gist contains lists of modules available in
in AWS Lambda.