-
Notifications
You must be signed in to change notification settings - Fork 161
Make CI runs more stable #2594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make CI runs more stable #2594
Conversation
If there was no other load on the CI server, over 200 s for generation is likely to timeout under load. |
Hmm, wondering if 200-300s is too much in general. What do you think? |
Sounds good. |
As a timeout or for generation? Think a timeout of 5 min is a long time in general, but we don't set it for most commands, right? |
Zünd it. |
Fix CI issues with concurrent SSB data generation and `StoredtableNode`'s cached output expressions. Co-authored-by: Bouncner <martin+github@boissier.de>
Fix CI issues with concurrent SSB data generation and `StoredtableNode`'s cached output expressions. Co-authored-by: Bouncner <martin+github@boissier.de>
Recently, we encountered many CI issues with SSB tests that called the dbgen in in parallel. This PR moves execution of
hyriseBenchmarkStarSchema_test.py
to an own stage and removes SSB data generation fromhyriseConsole_test.py
. Furthermore, an issue with concurrent writes ofStoredtableNode
's cached output expressions for cached PQPs has been resolved by @Bouncner.