jiangxt2 commented on PR #11731: URL: https://github.com/apache/gravitino/pull/11731#issuecomment-4788626361
The BackendIT failure appears to be a CI resource issue rather than something introduced by this PR. The only failing test is `CatalogDorisIT.testDorisTablePartitionOperation`, which expects `NoSuchPartitionException` but receives `RuntimeException` caused by `MEM_LIMIT_EXCEEDED` in the Doris BE: ``` sys available memory 1.52 GB less than low water mark 1.56 GB ``` Looking at the stack trace, the failure occurs in `correctJdbcTableFields()` (line 622) during a `SELECT TABLE_COMMENT FROM information_schema.TABLES` query. This code path was not modified by this PR — the Doris BE simply ran out of memory at execution time due to limited free memory on the CI runner. This seems to be a known class of CI flakiness in the Gravitino project. I noticed similar past examples such as #3791 (container startup failure), #2811 (port timing issues), and #4822 (reducing CI resource consumption by excluding redundant tests). Please let me know if there is anything else I should address. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
