| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	"math" | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | 	"math/rand" | 
					
						
							|  |  |  | 	"strconv" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2016-11-23 10:18:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	humanize "github.com/dustin/go-humanize" | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | // Benchmark utility functions for ObjectLayer.PutObject().
 | 
					
						
							|  |  |  | // Creates Object layer setup ( MakeBucket ) and then runs the PutObject benchmark.
 | 
					
						
							|  |  |  | func runPutObjectBenchmark(b *testing.B, obj ObjectLayer, objSize int) { | 
					
						
							|  |  |  | 	var err error | 
					
						
							|  |  |  | 	// obtains random bucket name.
 | 
					
						
							|  |  |  | 	bucket := getRandomBucketName() | 
					
						
							|  |  |  | 	// create bucket.
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	err = obj.MakeBucketWithLocation(context.Background(), bucket, BucketOptions{}) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// get text data generated for number of bytes equal to object size.
 | 
					
						
							|  |  |  | 	textData := generateBytesData(objSize) | 
					
						
							|  |  |  | 	// generate md5sum for the generated data.
 | 
					
						
							|  |  |  | 	// md5sum of the data to written is required as input for PutObject.
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	md5hex := getMD5Hash(textData) | 
					
						
							|  |  |  | 	sha256hex := "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 	// benchmark utility which helps obtain number of allocations and bytes allocated per ops.
 | 
					
						
							|  |  |  | 	b.ReportAllocs() | 
					
						
							|  |  |  | 	// the actual benchmark for PutObject starts here. Reset the benchmark timer.
 | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		// insert the object.
 | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 		objInfo, err := obj.PutObject(context.Background(), bucket, "object"+strconv.Itoa(i), | 
					
						
							| 
									
										
										
										
											2020-12-27 14:58:06 +08:00
										 |  |  | 			mustGetPutObjReader(b, bytes.NewReader(textData), int64(len(textData)), md5hex, sha256hex), ObjectOptions{}) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			b.Fatal(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 		if objInfo.ETag != md5hex { | 
					
						
							|  |  |  | 			b.Fatalf("Write no: %d: Md5Sum mismatch during object write into the bucket: Expected %s, got %s", i+1, objInfo.ETag, md5hex) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Benchmark ends here. Stop timer.
 | 
					
						
							|  |  |  | 	b.StopTimer() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | // Benchmark utility functions for ObjectLayer.PutObjectPart().
 | 
					
						
							|  |  |  | // Creates Object layer setup ( MakeBucket ) and then runs the PutObjectPart benchmark.
 | 
					
						
							|  |  |  | func runPutObjectPartBenchmark(b *testing.B, obj ObjectLayer, partSize int) { | 
					
						
							|  |  |  | 	var err error | 
					
						
							|  |  |  | 	// obtains random bucket name.
 | 
					
						
							|  |  |  | 	bucket := getRandomBucketName() | 
					
						
							|  |  |  | 	object := getRandomObjectName() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// create bucket.
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	err = obj.MakeBucketWithLocation(context.Background(), bucket, BucketOptions{}) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 10:18:22 +08:00
										 |  |  | 	objSize := 128 * humanize.MiByte | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-15 03:05:51 +08:00
										 |  |  | 	// PutObjectPart returns etag of the object inserted.
 | 
					
						
							|  |  |  | 	// etag variable is assigned with that value.
 | 
					
						
							|  |  |  | 	var etag, uploadID string | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	// get text data generated for number of bytes equal to object size.
 | 
					
						
							|  |  |  | 	textData := generateBytesData(objSize) | 
					
						
							|  |  |  | 	// generate md5sum for the generated data.
 | 
					
						
							|  |  |  | 	// md5sum of the data to written is required as input for NewMultipartUpload.
 | 
					
						
							| 
									
										
										
										
											2019-02-09 13:31:06 +08:00
										 |  |  | 	uploadID, err = obj.NewMultipartUpload(context.Background(), bucket, object, ObjectOptions{}) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 	sha256hex := "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	var textPartData []byte | 
					
						
							|  |  |  | 	// benchmark utility which helps obtain number of allocations and bytes allocated per ops.
 | 
					
						
							|  |  |  | 	b.ReportAllocs() | 
					
						
							|  |  |  | 	// the actual benchmark for PutObjectPart starts here. Reset the benchmark timer.
 | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 	for i := 0; i < b.N; i++ { | 
					
						
							|  |  |  | 		// insert the object.
 | 
					
						
							|  |  |  | 		totalPartsNR := int(math.Ceil(float64(objSize) / float64(partSize))) | 
					
						
							|  |  |  | 		for j := 0; j < totalPartsNR; j++ { | 
					
						
							|  |  |  | 			if j < totalPartsNR-1 { | 
					
						
							|  |  |  | 				textPartData = textData[j*partSize : (j+1)*partSize-1] | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				textPartData = textData[j*partSize:] | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 			md5hex := getMD5Hash([]byte(textPartData)) | 
					
						
							| 
									
										
										
										
											2017-02-01 01:38:34 +08:00
										 |  |  | 			var partInfo PartInfo | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 			partInfo, err = obj.PutObjectPart(context.Background(), bucket, object, uploadID, j, | 
					
						
							| 
									
										
										
										
											2020-12-27 14:58:06 +08:00
										 |  |  | 				mustGetPutObjReader(b, bytes.NewReader(textPartData), int64(len(textPartData)), md5hex, sha256hex), ObjectOptions{}) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				b.Fatal(err) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 			if partInfo.ETag != md5hex { | 
					
						
							|  |  |  | 				b.Fatalf("Write no: %d: Md5Sum mismatch during object write into the bucket: Expected %s, got %s", i+1, etag, md5hex) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// Benchmark ends here. Stop timer.
 | 
					
						
							|  |  |  | 	b.StopTimer() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // creates Erasure/FS backend setup, obtains the object layer and calls the runPutObjectPartBenchmark function.
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | func benchmarkPutObjectPart(b *testing.B, instanceType string, objSize int) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// create a temp Erasure/FS backend.
 | 
					
						
							| 
									
										
										
										
											2020-04-15 08:52:38 +08:00
										 |  |  | 	ctx, cancel := context.WithCancel(context.Background()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 	objLayer, disks, err := prepareTestBackend(ctx, instanceType) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatalf("Failed obtaining Temp Backend: <ERROR> %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// cleaning up the backend by removing all the directories and files created on function return.
 | 
					
						
							|  |  |  | 	defer removeRoots(disks) | 
					
						
							| 
									
										
										
										
											2018-08-15 12:41:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | 	// uses *testing.B and the object Layer to run the benchmark.
 | 
					
						
							|  |  |  | 	runPutObjectPartBenchmark(b, objLayer, objSize) | 
					
						
							| 
									
										
										
										
											2016-07-09 05:28:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // creates Erasure/FS backend setup, obtains the object layer and calls the runPutObjectBenchmark function.
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | func benchmarkPutObject(b *testing.B, instanceType string, objSize int) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// create a temp Erasure/FS backend.
 | 
					
						
							| 
									
										
										
										
											2020-04-15 08:52:38 +08:00
										 |  |  | 	ctx, cancel := context.WithCancel(context.Background()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 	objLayer, disks, err := prepareTestBackend(ctx, instanceType) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatalf("Failed obtaining Temp Backend: <ERROR> %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// cleaning up the backend by removing all the directories and files created on function return.
 | 
					
						
							|  |  |  | 	defer removeRoots(disks) | 
					
						
							| 
									
										
										
										
											2018-08-15 12:41:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | 	// uses *testing.B and the object Layer to run the benchmark.
 | 
					
						
							|  |  |  | 	runPutObjectBenchmark(b, objLayer, objSize) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | // creates Erasure/FS backend setup, obtains the object layer and runs parallel benchmark for put object.
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | func benchmarkPutObjectParallel(b *testing.B, instanceType string, objSize int) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	// create a temp Erasure/FS backend.
 | 
					
						
							| 
									
										
										
										
											2020-04-15 08:52:38 +08:00
										 |  |  | 	ctx, cancel := context.WithCancel(context.Background()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 	objLayer, disks, err := prepareTestBackend(ctx, instanceType) | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatalf("Failed obtaining Temp Backend: <ERROR> %s", err) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | 	// cleaning up the backend by removing all the directories and files created on function return.
 | 
					
						
							|  |  |  | 	defer removeRoots(disks) | 
					
						
							| 
									
										
										
										
											2018-08-15 12:41:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-22 02:17:28 +08:00
										 |  |  | 	// uses *testing.B and the object Layer to run the benchmark.
 | 
					
						
							|  |  |  | 	runPutObjectBenchmarkParallel(b, objLayer, objSize) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // randomly picks a character and returns its equivalent byte array.
 | 
					
						
							|  |  |  | func getRandomByte() []byte { | 
					
						
							|  |  |  | 	const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" | 
					
						
							|  |  |  | 	// seeding the random number generator.
 | 
					
						
							| 
									
										
										
										
											2017-03-19 02:28:41 +08:00
										 |  |  | 	rand.Seed(UTCNow().UnixNano()) | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | 	// pick a character randomly.
 | 
					
						
							| 
									
										
										
										
											2019-02-13 20:59:36 +08:00
										 |  |  | 	return []byte{letterBytes[rand.Intn(len(letterBytes))]} | 
					
						
							| 
									
										
										
										
											2016-06-29 13:12:36 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // picks a random byte and repeats it to size bytes.
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | func generateBytesData(size int) []byte { | 
					
						
							| 
									
										
										
										
											2016-06-28 01:01:09 +08:00
										 |  |  | 	// repeat the random character chosen size
 | 
					
						
							| 
									
										
										
										
											2016-06-26 11:22:04 +08:00
										 |  |  | 	return bytes.Repeat(getRandomByte(), size) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 02:08:45 +08:00
										 |  |  | // Parallel benchmark utility functions for ObjectLayer.PutObject().
 | 
					
						
							|  |  |  | // Creates Object layer setup ( MakeBucket ) and then runs the PutObject benchmark.
 | 
					
						
							|  |  |  | func runPutObjectBenchmarkParallel(b *testing.B, obj ObjectLayer, objSize int) { | 
					
						
							|  |  |  | 	// obtains random bucket name.
 | 
					
						
							|  |  |  | 	bucket := getRandomBucketName() | 
					
						
							|  |  |  | 	// create bucket.
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	err := obj.MakeBucketWithLocation(context.Background(), bucket, BucketOptions{}) | 
					
						
							| 
									
										
										
										
											2016-07-11 02:08:45 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		b.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// get text data generated for number of bytes equal to object size.
 | 
					
						
							|  |  |  | 	textData := generateBytesData(objSize) | 
					
						
							|  |  |  | 	// generate md5sum for the generated data.
 | 
					
						
							|  |  |  | 	// md5sum of the data to written is required as input for PutObject.
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	md5hex := getMD5Hash([]byte(textData)) | 
					
						
							|  |  |  | 	sha256hex := "" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-11 02:08:45 +08:00
										 |  |  | 	// benchmark utility which helps obtain number of allocations and bytes allocated per ops.
 | 
					
						
							|  |  |  | 	b.ReportAllocs() | 
					
						
							|  |  |  | 	// the actual benchmark for PutObject starts here. Reset the benchmark timer.
 | 
					
						
							|  |  |  | 	b.ResetTimer() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b.RunParallel(func(pb *testing.PB) { | 
					
						
							|  |  |  | 		i := 0 | 
					
						
							|  |  |  | 		for pb.Next() { | 
					
						
							|  |  |  | 			// insert the object.
 | 
					
						
							| 
									
										
										
										
											2018-03-16 04:27:16 +08:00
										 |  |  | 			objInfo, err := obj.PutObject(context.Background(), bucket, "object"+strconv.Itoa(i), | 
					
						
							| 
									
										
										
										
											2020-12-27 14:58:06 +08:00
										 |  |  | 				mustGetPutObjReader(b, bytes.NewReader(textData), int64(len(textData)), md5hex, sha256hex), ObjectOptions{}) | 
					
						
							| 
									
										
										
										
											2016-07-11 02:08:45 +08:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				b.Fatal(err) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-10-22 13:30:34 +08:00
										 |  |  | 			if objInfo.ETag != md5hex { | 
					
						
							|  |  |  | 				b.Fatalf("Write no: Md5Sum mismatch during object write into the bucket: Expected %s, got %s", objInfo.ETag, md5hex) | 
					
						
							| 
									
										
										
										
											2016-07-11 02:08:45 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			i++ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Benchmark ends here. Stop timer.
 | 
					
						
							|  |  |  | 	b.StopTimer() | 
					
						
							|  |  |  | } |