Skip to content

Commit

Permalink
add default gcsfuseMountOptions in workloads config
Browse files Browse the repository at this point in the history
  • Loading branch information
gargnitingoogle committed Aug 27, 2024
1 parent e72300e commit ecdc926
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion perfmetrics/scripts/testing_on_gke/examples/workloads.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"runOnSSD": true,
"workloads": [
{
"_description": "This is a dummy fio workload (missing the 'fioWorkload' field), purely standing as a header and does not execute any workload. For it to execute a fio workload, it must have a valid 'fioWorkload' object and a valid 'bucket' attribute.",
"_description": "This is a dummy fio workload (missing the 'fioWorkload' field), purely standing as a header and does not execute any workload. For it to execute a fio workload, it must have a valid 'fioWorkload', a valid 'bucket' attribute, and a valid gcsfuseMountOption attribute.",
"_fioWorkload": {
"_description": "Every fioWorkload must have fileSize, filesPerThread, numThreads, and blockSize fields. readTypes is an array of string values 'read' and 'randread'. If readTypes is missing, then it defaults to [\"read\",\"randread\"].",
"fileSize": "64k",
Expand All @@ -15,6 +15,7 @@
"blockSize": "64K",
"readTypes": ["read","randread"]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"The bucket must have objects with name Workload.{i}/{j} for every i,j where i:0-{numThreads}-1, j:0-{filesPerThread}-1, and each of these objects must be of size {fileSize}. The buckets gke-* are all in us-central1, are owned by GKE team and are in their GCP project(s)."
},
{
Expand All @@ -25,6 +26,7 @@
"blockSize": "64K",
"readTypes": ["read"]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"fio-64k-1m-us-west1",
"_bucket_alt2":"fio-64k-1m-us-central1",
"_bucket_alt3":"gke-fio-64k-1m"
Expand All @@ -37,6 +39,7 @@
"blockSize": "128K",
"readTypes": ["read"]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"fio-128k-1m-us-west1",
"_bucket_alt2":"fio-128k-1m-us-central1",
"_bucket_alt3":"gke-fio-128k-1m"
Expand All @@ -49,6 +52,7 @@
"blockSize": "256K",
"readTypes": ["read","randread"]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"fio-1mb-1m-us-west1",
"_bucket_alt2":"fio-1mb-1m-us-central1",
"_bucket_alt3":"gke-fio-1mb-1m"
Expand All @@ -60,6 +64,7 @@
"numThreads": 50,
"blockSize": "1M"
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"fio-100mb-50k-us-west1",
"_bucket_alt2":"fio-100mb-50k-us-central1",
"_bucket_alt3":"gke-fio-100mb-50k"
Expand All @@ -72,6 +77,7 @@
"numThreads": 100,
"blockSize": "1M"
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"fio-200gb-1-us-west1",
"_bucket_alt2":"fio-200gb-1-us-central1",
"_bucket_alt3":"gke-fio-200gb-1"
Expand All @@ -84,6 +90,7 @@
"recordLength": 102400,
"batchSizes": [800,128]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"The bucket must have objects with name 'train/', 'valid/', and train/img_{i}_of_{numFilesTrain}.npz for every i where i:0-{numFilesTrain}-1 and each train/img_{i}_of_{numFilesTrain}.npz must be of size {recordLength} bytes. The buckets gke-* are all in us-central1, are owned by GKE team and are in their GCP project(s)."
},
{
Expand All @@ -92,6 +99,7 @@
"recordLength": 102400,
"batchSizes": [800,128]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"dlio-unet3d-100kb-500k-us-west1",
"_bucket_alt2":"dlio-unet3d-100kb-500k-us-central1",
"_bucket_alt3":"gke-dlio-unet3d-100kb-500k"
Expand All @@ -102,6 +110,7 @@
"recordLength": 512000,
"batchSizes": [800,128]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"dlio-unet3d-500kb-1m-us-west1",
"_bucket_alt2":"dlio-unet3d-500kb-1m-us-central1",
"_bucket_alt3":"gke-dlio-unet3d-500kb-1m"
Expand All @@ -112,6 +121,7 @@
"recordLength": 3145728,
"batchSizes": [200]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"dlio-unet3d-3mb-100k-us-west1",
"_bucket_alt2":"dlio-unet3d-3mb-100k-us-central1",
"_bucket_alt3":"gke-dlio-unet3d-3mb-100k"
Expand All @@ -122,6 +132,7 @@
"recordLength": 157286400,
"batchSizes": [4]
},
"gcsfuseMountOptions": "implicit-dirs",
"bucket":"dlio-unet3d-150mb-5k-us-west1",
"_bucket_alt2":"dlio-unet3d-150mb-5k-us-central1",
"_bucket_alt3":"gke-dlio-unet3d-150mb-5k"
Expand Down

0 comments on commit ecdc926

Please sign in to comment.