【openeuler/bisheng-jdk-17 docker image overview】

在这里插入图片描述

Quick reference

BiSheng JDK | openEuler

Current BiSheng JDK docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.

BiSheng JDK is a high-performance OpenJDK distribution for production environments that is developed based on OpenJDK. The BiSheng JDK has been used in a variety of Huawei products, has resolved many problems encountered during service running, and has enhanced ARM architecture. It delivers superior performance in big data scenarios. BiSheng JDK 8 is compatible with the Java SE Specifications, and currently supports the Linux/aarch64 and the Linux/x86_64 platform. As a downstream version of OpenJDK, the BiSheng JDK will continuously contribute to the OpenJDK community.

Key Features:

  • Performs optimization based on the ARM architecture and big data scenarios for better performance.
  • Updates patches on a quarterly basis for higher security.
  • Delivers stable functions after large-scale tests and verification.

Supported tags and respective Dockerfile links

The tag of each BiSheng JDK docker image is consist of the version of BiSheng JDK and the version of basic image. The details are as follows

TagsCurrentlyArchitectures
17.0.10-oe2203sp3BiSheng JDK 17.0.10 on openEuler 22.03-LTS-SP3amd64, arm64

Quick reference (cont.)

Usage

BiSheng JDK docker images provide a customized Java development and running environment based on OpenJDK, it can be used as follows

  • Start a Java instance in your app

    The most straightforward way to use this image is to use a Java container as both the build and runtime environment. In your Dockerfile, writing something along the lines of the following will compile and run your project:

    # Dockerfile
    FROM openeuler/bisheng-jdk:{Tag}
    
    COPY . /usr/src/myapp
    WORKDIR /usr/src/myapp
    RUN javac Main.java
    CMD ["java", "Main"]
    

    You can then run and build the Docker image:

    docker build -t my-java-app .
    docker run -it --rm --name my-running-app my-java-app
    
  • Container test

    Use the following method to verify the JAVA environment installed in the image

    docker run -it openeuler/bisheng-jdk:{Tag} java --version
    

    For example, as the {Tag} is 17.0.10-oe2203sp3, returning the following information proves that the environment is good.

    openjdk 17.0.10 2024-01-16
    OpenJDK Runtime Environment BiSheng (build 17.0.10+11)
    OpenJDK 64-Bit Server VM BiSheng (build 17.0.10+11, mixed mode, sharing)
    
  • Compile your app inside the Docker container

    There may be occasions where it is not appropriate to run your app inside a container. To compile, but not run your app inside the Docker instance, you can write something like:

    docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp openeuler/bisheng-jdk:{Tag} javac Main.java
    

    This will add your current directory as a volume to the container, set the working directory to the volume, and run the command javac Main.java which will tell Java to compile the code in Main.java and output the Java class file to Main.class.

  • Make JVM respect CPU and RAM limits

    On startup the JVM tries to detect the number of available CPU cores and RAM to adjust its internal parameters (like the number of garbage collector threads to spawn) accordingly. When the container is ran with limited CPU/RAM then the standard system API used by the JVM for probing it will return host-wide values. This can cause excessive CPU usage and memory allocation errors with older versions of the JVM.

    Inside Linux containers, OpenJDK versions 8 and later can correctly detect the container-limited number of CPU cores and available RAM. For all currently supported OpenJDK versions this is turned on by default.

    Inside Windows Server (non-Hyper-V) containers, the limit for the number of available CPU cores doesn’t work (it’s ignored by Host Compute Service). To set the limit manually the JVM can be started as:

    start /b /wait /affinity 0x3 path/to/java.exe ...
    

    In this example CPU affinity hex mask 0x3 will limit the JVM to 2 CPU cores.

    RAM limit is supported by Windows Server containers, but currently the JVM cannot detect it. To prevent excessive memory allocations, -XX:MaxRAM=… option must be specified with the value that is not bigger than the containers RAM limit.

  • Environment variables with periods in their names
    Some shells (notably, the BusyBox /bin/sh included in Alpine Linux) do not support environment variables with periods in the names (which are technically not POSIX compliant), and thus strip them instead of passing them through (as Bash does). If your application requires environment variables of this form, either use CMD [“java”, …] directly (no shell), or (install and) use Bash explicitly instead of /bin/sh.

Question and answering

If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.

  • 8
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值