Uh oh!
There was an error while loading. Please reload this page.
GH-41470: [C++] Reuse deduplication logic for direct registration - #41466
Conversation
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format? or In the case of PARQUET issues on JIRA the title also supports: See also: |
bkietz
commented
Apr 30, 2024
@github-actions crossbow submit -g homebrew |
Revision: e798267 Submitted crossbow builds: ursacomputing/crossbow @ actions-05f8f5ff1f
|
vibhatha
commented
Apr 30, 2024
@github-actions crossbow submit java |
bkietz
commented
Apr 30, 2024
@github-actions crossbow submit -g java-jars |
|
Revision: e798267 Submitted crossbow builds: ursacomputing/crossbow @ actions-9c4f4373f4 |
lidavidm
commented
May 1, 2024
@github-actions crossbow submit java-jars |
| matrix: | ||
| platform: | ||
| - { runs_on: ["macos-latest"], arch: "x86_64"} | ||
| - { runs_on: ["macos-13"], arch: "x86_64"} |
There was a problem hiding this comment.
macos-latest == macos-14 now so if we want amd64 we have to explicitly request macos-13
Revision: 2fd3fcc Submitted crossbow builds: ursacomputing/crossbow @ actions-319edba519
|
bkietz
commented
May 1, 2024
The error doesn't seem related to filesystem anymore: https://github.com/ursacomputing/crossbow/actions/runs/8903205653/job/24451424677#step:6:16247 I'm not sure what it means though |
vibhatha
commented
May 1, 2024
@lidavidm this seems to be from the recent maven build update? |
lidavidm
commented
May 1, 2024
We can merge this regardless and @vibhatha can file a new ticket. |
After merging your PR, Conbench analyzed the 7 benchmarking runs that have been run so far on merge-commit 14c54bb. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 22 possible false positives for unstable benchmarks that are known to sometimes produce them. |
raulcd
commented
May 7, 2024
…on (apache#41466) ### Rationale for this change As observed in apache#41309 a crossbow job on mac is failing due to duplicate registration of a factory for the file:// scheme ### What changes are included in this PR? Deduplication of registered filesystem factories is applied to direct registration as well as when merging registries. ### Are these changes tested? No, we just need to verify that the problematic crossbow job is repaired. ### Are there any user-facing changes? No * GitHub Issue: apache#41470 Lead-authored-by: Benjamin Kietzman <bengilgit@gmail.com> Co-authored-by: David Li <li.davidm96@gmail.com> Signed-off-by: David Li <li.davidm96@gmail.com>
Rationale for this change
As observed in #41309 a crossbow job on mac is failing due to duplicate registration of a factory for the file:// scheme
What changes are included in this PR?
Deduplication of registered filesystem factories is applied to direct registration as well as when merging registries.
Are these changes tested?
No, we just need to verify that the problematic crossbow job is repaired.
Are there any user-facing changes?
No