Conversation
HTHou
marked this pull request as ready for review
September 14, 2026 01:58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Stop publishing the standalone CLI, ConfigNode and DataNode binary distributions. These components are already included in
apache-iotdb-<version>-all-bin.zip, so users can download that archive and run the components they need.Remove the three release assembly descriptors and their SHA-512 entries. These archives are no longer attached as Maven artifacts, so release signing no longer produces their signatures. Keep the internal module ZIPs used to assemble the all-in-one distribution, the integration-test templates, and the remaining release distributions.
Update the ConfigNode and DataNode Dockerfiles to consume
all-bin.zipand use its extraction directory. Update both prebuilt-archive checks and source-build copying in the Docker helper. Image tags, entrypoints and component selection remain unchanged; the node images now contain the all-in-one package contents. Update the Docker documentation and remove references to the retired descriptors from the Edge assembly checks.Validation
mvn clean package -pl distribution -am -DskipTestspassed.apache-release,with-cpp,with-ainode: the retired artifacts are absent and the remaining assembly/checksum entries and release signing configuration are preserved.python3 .github/scripts/test-edge-ops.py: 24 passed, 1 Windows-only test skipped.bash -n docker/src/main/DockerCompose/do-docker-build.shpassed. A temporary mock harness verified the ConfigNode/DataNode/standalone/latest paths with only an all-in-one archive, ConfigNode/DataNode source-build copying with only all-in-one and AINode archives, and role-specific entrypoint dispatch.git diff --checkpassed.Actual Docker image builds and container startup were not run because the local Docker daemon is unavailable. Docker checks above cover script behavior and archive inputs.
This PR has: