-
Notifications
You must be signed in to change notification settings - Fork 5
fix: task cleanup in ExchangeClientTest to prevent CI timeout (#16168) #1433
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
base: oss-baseline
Are you sure you want to change the base?
Conversation
|
Test passed for commit 1777c7523, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/394/display/redirect for details |
Signed-off-by: Yuan <[email protected]> Set ccache maximum size to 1G Remove sed command from Gluten workflow Removed a sed command that replaces 'oap-project' with 'IBM' in the get-velox.sh script. Modify get-velox.sh to change 'ibm' to 'ibm-xxx' Update the get-velox.sh script to replace 'ibm' with 'ibm-xxx'. Update sed command to be case-insensitive Update gluten.yml fix iceberg unit test Signed-off-by: Yuan <[email protected]> Update gluten.yml Enable enhanced features in gluten build script Update cache keys for Gluten workflow
|
❌ Test commit 2a50cd131 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/2/display/redirect for details |
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/4/display/redirect for details |
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/5/display/redirect for details |
28dabdb to
3026e31
Compare
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/6/display/redirect for details |
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/7/display/redirect for details |
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/8/display/redirect for details |
|
❌ Test commit 0007f37c6 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/PR-2057/9/display/redirect for details |
3026e31 to
72886ca
Compare
set restore key
72886ca to
4a8bc9b
Compare
|
❌ Test commit a017fca78 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/427/display/redirect for details |
|
❌ Test commit a236cf5b3 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/428/display/redirect for details |
|
❌ Test commit 0f21ff954 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/429/display/redirect for details |
|
❌ Test commit e01ca2187 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/430/display/redirect for details |
|
❌ Test commit 4f39eef54 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/431/display/redirect for details |
|
❌ Test commit eba05296b failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/437/display/redirect for details |
|
❌ Test commit bf9e9fd6d failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/440/display/redirect for details |
|
❌ Test commit 4ff28c6bf failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/449/display/redirect for details |
… outer join Signed-off-by: Yuan <[email protected]> Alchemy-item: (ID = 882) [OAP] [11771] Fix smj result mismatch issue commit 1/1 - ada7dd2
…acebookincubator#16035)" This reverts commit 9f98432. Alchemy-item: (ID = 1066) Iceberg staging hub commit 1/21 - 4830b15
…facebookincubator#15477)" This reverts commit 1895711. Alchemy-item: (ID = 1066) Iceberg staging hub commit 6/21 - 29d5860
…incubator#15443)" This reverts commit 51d4a94. Alchemy-item: (ID = 1066) Iceberg staging hub commit 7/21 - 2efb143
The function toValues removes duplicated values from the vector and return them in a std::vector. It was used to build an InPredicate. It will be needed for building NOT IN filters for Iceberg equality delete read as well, therefore moving it from velox/functions/prestosql/InPred icate.cpp to velox/type/Filter.h. This commit also renames it to deDuplicateValues to make it easier to understand. Alchemy-item: (ID = 1066) Iceberg staging hub commit 9/21 - 59e7116
This commit introduces EqualityDeleteFileReader, which is used to read Iceberg splits with equality delete files. The equality delete files are read to construct domain filters or filter functions, which then would be evaluated in the base file readers. When there is only one equality delete field, and when that field is an Iceberg identifier field, i.e. non-floating point primitive types, the values would be converted to a list as a NOT IN domain filter, with the NULL treated separately. This domain filter would then be pushed to the ColumnReaders to filter our unwanted rows before they are read into Velox vectors. When the equality delete column is a nested column, e.g. a sub-column in a struct, or the key in a map, such column may not be in the base file ScanSpec. We need to add/remove these subfields to/from the SchemaWithId and ScanSpec recursively if they were not in the ScanSpec already. A test is also added for such case. If there are more than one equality delete field, or the field is not an Iceberg identifier field, the values would be converted to a typed expression in the conjunct of disconjunts form. This expression would be evaluated as the remaining filter function after the rows are read into the Velox vectors. Note that this only works for Presto now as the "neq" function is not registered by Spark. See https://github.com/ facebookincubator/issues/12667 Note that this commit only supports integral types. VARCHAR and VARBINARY need to be supported in future commits (see facebookincubator#12664). Co-authored-by: Naveen Kumar Mahadevuni <[email protected]> # Conflicts: # velox/connectors/hive/iceberg/tests/IcebergReadTest.cpp # Conflicts: # velox/dwio/common/ScanSpec.h # Conflicts: # velox/type/Filter.h # Conflicts: # velox/connectors/hive/HiveDataSource.cpp # velox/connectors/hive/SplitReader.cpp # velox/connectors/hive/SplitReader.h Alchemy-item: (ID = 1066) Iceberg staging hub commit 10/21 - cf94216
# Conflicts: # velox/connectors/hive/HiveConnectorUtil.cpp Alchemy-item: (ID = 1066) Iceberg staging hub commit 11/21 - a59bca9
Co-authored-by: Chengcheng Jin <[email protected]> Alchemy-item: (ID = 1066) Iceberg staging hub commit 12/21 - e45fb49
Alchemy-item: (ID = 1066) Iceberg staging hub commit 13/21 - e7d93fe
# Conflicts: # velox/dwio/parquet/writer/Writer.cpp # velox/dwio/parquet/writer/Writer.h # velox/dwio/parquet/writer/arrow/ArrowSchema.cpp # velox/dwio/parquet/writer/arrow/ArrowSchema.h # velox/dwio/parquet/writer/arrow/Metadata.cpp Alchemy-item: (ID = 1066) Iceberg staging hub commit 14/21 - 56c55ca
Alchemy-item: (ID = 1066) Iceberg staging hub commit 15/21 - c661c4e
Alchemy-item: (ID = 1066) Iceberg staging hub commit 16/21 - bbb7671
Alchemy-item: (ID = 1066) Iceberg staging hub commit 17/21 - c82ee88
Alchemy-item: (ID = 1066) Iceberg staging hub commit 18/21 - 9db788b
Alchemy-item: (ID = 1066) Iceberg staging hub commit 19/21 - dd6148f
Alchemy-item: (ID = 1066) Iceberg staging hub commit 20/21 - 57e0283
Alchemy-item: (ID = 1066) Iceberg staging hub commit 21/21 - a3275b7
Signed-off-by: Yuan <[email protected]> Alchemy-item: (ID = 906) fix: Adding daily tests commit 1/2 - e2eb2c6
we can cache ccache on every build even on failure, since ibm/velox is always incremental build Alchemy-item: (ID = 906) fix: Adding daily tests commit 2/2 - 0899ddc
Alchemy-item: (ID = 1046) Remove website folder commit 1/1 - 1787292
Signed-off-by: Linsong Wang <[email protected]>
04f5c72 to
054c862
Compare
|
❌ Test commit b3aa142e8 failed, open https://ci.ibm.prestodb.dev/job/presto-performance/job/presto-performance/job/pipeline-rebase-ibm-velox/771/display/redirect for details |
Test PR for branch staging-b3aa142e8-pr with head b3aa142