kou commented on issue #40279:
URL: https://github.com/apache/arrow/issues/40279#issuecomment-1972363818
> What is our minimum required AWS SDK version?
I think that we don't define it. Old AWS SDK can be used but there are some
known problems. (I think that we recommend at least the current bundled version
(1.10.55) to avoid known problems.)
If we want to define it, we can do it like the following:
```diff
diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake
b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 951028b699..cf9232f331 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -5031,7 +5031,7 @@ macro(build_awssdk)
endmacro()
if(ARROW_S3)
- resolve_dependency(AWSSDK HAVE_ALT TRUE)
+ resolve_dependency(AWSSDK HAVE_ALT TRUE REQUIRED_VERSION "X.Y.Z")
message(STATUS "Found AWS SDK headers: ${AWSSDK_INCLUDE_DIR}")
message(STATUS "Found AWS SDK libraries: ${AWSSDK_LINK_LIBRARIES}")
```
--
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]