From 8597db5cd0984dcfce904a28e4864aaaba194888 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Wed, 1 Jul 2020 11:58:42 -0700 Subject: [PATCH 01/13] Added Ignore tags to large file/blob tests --- .../test/java/com/azure/storage/blob/LargeBlobTest.groovy | 5 +++++ .../com/azure/storage/file/datalake/LargeFileTest.groovy | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy index 74f70f000a18..51a523fb3beb 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy @@ -122,6 +122,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload"() { given: @@ -140,6 +141,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload Async"() { given: @@ -156,6 +158,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Stage Large Blob"() { given: @@ -172,6 +175,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Input"() { given: @@ -209,6 +213,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Input Sync"() { given: diff --git a/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy b/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy index 43ae5b68b510..70db14f61427 100644 --- a/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy +++ b/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy @@ -67,6 +67,7 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Append Large Block"() { given: @@ -82,6 +83,7 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Append Large Block Async"() { given: @@ -97,6 +99,7 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Data Async"() { given: @@ -111,6 +114,7 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Append Large File"() { given: From 2d4c4b51b5a95abb14190b0e817515e0ff4a82ef Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Wed, 1 Jul 2020 12:36:03 -0700 Subject: [PATCH 02/13] Added storage to tests.yml --- sdk/storage/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sdk/storage/tests.yml b/sdk/storage/tests.yml index 681abbf13d5b..be9bf3806b8c 100644 --- a/sdk/storage/tests.yml +++ b/sdk/storage/tests.yml @@ -14,6 +14,9 @@ jobs: - name: azure-storage-blob-batch groupId: com.azure safeName: azurestorageblobbatch + - name: azure-storage-blob-changefeed + groupId: com.azure + safeName: azurestorageblobchangefeed - name: azure-storage-blob-cryptography groupId: com.azure safeName: azurestorageblobcryptography @@ -26,6 +29,9 @@ jobs: - name: azure-storage-file-datalake groupId: com.azure safeName: azurestoragefiledatalake + - name: azure-storage-internal-avro + groupId: com.azure + safeName: azurestorageinternalavro - name: azure-storage-queue groupId: com.azure safeName: azurestoragequeue From c0dd22f7e89f338a6cd42ef9beb82e01f63e5f19 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Wed, 1 Jul 2020 17:01:35 -0700 Subject: [PATCH 03/13] Reset --- .../src/test/java/com/azure/storage/blob/VersioningTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/VersioningTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/VersioningTest.groovy index 4c377dbc5d8a..54b31b8a57a3 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/VersioningTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/VersioningTest.groovy @@ -30,7 +30,7 @@ class VersioningTest extends APISpec { def setup() { blobName = generateBlobName() containerName = generateContainerName() - blobContainerClient = versionedBlobServiceClient.createBlobContainer(containerName) + blobContainerClient = primaryBlobServiceClient.createBlobContainer(containerName) blobClient = blobContainerClient.getBlobClient(blobName) } From efb4f0b2cb0e2ae8f26aff72355832b083c9df6e Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Thu, 2 Jul 2020 10:29:13 -0700 Subject: [PATCH 04/13] added versioning to primjary account --- sdk/storage/test-resources.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/sdk/storage/test-resources.json b/sdk/storage/test-resources.json index a977635c1f55..f8745860ecba 100644 --- a/sdk/storage/test-resources.json +++ b/sdk/storage/test-resources.json @@ -17,7 +17,7 @@ } }, "variables": { - "storageApiVersion": "2019-04-01", + "storageApiVersion": "2019-06-01", "authorizationApiVersion": "2018-09-01-preview", "blobDataContributorRoleId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe')]", "contributorRoleId": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c')]", @@ -85,6 +85,17 @@ "accessTier": "Hot" } }, + { + "type": "Microsoft.Storage/storageAccounts/blobServices", + "apiVersion": "[variables('storageApiVersion')]", + "name": "[concat(variables('primaryAccountName'), '/default')]", + "properties": { + "isVersioningEnabled": true + }, + "dependsOn": [ + "[variables('primaryAccountName')]" + ] + }, { "type": "Microsoft.Storage/storageAccounts", "apiVersion": "[variables('storageApiVersion')]", From a94bac9ffa3418ea78980e8163247314eab9b2a7 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Thu, 2 Jul 2020 10:52:29 -0700 Subject: [PATCH 05/13] Added file share soft delete --- sdk/storage/test-resources.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/sdk/storage/test-resources.json b/sdk/storage/test-resources.json index f8745860ecba..7ad11bbb453d 100644 --- a/sdk/storage/test-resources.json +++ b/sdk/storage/test-resources.json @@ -96,6 +96,20 @@ "[variables('primaryAccountName')]" ] }, + { + "type": "Microsoft.Storage/storageAccounts/fileServices", + "apiVersion": "[variables('storageApiVersion')]", + "name": "[concat(variables('primaryAccountName'), '/default')]", + "properties": { + "shareDeleteRetentionPolicy": { + "enabled": true, + "days": 1 + } + }, + "dependsOn": [ + "[variables('primaryAccountName')]" + ] + }, { "type": "Microsoft.Storage/storageAccounts", "apiVersion": "[variables('storageApiVersion')]", From dc08fd04cdcd50c3cdaf75cd985964df9a4d4ad5 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Thu, 2 Jul 2020 13:11:45 -0700 Subject: [PATCH 06/13] Put the resources in Canada --- sdk/storage/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/storage/tests.yml b/sdk/storage/tests.yml index be9bf3806b8c..bd24f26db49c 100644 --- a/sdk/storage/tests.yml +++ b/sdk/storage/tests.yml @@ -36,6 +36,8 @@ jobs: groupId: com.azure safeName: azurestoragequeue TimeoutInMinutes: 120 + Location: canadacentral + SubscriptionConfiguration: $(sub-config-azure-cloud-test-resources-preview) EnvVars: AZURE_TEST_MODE: LIVE AZURE_TENANT_ID: $(aad-azure-sdk-test-tenant-id) From cb6e97e1d75e83d2f166bb9c262462c25ede2978 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Thu, 2 Jul 2020 13:27:02 -0700 Subject: [PATCH 07/13] Added bread crumbs to tests for common and avro --- .../common/implementation/FluxInputStreamTest.groovy | 7 +++++++ .../avro/implementation/AvroParserStateTest.groovy | 7 +++++++ .../internal/avro/implementation/AvroReaderTest.groovy | 7 +++++++ .../internal/avro/implementation/AvroSchemaTest.groovy | 7 +++++++ 4 files changed, 28 insertions(+) diff --git a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/FluxInputStreamTest.groovy b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/FluxInputStreamTest.groovy index 41130554fd52..c58c1e1ac3b5 100644 --- a/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/FluxInputStreamTest.groovy +++ b/sdk/storage/azure-storage-common/src/test/java/com/azure/storage/common/implementation/FluxInputStreamTest.groovy @@ -13,6 +13,13 @@ import java.nio.ByteBuffer class FluxInputStreamTest extends Specification { + def setup() { + String fullTestName = specificationContext.getCurrentIteration().getName().replace(' ', '').toLowerCase() + String className = specificationContext.getCurrentSpec().getName() + // Print out the test name to create breadcrumbs in our test logging in case anything hangs. + System.out.printf("========================= %s.%s =========================%n", className, fullTestName) + } + /* Network tests to be performed by implementors of the FluxInputStream. */ Flux generateData(int num) { List buffers = new ArrayList<>() diff --git a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroParserStateTest.groovy b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroParserStateTest.groovy index 9cb273789287..e95e1fb73911 100644 --- a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroParserStateTest.groovy +++ b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroParserStateTest.groovy @@ -8,6 +8,13 @@ import java.nio.ByteBuffer class AvroParserStateTest extends Specification { + def setup() { + String fullTestName = specificationContext.getCurrentIteration().getName().replace(' ', '').toLowerCase() + String className = specificationContext.getCurrentSpec().getName() + // Print out the test name to create breadcrumbs in our test logging in case anything hangs. + System.out.printf("========================= %s.%s =========================%n", className, fullTestName) + } + def "constructor"() { setup: AvroParserState state = new AvroParserState() diff --git a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroReaderTest.groovy b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroReaderTest.groovy index db0c58ab097a..469405860bed 100644 --- a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroReaderTest.groovy +++ b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroReaderTest.groovy @@ -17,6 +17,13 @@ import java.nio.file.StandardOpenOption class AvroReaderTest extends Specification { + def setup() { + String fullTestName = specificationContext.getCurrentIteration().getName().replace(' ', '').toLowerCase() + String className = specificationContext.getCurrentSpec().getName() + // Print out the test name to create breadcrumbs in our test logging in case anything hangs. + System.out.printf("========================= %s.%s =========================%n", className, fullTestName) + } + String getTestCasePath(int testCase) { String fileName = String.format("test_null_%d.avro", testCase) ClassLoader classLoader = getClass().getClassLoader() diff --git a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroSchemaTest.groovy b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroSchemaTest.groovy index 330dd68a2377..731c48bfc941 100644 --- a/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroSchemaTest.groovy +++ b/sdk/storage/azure-storage-internal-avro/src/test/java/com/azure/storage/internal/avro/implementation/AvroSchemaTest.groovy @@ -7,6 +7,13 @@ import java.nio.ByteBuffer class AvroSchemaTest extends Specification { + def setup() { + String fullTestName = specificationContext.getCurrentIteration().getName().replace(' ', '').toLowerCase() + String className = specificationContext.getCurrentSpec().getName() + // Print out the test name to create breadcrumbs in our test logging in case anything hangs. + System.out.printf("========================= %s.%s =========================%n", className, fullTestName) + } + def "getBytes"() { setup: ByteBuffer b1 = ByteBuffer.wrap("Hello ".getBytes()) From ba472db5d2aa0b547a0f4c95443576a607f7fb70 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Thu, 2 Jul 2020 16:40:01 -0700 Subject: [PATCH 08/13] enable blob soft delete --- sdk/storage/test-resources.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sdk/storage/test-resources.json b/sdk/storage/test-resources.json index 7ad11bbb453d..d60bc654fa19 100644 --- a/sdk/storage/test-resources.json +++ b/sdk/storage/test-resources.json @@ -90,8 +90,13 @@ "apiVersion": "[variables('storageApiVersion')]", "name": "[concat(variables('primaryAccountName'), '/default')]", "properties": { - "isVersioningEnabled": true - }, + "isVersioningEnabled": true, + "deleteRetentionPolicy": { + "enabled": true, + "days": 1 + } + + }, "dependsOn": [ "[variables('primaryAccountName')]" ] From fb81cb2c0a7ea0e5c0902a18a254b7dc75072efa Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Mon, 6 Jul 2020 09:30:19 -0700 Subject: [PATCH 09/13] renamed some ignores --- .../test/java/com/azure/storage/blob/LargeBlobTest.groovy | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy index 51a523fb3beb..cc457b34a432 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy @@ -122,7 +122,6 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload"() { given: @@ -158,7 +157,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("OOM") + @Ignore("Mark/reset not supported") // This test does not send large payload over the wire def "Stage Large Blob"() { given: @@ -213,7 +212,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("OOM") + @Ignore("Mark/reset not supported") // This test does not send large payload over the wire def "Upload Large Input Sync"() { given: From 2e2dfc11cf5473db0b026e2b86968208f1c9be64 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Mon, 6 Jul 2020 09:59:55 -0700 Subject: [PATCH 10/13] remove ignores --- .../test/java/com/azure/storage/blob/LargeBlobTest.groovy | 4 ---- .../com/azure/storage/file/datalake/LargeFileTest.groovy | 6 ------ 2 files changed, 10 deletions(-) diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy index cc457b34a432..74f70f000a18 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy @@ -140,7 +140,6 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload Async"() { given: @@ -157,7 +156,6 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("Mark/reset not supported") // This test does not send large payload over the wire def "Stage Large Blob"() { given: @@ -174,7 +172,6 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Input"() { given: @@ -212,7 +209,6 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) - @Ignore("Mark/reset not supported") // This test does not send large payload over the wire def "Upload Large Input Sync"() { given: diff --git a/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy b/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy index 70db14f61427..00097b8c9f65 100644 --- a/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy +++ b/sdk/storage/azure-storage-file-datalake/src/test/java/com/azure/storage/file/datalake/LargeFileTest.groovy @@ -9,8 +9,6 @@ import com.azure.storage.common.ParallelTransferOptions import com.azure.storage.common.implementation.Constants import com.azure.storage.common.policy.StorageSharedKeyCredentialPolicy import com.azure.storage.file.datalake.models.DataLakeStorageException -import org.reactivestreams.Publisher -import org.reactivestreams.Subscriber import reactor.core.publisher.Flux import reactor.core.publisher.Mono import spock.lang.Ignore @@ -67,7 +65,6 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Append Large Block"() { given: @@ -83,7 +80,6 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Append Large Block Async"() { given: @@ -99,7 +95,6 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Data Async"() { given: @@ -114,7 +109,6 @@ class LargeFileTest extends APISpec{ } @Requires({ liveMode() }) - @Ignore("OOM") // This test does not send large payload over the wire def "Append Large File"() { given: From 4b6376d78c5d1feff450fe959f083d54268956f6 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Mon, 6 Jul 2020 10:04:01 -0700 Subject: [PATCH 11/13] Add more memory for large blob tests --- sdk/storage/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/storage/tests.yml b/sdk/storage/tests.yml index bd24f26db49c..bd7b7464aa11 100644 --- a/sdk/storage/tests.yml +++ b/sdk/storage/tests.yml @@ -45,3 +45,6 @@ jobs: AZURE_CLIENT_SECRET: $(aad-azure-sdk-test-client-secret) VERSIONED_STORAGE_ACCOUNT_NAME: $(java-storage-versioned-account-name) VERSIONED_STORAGE_ACCOUNT_KEY: $(java-storage-versioned-account-key) + +variables: + MemoryOptions: '-Xmx8g' From afe2e8bb97d4ee66d19d7c4e3a8b23790b32bab1 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Mon, 6 Jul 2020 17:37:58 -0700 Subject: [PATCH 12/13] Ignored large file tests --- .../test/java/com/azure/storage/blob/LargeBlobTest.groovy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy index 74f70f000a18..9fde87c654e4 100644 --- a/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy +++ b/sdk/storage/azure-storage-blob/src/test/java/com/azure/storage/blob/LargeBlobTest.groovy @@ -122,6 +122,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("IS mark/reset") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload"() { given: @@ -140,6 +141,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Blob in Single Upload Async"() { given: @@ -156,6 +158,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("IS mark/reset") // This test does not send large payload over the wire def "Stage Large Blob"() { given: @@ -172,6 +175,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("OOM") // This test does not send large payload over the wire def "Upload Large Input"() { given: @@ -209,6 +213,7 @@ class LargeBlobTest extends APISpec { } @Requires({ liveMode() }) + @Ignore("IS mark/reset") // This test does not send large payload over the wire def "Upload Large Input Sync"() { given: From 48340a939ec3d2633cd6f2423399b401644b92b9 Mon Sep 17 00:00:00 2001 From: Gauri Prasad Date: Mon, 6 Jul 2020 17:38:25 -0700 Subject: [PATCH 13/13] revert tests.yml mem change --- sdk/storage/tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/storage/tests.yml b/sdk/storage/tests.yml index bd7b7464aa11..a8bd8cec347f 100644 --- a/sdk/storage/tests.yml +++ b/sdk/storage/tests.yml @@ -46,5 +46,3 @@ jobs: VERSIONED_STORAGE_ACCOUNT_NAME: $(java-storage-versioned-account-name) VERSIONED_STORAGE_ACCOUNT_KEY: $(java-storage-versioned-account-key) -variables: - MemoryOptions: '-Xmx8g'