龙芯 LoongArch64编译es7.17.20

下载es代码

下载好源码后,上传源码到需要编译的服务器

下载gradle版本

打开源码,查看对应es的gradle编译版本

jsx 复制代码
cd ./elasticsearch-7.17.20/gradle/wrapper
vim gradle-wrapper.properties

下面是es7.17.20对应的gradle信息

jsx 复制代码
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=194717442575a6f96e1c1befa2c30e9a4fc90f701d7aee33eb879b79e7ff05c0
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

下载gradle

services.gradle.org/distributio...

将下载的gradle包复制到 elasticsearch-7.17.20/gradle/wrapper路径下

修改gradle-wrapper.properties信息,distributionUrl删除前缀,从本地load gradle

jsx 复制代码
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=194717442575a6f96e1c1befa2c30e9a4fc90f701d7aee33eb879b79e7ff05c0
distributionUrl=gradle-8.7-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

修改Architecture.java 文件,添加loongarch64架构支持

文件路径为:/elasticsearch-7.17.20/build-tools/src/main/java/org/elasticsearch/gradle/Architecture.java

jsx 复制代码
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.gradle;

public enum Architecture {

    X64("x86_64", "linux/amd64"),
    AARCH64("aarch64", "linux/arm64");
    LOONGARCH64("loongarch64"); // ✅ 新增

    public final String classifier;
    public final String dockerPlatform;

    Architecture(String classifier, String dockerPlatform) {
        this.classifier = classifier;
        this.dockerPlatform = dockerPlatform;
    }

    public static Architecture current() {
        final String architecture = System.getProperty("os.arch", "");
        switch (architecture) {
            case "amd64":
            case "x86_64":
                return X64;
            case "aarch64":
                return AARCH64;
           case "loongarch64":            // ✅ 新增
                return LOONGARCH64;            
            default:
                throw new IllegalArgumentException("can not determine architecture from [" + architecture + "]");
        }
    }

}

编译es

执行下面的gradle命令,进行es编译

jsx 复制代码
./gradlew :distribution:archives:linux-tar:assemble \
  -x :x-pack:plugin:ml:build \
  -x :x-pack:plugin:ml:bundlePlugin \
  -x :x-pack:plugin:ml:assemble \
  -x :x-pack:plugin:ml:processResources \
  -x :x-pack:plugin:ml:jar \
  -x :x-pack:plugin:ml:zip

构建成功后,包路径为:

jsx 复制代码
distribution/archives/linux-tar/build/distributions/elasticsearch-7.17.20-SNAPSHOT.tar.gz

删除的x-pack-eql模块

路径如下:

jsx 复制代码
elasticsearch-7.17.20-SNAPSHOT/modules/x-pack-eql

禁用ml等模块

修改es的配置config/elasticsearch.yml,添加如下配置:

jsx 复制代码
xpack.security.enabled: false
xpack.ml.enabled: false
xpack.monitoring.enabled: false
xpack.watcher.enabled: false

注意事项

  • 1.本文编译时,使用的jdk版本为openjdk-17构建
相关推荐
野犬寒鸦10 小时前
从零起步学习并发编程 || 第一章:初步认识进程与线程
java·服务器·后端·学习
我爱娃哈哈10 小时前
SpringBoot + Flowable + 自定义节点:可视化工作流引擎,支持请假、报销、审批全场景
java·spring boot·后端
李梨同学丶12 小时前
0201好虫子周刊
后端
思想在飞肢体在追12 小时前
Springboot项目配置Nacos
java·spring boot·后端·nacos
Loo国昌14 小时前
【垂类模型数据工程】第四阶段:高性能 Embedding 实战:从双编码器架构到 InfoNCE 损失函数详解
人工智能·后端·深度学习·自然语言处理·架构·transformer·embedding
wdfk_prog15 小时前
解决 `git cherry-pick` 引入大量新文件的问题
大数据·git·elasticsearch
ONE_PUNCH_Ge15 小时前
Go 语言泛型
开发语言·后端·golang
洛阳纸贵15 小时前
JAVA高级工程师--Elasticsearch
大数据·elasticsearch·搜索引擎
良许Linux15 小时前
DSP的选型和应用
后端·stm32·单片机·程序员·嵌入式
TracyCoder12315 小时前
ElasticSearch内存管理与操作系统(二):深入解析 Circuit Breakers(熔断器)机制
大数据·elasticsearch·搜索引擎