Conversation
…endency issue Agent-Logs-Url: https://github.com/boostscale/velox4j/sessions/e9b61911-f979-4892-9d81-66fb8de1d587 Co-authored-by: zhztheplayer <[email protected]>
Head branch was pushed to by a user without write access
|
The failure is caused by the new Velox version introducing Fixed in 4653de5 by setting Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
|
@copilot which Velox commit triggers this regression? |
The regression was introduced by facebookincubator/velox@ That commit extended the |
|
@copilot shelve your fix, add a velox patch: Index: CMakeLists.txt
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/CMakeLists.txt b/CMakeLists.txt
--- a/CMakeLists.txt (revision 3da0390118fa4b0addbfbdeb03f438ec1b1237a6)
+++ b/CMakeLists.txt (date 1776413275006)
@@ -766,6 +766,10 @@
list(PREPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake/resolve_dependency_modules/s2geometry)
velox_set_source(s2geometry)
velox_resolve_dependency(s2geometry)
+ if(NOT target absl::base)
+ velox_set_source(absl)
+ velox_resolve_dependency(absl)
+ endif()
endif()
add_subdirectory(velox)to see whether the issue can be fixed |
…absl when VELOX_ENABLE_GEO is ON Agent-Logs-Url: https://github.com/boostscale/velox4j/sessions/e6231ae7-6c57-48e5-9cec-68058460667e Co-authored-by: zhztheplayer <[email protected]>
... Done in
|
|
@copilot nevermind, bring your fix back, and add some comments on the |
Agent-Logs-Url: https://github.com/boostscale/velox4j/sessions/ebcf6dfc-4efe-4344-bf21-b7a2f4c755be Co-authored-by: zhztheplayer <[email protected]>
Done in # Disable GEO support: Velox's VELOX_ENABLE_GEO pulls in s2geometry which
# requires absl, but absl is only resolved by Velox when VELOX_BUILD_TESTING=ON
# (for the Spark query runner). Since velox4j builds with
# VELOX_BUILD_TESTING=OFF and does not use any geospatial functions, disable
# this feature to avoid the unresolved absl dependency.
set(VELOX_ENABLE_GEO OFF) |
|
@copilot keep your refactor for code patching |
… OFF fix Agent-Logs-Url: https://github.com/boostscale/velox4j/sessions/a1327d15-608a-4fe6-8b6e-9a65a3a04fa0 Co-authored-by: zhztheplayer <[email protected]>
Done in
|
|
@copilot check ci |
Head branch was pushed to by a user without write access
The Fixed in |
5d07b7a to
5dc00fd
Compare
Update Velox to latest. Diff: facebookincubator/velox@45a03a6...3da0390