This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 2cd5c50e5 ORC-1811: Use the recommended `closer.lua` URL to download 
ORC format
2cd5c50e5 is described below

commit 2cd5c50e5924f8a7623f1df1d171553afedaac0d
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Dec 10 13:57:37 2024 -0800

    ORC-1811: Use the recommended `closer.lua` URL to download ORC format
    
    This PR aims to use the ASF-recommended `closer.lua` URL instead of the 
direct `dlcdn` link or `archive` link.
    - https://infra.apache.org/release-download-pages.html#download-page
    
        >  you can generate a direct download link using the following syntax:
        > 
http://www.apache.org/dyn/closer.lua/bar/foo/foo-5.5.1.zip?action=download
    
    To use the recommended download link in order to stabilize CIs.
    
    This is suggested from Arrow community.
    - https://github.com/apache/orc/pull/1830#issuecomment-2529406685
    - https://github.com/apache/arrow/pull/44977
    
    Pass the CIs.
    
    No.
    
    Closes #2081 from dongjoon-hyun/ORC-1811.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit 28fe6764b191ba607c8f2479aded537f2a78f573)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 cmake_modules/ThirdpartyToolchain.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake_modules/ThirdpartyToolchain.cmake 
b/cmake_modules/ThirdpartyToolchain.cmake
index 80c1064b7..40fb6adce 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -72,7 +72,7 @@ endif ()
 # ----------------------------------------------------------------------
 # ORC Format
 ExternalProject_Add (orc-format_ep
-  URL 
"https://archive.apache.org/dist/orc/orc-format-${ORC_FORMAT_VERSION}/orc-format-${ORC_FORMAT_VERSION}.tar.gz";
+  URL 
"https://www.apache.org/dyn/closer.lua/orc/orc-format-${ORC_FORMAT_VERSION}/orc-format-${ORC_FORMAT_VERSION}.tar.gz?action=download";
   URL_HASH 
SHA256=739fae5ff94b1f812b413077280361045bf92e510ef04b34a610e23a945d8cd5
   CONFIGURE_COMMAND ""
   BUILD_COMMAND     ""

Reply via email to