소스 정보
- 저장소
- apache/doris
- 최근 소스 활동
- 2026년 3월 31일 12:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 15,796
- 포크
- 3,913
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/apache/doris --skill doris-docker-regression명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | doris-docker-regression |
| description | Run Doris docker-based regression tests from a clean package |
| compatibility | opencode |
Run Doris docker-based regression tests from a clean package, avoiding contamination from local conf/ or startup script modifications.
Requires Python 3. Install dependencies from docker/runtime/doris-compose/requirements.txt:
python -m pip install --user -r docker/runtime/doris-compose/requirements.txt
If installation fails (especially PyYAML conflicts), use specific versions:
python -m pip install --user pyyaml==5.3.1 docker==6.1.3
python -m pip install --user -r docker/runtime/doris-compose/requirements.txt
Alternatively, use a virtual environment:
python -m venv doris-compose-env
source doris-compose-env/bin/activate
pip install -r docker/runtime/doris-compose/requirements.txt
docker run hello-world # Docker works
docker compose version # Compose v2
docker-compose version # Should resolve to Compose v2
If docker-compose shows TypeError: kwargs_from_env(), make sure it is indeed Docker Compose V2; if not, you need to install and point to the correct version.
Check port availability:
lsof -nP -iTCP:8030,8040,8050,8060,8070,9010,9020,9030,9050,9060 -sTCP:LISTEN
If there is a conflict, ask the user how to handle it.
./build.sh --fe --be -j<parallel_jobs> --output <output_directory>
Sanitize configs from git HEAD:
git show HEAD:conf/fe.conf > <output_directory>/fe/conf/fe.conf
git show HEAD:conf/be.conf > <output_directory>/be/conf/be.conf
git show HEAD:bin/start_fe.sh > <output_directory>/fe/bin/start_fe.sh
chmod 755 <output_directory>/fe/bin/start_fe.sh
Verify clean configs use default ports:
fe.conf: 8030, 9020, 9030, 9010, 8070be.conf: 9060, 8040, 9050, 8060, 8050start_fe.sh: no -agentlib:jdwp debug agentdocker build \
--build-arg OUTPUT_PATH=<output_directory> \
-f docker/runtime/doris-compose/Dockerfile \
-t <image_name>:latest \
.
Create regression-test/conf/regression-conf-custom.groovy:
image = "<image_name>:latest"
excludeDockerTest = false
testGroups = "docker"
./run-regression-test.sh --run -d <directory> -s <suite_name>
| Symptom | Cause | Fix |
|---|---|---|
| 0 suites | excludeDockerTest=true or missing testGroups="docker" | Check regression-conf-custom.groovy |
| JDWP error | start_fe.sh has debug agent | Re-sanitize from git show HEAD:bin/start_fe.sh |
| Wrong ports | Configs have local edits | Re-sanitize from git show HEAD:conf/fe.conf / be.conf |
| Port conflict | Processes using default ports | lsof then kill |
Runtime cluster at /tmp/doris/<suite_name>/:
fe-1/log/fe.log, fe.warn.log, fe.out, health.outbe-1/log/be.INFO, be.WARNING, be.out, health.outdoris-compose.log# 1. Check environment
python --version
docker run hello-world
docker compose version
lsof -nP -iTCP:8030,8040,8050,8060,8070,9010,9020,9030,9050,9060 -sTCP:LISTEN
# 2. Build
./build.sh --fe --be -j60
# 3. Sanitize package configs
git show HEAD:conf/fe.conf > <output_directory>/fe/conf/fe.conf
git show HEAD:conf/be.conf > <output_directory>/be/conf/be.conf
git show HEAD:bin/start_fe.sh > <output_directory>/fe/bin/start_fe.sh
chmod 755 <output_directory>/fe/bin/start_fe.sh
# 4. Build image
docker build --build-arg OUTPUT_PATH=<output_directory> -f docker/runtime/doris-compose/Dockerfile -t <image_name>:latest .
# 5. Configure (create regression-conf-custom.groovy)
# 6. Run
./run-regression-test.sh --run -d <directory> -s <suite_name>