You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Quanlong Huang (Jira)" <ji...@apache.org> on 2019/10/22 02:59:00 UTC

[jira] [Created] (IMPALA-9078) Improve Build Time in China

Quanlong Huang created IMPALA-9078:
--------------------------------------

             Summary: Improve Build Time in China
                 Key: IMPALA-9078
                 URL: https://issues.apache.org/jira/browse/IMPALA-9078
             Project: IMPALA
          Issue Type: Improvement
            Reporter: Quanlong Huang


Investigate how to improve the build time in China. Most of the build time spends in downloading dependencies. It's possible to take several hours and usually fail in downloading something.

For maven dependencies, it's suggested for Chinese developers to use Aliyun repo by adding this in your ~/.m2/settings.xml
{code:java}
<?xml version="1.0" encoding="UTF-8"?>
<settings>
    <mirrors>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    </mirrors>
</settings>{code}
Still need to figure out how to improve the download from [https://pypi.python.org|https://pypi.python.org/] and [https://native-toolchain.s3.amazonaws.com|https://native-toolchain.s3.amazonaws.com/] .



--
This message was sent by Atlassian Jira
(v8.3.4#803005)