Skip to content

[BugFix] Abort BE vacuum tasks once the FE caller's timeout elapses#74694

Open
starrocks-xupeng wants to merge 2 commits into
StarRocks:mainfrom
starrocks-xupeng:vacuum_task_timeout
Open

[BugFix] Abort BE vacuum tasks once the FE caller's timeout elapses#74694
starrocks-xupeng wants to merge 2 commits into
StarRocks:mainfrom
starrocks-xupeng:vacuum_task_timeout

[BugFix] Add lake_vacuum_enable_task_timeout to gate the vacuum task …

736c245
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / SQL-Tester Report failed Jun 12, 2026 in 0s

1374 tests run, 1373 passed, 0 skipped, 1 failed.

Annotations

Check failure on line 1 in TestSQLCases

See this annotation in the file changed.

@github-actions github-actions / SQL-Tester Report

TestSQLCases.test_mv_with_iceberg_partition_transform

'True' != 'False'
- True
+ False
Raw output
[Stacktrace]: 
Traceback (most recent call last):
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 59, in testPartExecutor
    yield
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 592, in run
    self._callTestMethod(testMethod)
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 550, in _callTestMethod
    method()
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/site-packages/nose/case.py", line 170, in runTest
    self.test(*self.arg)
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/site-packages/parameterized/parameterized.py", line 620, in standalone_func
    return func(*(a + p.args), **p.kwargs, **kw)
  File "/home/runner/_work/starrocks/starrocks/test/lib/sql_annotation.py", line 53, in wrapper
    raise e
  File "/home/runner/_work/starrocks/starrocks/test/lib/sql_annotation.py", line 44, in wrapper
    res = func(*args, **kwargs)
  File "/home/runner/_work/starrocks/starrocks/test/test_sql_cases.py", line 493, in test_sql_basic
    self.check(sql_id, sql, expect_res, actual_res, order, ori_sql)
  File "/home/runner/_work/starrocks/starrocks/test/lib/sr_sql_lib.py", line 1465, in check
    tools.assert_equal(str(exp), str(act))
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 837, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 1217, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/root/.pyenv/versions/3.9.19/lib/python3.9/unittest/case.py", line 676, in fail
    raise self.failureException(msg)
AssertionError: 'True' != 'False'
- True
+ False


[Standard Output]: 
?[1;32m------------------------------------------------------------ ?[0m
?[1;32m[case name]: test_mv_with_iceberg_partition_transform ?[0m
?[1;32m[case file]: sql/test_transparent_mv/R/test_mv_with_iceberg_partition_transform ?[0m
?[1;32m------------------------------------------------------------ ?[0m
	 → case db: ['db_61579f59e1144585bc428739ee238c9e']
	 → case resource: []
create database db_61579f59e1144585bc428739ee238c9e;
use db_61579f59e1144585bc428739ee238c9e;
create external catalog mv_iceberg_61579f59e1144585bc428739ee238c9e
properties
(
    "type" = "iceberg",
    "iceberg.catalog.type" = "hive",
    "hive.metastore.uris" = "thrift://172.20.190.199:9083"
);
CREATE MATERIALIZED VIEW test_mv1
PARTITION BY (date_trunc('month', prcdate))
REFRESH DEFERRED MANUAL
PROPERTIES ("replication_num" = "1")
AS
  SELECT * FROM mv_iceberg_61579f59e1144585bc428739ee238c9e.sql_test_db.test_iceberg_with_month;
REFRESH MATERIALIZED VIEW test_mv1 PARTITION (('2025-01-01'), ('2025-01-02'), ('2025-01-03')) WITH SYNC MODE;
[FUNCTION]: print_hit_materialized_view("SELECT distinct prcdate FROM mv_iceberg_61579f59e1144585bc428739ee238c9e.sql_test_db.test_iceberg_with_month order by prcdate;", "test_mv1")
?[1;32m******************** [FINISH] test_mv_with_iceberg_partition_transform ******************** ?[0m