-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.json
89 lines (88 loc) · 2.13 KB
/
job.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"config": {
"cloud": [
{
"name": "aws",
"type": "s3",
"awsAccessKey": "XXXX",
"awsAccessKeySecret": "XXXX",
"awsS3bucket": "coltaws2",
"awsServiceUrl": "https://s3.amazonaws.com",
"awsRegion": "us-east-2"
},
{
"name": "Blob-EUS2",
"type": "blob",
"blobStorageAccountConnectionString": "DefaultEndpointsProtocol=https;AccountName=colttest;AccountKey=XXXX;EndpointSuffix=core.windows.net",
"blobContainer": "test"
},
{
"name": "PremiumBlob-EUS2",
"type": "blob",
"blobStorageAccountConnectionString": "DefaultEndpointsProtocol=https;AccountName=jval;AccountKey=XXXX;EndpointSuffix=core.windows.net",
"blobContainer": "test"
},
{
"name": "gcs",
"type": "gcs",
"gcsbucket": "javallergcs-east",
"projectid": "bubbly-clarity-662",
"credential": "XXXX"
}
],
"output": "Blob-EUS2"
},
"jobs": [
{
"name": "Upload to Premium Blob",
"type": "upload",
"cloud": "PremiumBlob-EUS2",
"fileCount": 100,
"fileSizeInBytes": 65536,
"filePrefix": "test64k",
"threads": 8
},
{
"name": "Download from Premium Blob",
"type": "download",
"cloud": "PremiumBlob-EUS2",
"downloadCount": 100,
"filePrefix": "test64k",
"threads": 1
},
{
"name": "Upload to AWS",
"type": "upload",
"cloud": "aws",
"fileCount": 100,
"fileSizeInBytes": 65536,
"filePrefix": "test64k",
"threads": 8
},
{
"name": "Download from AWS",
"type": "download",
"cloud": "aws",
"downloadCount": 100,
"filePrefix": "test64k",
"threads": 1
},
{
"name": "Upload to GCS",
"type": "upload",
"cloud": "gcs",
"fileCount": 100,
"fileSizeInBytes": 65536,
"filePrefix": "test64k",
"threads": 8
},
{
"name": "Download from GCS",
"type": "download",
"cloud": "gcs",
"downloadCount": 100,
"filePrefix": "test64k",
"threads": 1
}
]
}