$ cat /etc/h2o/h2o.conf
listen: 8080
http1-request-timeout: 5
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
currentTimeUnix := time.Now().Unix() | |
currentTimeRFC3339 := time.Now().Format("2006-01-02T15:04:05Z07:00") |
This file contains hidden or 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
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" |
This file contains hidden or 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
本稿は以下の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 |
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
- ap-northeast-1
- VPC
- EC2(c3.8xlarge)
This file contains hidden or 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
for i in [0..1] | |
Resources["PublicSubnet"+i]= | |
Type: "AWS::EC2::Subnet" | |
Properties: | |
AvailabilityZone: | |
"Fn::Select": [ | |
"#{i}" | |
"Fn::GetAZs": | |
Ref: "AWS::Region" | |
] |
NewerOlder