Question 1. Bruin Pipeline Structure
In a Bruin project, what are the required files/directories?
bruin.yml and assets/.bruin.yml and pipeline.yml (assets can be anywhere).bruin.yml and pipeline/ with pipeline.yml and assets/pipeline.yml and assets/ onlyBruin 프로젝트의 기본 구조는:
my-pipeline/
│
├── .bruin.yml ← 프로젝트 설정 파일 (connection 등)
│
└── pipeline/
├── pipeline.yml ← 파이프라인 정의
└── assets/ ← SQL / Python 등 실행 자산
.bruin.yml → 루트에 반드시 필요pipeline/ 디렉토리 → 반드시 존재pipeline.yml → pipeline 폴더 안에 있어야 함assets/ → pipeline 안에 위치bruin.yml ❌ → 점(.) 빠짐pipeline.yml and assets only ❌ → .bruin.yml 없음.bruin.yml and pipeline.yml (assets anywhere) ❌ → 구조 고정임, 아무데나 두면 안 됨