celeborn/cpp
codenohup 0fa600ade1 [CELEBORN-2055] Fix some typos
### What changes were proposed in this pull request?
Inspired by [FLINK-38038](https://issues.apache.org/jira/projects/FLINK/issues/FLINK-38038?filter=allissues]), I used [Tongyi Lingma](https://lingma.aliyun.com/) and qwen3-thinking LLM to identify and fix some typo issues in the Celeborn codebase. For example:
- backLog → backlog
- won`t → won't
- can to be read → can be read
- mapDataPartition → mapPartitionData
- UserDefinePasswordAuthenticationProviderImpl → UserDefinedPasswordAuthenticationProviderImpl

### Why are the changes needed?
Remove typos to improve source code readability for users and ease development for developers.

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
Code and documentation cleanup does not require additional testing.

Closes #3356 from codenohup/fix-typo.

Authored-by: codenohup <huangxu.walker@gmail.com>
Signed-off-by: SteNicholas <programgeek@163.com>
2025-07-10 12:01:02 +08:00
..
celeborn [CELEBORN-2055] Fix some typos 2025-07-10 12:01:02 +08:00
cmake [CELEBORN-1741][CIP-14] Add processBase utils to cppClient 2024-11-26 13:38:16 +08:00
scripts [CELEBORN-1978][CIP-14] Add code style checking for cppClient 2025-05-12 11:16:36 +08:00
.clang-format [CELEBORN-1741][CIP-14] Add processBase utils to cppClient 2024-11-26 13:38:16 +08:00
CMakeLists.txt [CELEBORN-1761][CIP-14] Add cppProto to cppClient 2024-12-10 17:04:46 +08:00
README.md [CELEBORN-1978][CIP-14] Add code style checking for cppClient 2025-05-12 11:16:36 +08:00

[WIP] Celeborn Cpp Support

Environment Setup

We provide several methods to setup dev environment for CelebornCpp. Note that currently the scripts only take care of the cpp-related dependencies, and java dependencies are not included.

Clone the project

We should clone the project as:

# the option `--config core.symlinks=true` is to make sure that the softlink works
git clone git@github.com:apache/celeborn.git --config core.symlinks=true

Use container with prebuilt image

We provide a pre-built image ready to be pulled and used so you could launch a container directly:

export PROJECT_DIR=/your/path/to/celeborn/dir
docker run \
    -v ${PROJECT_DIR}:/celeborn \
    -w /celeborn \
    -it --rm \
    --name celeborn-cpp-dev-container \
    holylow/celeborn-cpp-dev:0.3 \
    /bin/bash

Build image and use container

We provide the dev image building scripts so you could build the image and launch a container as follows:

cd scripts

# build image
bash ./build-docker-image.sh

# launch container with image above
bash ./launch-docker-container.sh

Build on local machine (Ubuntu-Only)

Currently, we only provide the dev-environment setup script for Ubuntu:

cd scripts
bash setup-ubuntu.sh

Other platforms are not supported yet, and you could use the container above as your dev environment.

Compile and test

Currently, the modules are under development. You could compile the code and run the tests within the dev container by

cd celeborn/cpp
mkdir -p build && cd build
cmake ..
make
ctest