prepare PR
This commit is contained in:
parent
e824c13e9c
commit
200c6253a2
2 changed files with 26 additions and 14 deletions
|
@ -33,7 +33,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Global variables
|
// Global variables
|
||||||
var access_key, secret_key, url_host, bucket string
|
var access_key, secret_key, url_host, bucket, region string
|
||||||
var duration_secs, threads, loops int
|
var duration_secs, threads, loops int
|
||||||
var object_size uint64
|
var object_size uint64
|
||||||
var object_data []byte
|
var object_data []byte
|
||||||
|
@ -76,7 +76,7 @@ func getS3Client() *s3.S3 {
|
||||||
loglevel := aws.LogOff
|
loglevel := aws.LogOff
|
||||||
// Build the rest of the configuration
|
// Build the rest of the configuration
|
||||||
awsConfig := &aws.Config{
|
awsConfig := &aws.Config{
|
||||||
Region: aws.String("us-east-1"),
|
Region: aws.String(region),
|
||||||
Endpoint: aws.String(url_host),
|
Endpoint: aws.String(url_host),
|
||||||
Credentials: creds,
|
Credentials: creds,
|
||||||
LogLevel: &loglevel,
|
LogLevel: &loglevel,
|
||||||
|
@ -94,13 +94,17 @@ func getS3Client() *s3.S3 {
|
||||||
return client
|
return client
|
||||||
}
|
}
|
||||||
|
|
||||||
func createBucket() {
|
func createBucket(ignore_errors bool) {
|
||||||
// Get a client
|
// Get a client
|
||||||
client := getS3Client()
|
client := getS3Client()
|
||||||
// Create our bucket (may already exist without error)
|
// Create our bucket (may already exist without error)
|
||||||
in := &s3.CreateBucketInput{Bucket: aws.String(bucket)}
|
in := &s3.CreateBucketInput{Bucket: aws.String(bucket)}
|
||||||
if _, err := client.CreateBucket(in); err != nil {
|
if _, err := client.CreateBucket(in); err != nil {
|
||||||
log.Fatalf("FATAL: Unable to create bucket %s (is your access and secret correct?): %v", bucket, err)
|
if ignore_errors {
|
||||||
|
log.Printf("WARNING: createBucket %s error, ignoring %v", bucket, err)
|
||||||
|
} else {
|
||||||
|
log.Fatalf("FATAL: Unable to create bucket %s (is your access and secret correct?): %v", bucket, err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -287,6 +291,7 @@ func main() {
|
||||||
myflag.StringVar(&secret_key, "s", "", "Secret key")
|
myflag.StringVar(&secret_key, "s", "", "Secret key")
|
||||||
myflag.StringVar(&url_host, "u", "http://s3.wasabisys.com", "URL for host with method prefix")
|
myflag.StringVar(&url_host, "u", "http://s3.wasabisys.com", "URL for host with method prefix")
|
||||||
myflag.StringVar(&bucket, "b", "wasabi-benchmark-bucket", "Bucket for testing")
|
myflag.StringVar(&bucket, "b", "wasabi-benchmark-bucket", "Bucket for testing")
|
||||||
|
myflag.StringVar(®ion, "r", "us-east-1", "Region for testing")
|
||||||
myflag.IntVar(&duration_secs, "d", 60, "Duration of each test in seconds")
|
myflag.IntVar(&duration_secs, "d", 60, "Duration of each test in seconds")
|
||||||
myflag.IntVar(&threads, "t", 1, "Number of threads to run")
|
myflag.IntVar(&threads, "t", 1, "Number of threads to run")
|
||||||
myflag.IntVar(&loops, "l", 1, "Number of times to repeat test")
|
myflag.IntVar(&loops, "l", 1, "Number of times to repeat test")
|
||||||
|
@ -309,8 +314,8 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Echo the parameters
|
// Echo the parameters
|
||||||
logit(fmt.Sprintf("Parameters: url=%s, bucket=%s, duration=%d, threads=%d, loops=%d, size=%s",
|
logit(fmt.Sprintf("Parameters: url=%s, bucket=%s, region=%s, duration=%d, threads=%d, loops=%d, size=%s",
|
||||||
url_host, bucket, duration_secs, threads, loops, sizeArg))
|
url_host, bucket, region, duration_secs, threads, loops, sizeArg))
|
||||||
|
|
||||||
// Initialize data for the bucket
|
// Initialize data for the bucket
|
||||||
object_data = make([]byte, object_size)
|
object_data = make([]byte, object_size)
|
||||||
|
@ -320,12 +325,20 @@ func main() {
|
||||||
object_data_md5 = base64.StdEncoding.EncodeToString(hasher.Sum(nil))
|
object_data_md5 = base64.StdEncoding.EncodeToString(hasher.Sum(nil))
|
||||||
|
|
||||||
// Create the bucket and delete all the objects
|
// Create the bucket and delete all the objects
|
||||||
createBucket()
|
createBucket(true)
|
||||||
deleteAllObjects()
|
deleteAllObjects()
|
||||||
|
|
||||||
// Loop running the tests
|
// Loop running the tests
|
||||||
for loop := 1; loop <= loops; loop++ {
|
for loop := 1; loop <= loops; loop++ {
|
||||||
|
|
||||||
|
// reset counters
|
||||||
|
upload_count = 0
|
||||||
|
upload_slowdown_count = 0
|
||||||
|
download_count = 0
|
||||||
|
download_slowdown_count = 0
|
||||||
|
delete_count = 0
|
||||||
|
delete_slowdown_count = 0
|
||||||
|
|
||||||
// Run the upload case
|
// Run the upload case
|
||||||
running_threads = int32(threads)
|
running_threads = int32(threads)
|
||||||
starttime := time.Now()
|
starttime := time.Now()
|
||||||
|
@ -341,8 +354,8 @@ func main() {
|
||||||
upload_time := upload_finish.Sub(starttime).Seconds()
|
upload_time := upload_finish.Sub(starttime).Seconds()
|
||||||
|
|
||||||
bps := float64(uint64(upload_count)*object_size) / upload_time
|
bps := float64(uint64(upload_count)*object_size) / upload_time
|
||||||
logit(fmt.Sprintf("Loop %d: PUT time %.1f secs, objects = %d, speed = %sB/sec, %.1f operations/sec.",
|
logit(fmt.Sprintf("Loop %d: PUT time %.1f secs, objects = %d, speed = %sB/sec, %.1f operations/sec. Slowdowns = %d",
|
||||||
loop, upload_time, upload_count, bytefmt.ByteSize(uint64(bps)), float64(upload_count)/upload_time))
|
loop, upload_time, upload_count, bytefmt.ByteSize(uint64(bps)), float64(upload_count)/upload_time, upload_slowdown_count))
|
||||||
|
|
||||||
// Run the download case
|
// Run the download case
|
||||||
running_threads = int32(threads)
|
running_threads = int32(threads)
|
||||||
|
@ -359,8 +372,8 @@ func main() {
|
||||||
download_time := download_finish.Sub(starttime).Seconds()
|
download_time := download_finish.Sub(starttime).Seconds()
|
||||||
|
|
||||||
bps = float64(uint64(download_count)*object_size) / download_time
|
bps = float64(uint64(download_count)*object_size) / download_time
|
||||||
logit(fmt.Sprintf("Loop %d: GET time %.1f secs, objects = %d, speed = %sB/sec, %.1f operations/sec.",
|
logit(fmt.Sprintf("Loop %d: GET time %.1f secs, objects = %d, speed = %sB/sec, %.1f operations/sec. Slowdowns = %d",
|
||||||
loop, download_time, download_count, bytefmt.ByteSize(uint64(bps)), float64(download_count)/download_time))
|
loop, download_time, download_count, bytefmt.ByteSize(uint64(bps)), float64(download_count)/download_time, download_slowdown_count))
|
||||||
|
|
||||||
// Run the delete case
|
// Run the delete case
|
||||||
running_threads = int32(threads)
|
running_threads = int32(threads)
|
||||||
|
@ -376,10 +389,9 @@ func main() {
|
||||||
}
|
}
|
||||||
delete_time := delete_finish.Sub(starttime).Seconds()
|
delete_time := delete_finish.Sub(starttime).Seconds()
|
||||||
|
|
||||||
logit(fmt.Sprintf("Loop %d: DELETE time %.1f secs, %.1f deletes/sec.",
|
logit(fmt.Sprintf("Loop %d: DELETE time %.1f secs, %.1f deletes/sec. Slowdowns = %d",
|
||||||
loop, delete_time, float64(upload_count)/delete_time))
|
loop, delete_time, float64(upload_count)/delete_time, delete_slowdown_count))
|
||||||
}
|
}
|
||||||
|
|
||||||
// All done
|
// All done
|
||||||
fmt.Println("Benchmark completed.", "Slowdowns:", " upload:", upload_slowdown_count, " download:", download_slowdown_count, " delete:", delete_slowdown_count)
|
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue