-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Storage] Parallel Spock in Live Tests (#21102)
* let's see * faster! * try this. * oh lord.. * more... * this too... * huh... * does this help ? * and this. * convert to resource locks. * more. * undo that. * try this. * Focus on blobs in live mode. * this isn't necessary * lock this. * wip * lock this. * wip * Revert "wip" This reverts commit f0427d4. * Revert "lock this." This reverts commit 8fd9585. * Revert "wip" This reverts commit 79ccf80. * how about ? * ... * imports. * avro is fine. * races * shares. * race * Revert "shares." This reverts commit d16e093. * this. * dynamic 5 * revert that * imports. * virtual time... * undo this. * fix whitespace * races.. * unflaky that test. * try parallel datalake. * now this guys is lagging behind. * be kind to data lake. * these require exclusive access.
- Loading branch information
1 parent
f6defa7
commit 5b4a493
Showing
24 changed files
with
95 additions
and
34 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-blob-batch/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled false | ||
dynamic(5) | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-blob-changefeed/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled false | ||
dynamic(5) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-blob-cryptography/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled false | ||
dynamic(5) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-blob-nio/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled "LIVE".equalsIgnoreCase(System.getProperty("AZURE_TEST_MODE")) || "LIVE".equalsIgnoreCase(System.getenv("AZURE_TEST_MODE")) | ||
dynamic(5) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-blob/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled "LIVE".equalsIgnoreCase(System.getProperty("AZURE_TEST_MODE")) || "LIVE".equalsIgnoreCase(System.getenv("AZURE_TEST_MODE")) | ||
dynamic(5) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-file-datalake/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled "LIVE".equalsIgnoreCase(System.getProperty("AZURE_TEST_MODE")) || "LIVE".equalsIgnoreCase(System.getenv("AZURE_TEST_MODE")) | ||
dynamic(4) | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-file-share/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled false | ||
dynamic(5) | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-internal-avro/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled true | ||
dynamic(5) | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
sdk/storage/azure-storage-queue/src/test/resources/SpockConfig.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
runner { | ||
parallel { | ||
enabled false | ||
dynamic(5) | ||
} | ||
} |