This is an automated email from the ASF dual-hosted git repository. espino pushed a commit to branch ci-fix in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit c81d8f7c1c67ed9d23fe3fc750ad5c3a1c772211 Author: Ed Espino <[email protected]> AuthorDate: Mon Oct 6 08:29:04 2025 -0700 Document disk-intensive test placement in greenplum_schedule Add comment explaining why autovacuum-template0-segment and profile tests are positioned early in the test schedule. These tests consume significant disk space through WAL generation, XID consumption, and autovacuum operations. Running them early when ~20GB disk space is available (vs ~10GB later) helps avoid disk exhaustion issues during test execution. --- src/test/regress/greenplum_schedule | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/test/regress/greenplum_schedule b/src/test/regress/greenplum_schedule index ecf37e73029..8b59b6ce4a6 100755 --- a/src/test/regress/greenplum_schedule +++ b/src/test/regress/greenplum_schedule @@ -15,6 +15,14 @@ # hitting max_connections limit on segments. # +# Run disk-intensive tests early when maximum disk space is available. +# These tests consume significant disk space through WAL generation, XID consumption, +# and autovacuum operations. Running them early helps avoid disk exhaustion issues. +test: autovacuum-template0-segment + +# check profile feature +test: profile + # test for builtin namespace pg_ext_aux test: pg_ext_aux @@ -323,7 +331,6 @@ test: fts_recovery_in_progress ignore: mirror_replay test: autovacuum test: autovacuum-segment -test: autovacuum-template0-segment # gpexpand introduce the partial tables, check them if they can run correctly test: gangsize gang_reuse @@ -334,9 +341,6 @@ test: run_utility_gpexpand_phase1 # check correct error message when create extension error on segment test: create_extension_fail -# check profile feature -test: profile - # check offload entry root slice to QE feature test: offload_entry_to_qe --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
