- SQS ๋ฐฐ์น์ฒ๋ฆฌ ๋ถ๋ถ ์คํจ - https://www.halfstack.software/gracefully-handling-lambda-sqs-partial-batch-failures/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import logging | |
# setup simple logging for INFO | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) | |
client = boto3.client('ec2') | |
runningInstanceFilter = [ |
AWS ํธ๋ ์ด๋ ๋ฐ ์๊ฒฉ์ฆ ์๊ฐ(http://bit.ly/aws-tnc-intro)
AWS ํ์ต ๋งํฌ์ง ์๋ฆฌ์ฆ
- AWS ํธ๋ ์ด๋ ๋ฐ ์๊ฒฉ์ฆ ์๊ฐ http://bit.ly/aws-tnc-intro
- AWS ํ์ต ์๋ฃ์ง http://bit.ly/aws-study-resource
- AWS ๊ณต์ธ ์๋ฃจ์ ์ค ์ํคํ ํธ - ์ด์์์์ดํธ ์ํ ๊ฐ์ด๋ http://bit.ly/sacertguide
- AWS ๊ณต์ธ ๊ฐ๋ฐ์ - ์ด์์์์ดํธ ์ํ ๊ฐ์ด๋ http://bit.ly/devcertguide
- AWS ๋ณด์ ๊ด๋ จ ์ปจํ ์ธ ๋ชจ์์ง http://bit.ly/secontents
- AWS ๊ธฐ๋ฐ ๋น ๋ฐ์ดํฐ ํ์ต์๋ฃ์ง http://bit.ly/bdonaws
- AWS ๋ฅ๋ฌ๋ ํ์ต ์๋ฃ ๋ชจ์์ง http://bit.ly/dlonaws
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Getting list of Availability Zones from target region | |
# all | |
#target_regions=$(aws ec2 describe-regions --output text --query 'Regions[*].[RegionName]' | sort) | |
# default region | |
target_regions=$(aws configure get region) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo amazon-linux-extras install epel | |
sudo yum install -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm | |
sudo yum install -y -enablerepo=epel groonga | |
sudo yum install -y gcc-c++ java-1.8.0-openjdk-devel python-devel python3-devel fontconfig fontconfig-devel libstdc++ | |
sudo yum install mecab mecab-devel mecab-ipadic git make curl xz patch | |
sudo pip3 install konlpy |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder