華為云計算 云知識 FusionInsight如何配置
FusionInsight如何配置

簡介

華為云 FusionInsight 智能數(shù)據(jù)湖 ,為業(yè)界提供全融合、智能化、云化的湖倉一體解決方案。方案包含MRS 大數(shù)據(jù) 、DWS 數(shù)據(jù)倉庫 、CSS 云搜索 、GES圖計算、DAYU數(shù)據(jù)運營等云服務(wù);支持大數(shù)據(jù)離線分析、實時流處理、實時檢索、交互查詢等常見大數(shù)據(jù)使用場景,為政府、金融、運營商、大企業(yè)等政企客戶,提供建得快、存得省、用得好的智能 數(shù)據(jù)湖 ,從海量數(shù)據(jù)中發(fā)掘數(shù)據(jù)價值,加速政企智能升級。

依賴管理工具

選擇依賴管理工具 Maven

準(zhǔn)備工作

使用前請確保您已安裝JDK及Maven。如果您尚未安裝,可以點擊下面鏈接下載安裝:

JDK官網(wǎng)下載地址:https://www.oracle.com/technetwork/java/javase/downloads/index.html

Maven加速地址:https://repo.huaweicloud.com/apache/maven/maven-3/

使用說明

點擊此處下載settings.xml文件,覆蓋<Maven安裝目錄>/conf/settings.xml文件即可。如果您不想覆蓋配置文件,可以依次按照下面方法手動修改settings.xml文件:

1、在profiles節(jié)點中添加如下內(nèi)容:

<profile>
    <id>MyProfile</id>
    <repositories>
        <repository>
            <id>FusionInsight</id>
            <url>https://repo.huaweicloud.com/repository/maven/fusioninsight/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
</profile>

2、在mirrors節(jié)點中增加:

<mirror>
    <id>huaweicloud</id>
    <mirrorOf>*,!FusionInsight</mirrorOf>
    <url>https://repo.huaweicloud.com/repository/maven/</url>
</mirror>

3、增加activeProfiles標(biāo)簽激活配置:

<activeProfiles>
    <activeProfile>MyProfile</activeProfile>
</activeProfiles>

相關(guān)網(wǎng)址

Maven官方地址:https://maven.apache.org

Maven搜索地址:http://mvnrepository.com