Slackbot
11/11/2023, 6:27 PMElijah Grimaldi
11/11/2023, 6:28 PMSlackbot
11/15/2023, 5:22 PMElijah Grimaldi
11/15/2023, 5:23 PMSlackbot
11/17/2023, 4:58 PMSlackbot
11/27/2023, 11:45 PMKoorous Vargha
12/01/2023, 4:42 AM// Check the migration status for all source and destination cluster stores
Pattern systemStorePattern = Pattern.compile(storeName);
Stream<String> allSrcStoreNames = srcControllerClient.getClusterStores(srcClusterName).stream().filter(srcStoreName -> systemStorePattern.matcher(srcStoreName).matches());
Stream<String> allDestStoreNames = destControllerClient.getClusterStores(destClusterName).stream().filter(destStoreName -> systemStorePattern.matcher(destStoreName).matches());
allSrcStoreNames.forEach(srcStorename -> printMigrationStatus(srcControllerClient, srcStorename));
allDestStoreNames.forEach(destStorename -> printMigrationStatus(destControllerClient, destStorename));
Zac Policzer
12/01/2023, 4:44 AMZac Policzer
12/01/2023, 4:44 AMSlackbot
12/01/2023, 4:45 AMSlackbot
12/06/2023, 11:00 PMSlackbot
01/26/2024, 2:20 AMFelix GV
02/24/2024, 2:45 AMModitha Hewasinghage
05/21/2024, 11:18 AMFelix GV
06/07/2024, 7:31 PMFelix GV
08/16/2024, 12:38 AMModitha Hewasinghage
09/19/2024, 10:59 AMFelix GV
10/21/2024, 6:00 PMFelix GV
03/17/2025, 7:59 PMFelix GV
03/25/2025, 5:08 PMFelix GV
03/25/2025, 6:46 PMFelix GV
03/25/2025, 6:46 PMFelix GV
03/25/2025, 6:46 PMJia
03/26/2025, 10:06 PMFelix GV
04/17/2025, 11:29 PMGabriel Drouin
04/22/2025, 2:28 PM./gradlew check --continue
with Ubuntu 24.04.1 LTS on WSL2 (Windows 11).
In a nutshell: numerous integration/e2e tests would fail due to timeouts. I'll setup the work environment on my Macbook Pro instead.
Further details in replyGabriel Drouin
04/25/2025, 6:12 PMGabriel Drouin
05/07/2025, 1:15 PM:internal:venice-common:test --tests "com.linkedin.venice.utils.TestHelixUtils"
, the tests run sequentially, which takes some time. I was wondering if you knew of any way to run multiple tests in parallel.
I remember that ./gradlew check --continue
would spawn x threads when running the full suite, and thought perhaps I would be able to do the same thing here, or similar.
Thanks!
EDIT: it doesn't actually take that long, but thought it might be helpful to know in the future.