AWS c3.xlarge on VPC (ap-northeast-1)
AWS c3.8xlarge on VPC (ap-northeast-1)
for i in [0..1] | |
Resources["PublicSubnet"+i]= | |
Type: "AWS::EC2::Subnet" | |
Properties: | |
AvailabilityZone: | |
"Fn::Select": [ | |
"#{i}" | |
"Fn::GetAZs": | |
Ref: "AWS::Region" | |
] |
This test goal was to determine ELB is to scale out / scale-up at what time when a load is applied to the ELB. But results of the tests it was completely different from the behavior of ELB that I was assumed in advance. As there is a possibility that there was a problem in the test method, the test I do again. This test result is I keep a record for interesting.
Jan 12, 2015
本稿は以下のURLで公開されているGoogleのDremel論文の個人的な日本語訳である。 | |
http://research.google.com/pubs/pub36632.html | |
本稿から受けたいかなる損害も責任はとりません。 | |
Dremel: Webスケールデータセットのインタラクティブ分析 | |
Sergey Melnik, Andrey Gubarev, Jing Jing Long, Geoffrey Romer, | |
Shiva Shivakumar, Matt Tolton, Theo Vassilakis | |
ABSTRACT |
BUCKET_NAME="your-bucket-name" | |
aws s3 mb "${BUCKET_NAME}" | |
terraform remote config -backend=S3 -backend-config="bucket=${BUCKET_NAME}" -backend-config="key=terraform.tfstate" |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
currentTimeUnix := time.Now().Unix() | |
currentTimeRFC3339 := time.Now().Format("2006-01-02T15:04:05Z07:00") |
aws elb describe-load-balancer-policies | jq '[ | |
.PolicyDescriptions[]| | |
{ | |
"PolicyName": .PolicyName, | |
"PolicyAttributeDescriptions": .PolicyAttributeDescriptions[]| | |
select(.AttributeName == "Server-Defined-Cipher-Order" and .AttributeValue == "true") | |
} | |
]' |