컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
터보 모드
이 페이지에서는 Cortex Framework Data Foundation 배포에 터보 모드를 사용 설정하는 선택적 단계를 설명합니다. Google Cloud Cortex Framework는 config.json
파일에서 데이터 파이프라인을 설정할 때 고려해야 할 다음 두 가지 배포 모드를 제공합니다.
표준 모드 (turboMode=false
):
이 옵션은 아직 데이터 소스를 조정 중이거나 뷰와 실제 데이터 테이블 간에 불일치가 있을 수 있다고 생각되는 경우에 권장됩니다. 이 모드에서 배포 프로세스는 일부 뷰에 오류가 있더라도 구성에 정의된 모든 뷰를 만들려고 시도합니다. 이렇게 하면 시간이 더 오래 걸릴 수 있지만 한 번 실행으로 모든 잠재적 문제 (뷰와 테이블 간의 불일치)를 식별하는 데 도움이 됩니다.
터보 모드 (turboMode=true
):
이 모드는 데이터 소스 구성이 올바르게 완료된 후 더 빠르게 배포하기 위한 모드입니다. 배포 프로세스는 올바른 종속 항목 파일 (예: dependencies_ecc.txt
또는 dependencies_s4.txt
)의 각 뷰가 포함된 cloudbuild.views.yaml
파일을 빌드의 단일 단계로 동적으로 생성합니다. 이렇게 하면 배포 시간이 최대 10배까지 빨라질 수 있습니다.
단점은 배포 중에 뷰에 오류가 발생하면 전체 프로세스가 중지된다는 점입니다. 특정 오류를 식별하기 위해 배포를 다시 실행해야 할 수 있으므로 디버깅 목적으로는 적합하지 않을 수 있습니다.
초기 설정 또는 문제 해결에는 '표준'을, 나중에 더 빠르게 배포하려면 '터보'를 선택하는 것이 좋습니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-09-10(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-10(UTC)"],[[["\u003cp\u003eTurbo Mode is an optional setting within the Cortex Framework Data Foundation deployment that offers faster deployment speeds.\u003c/p\u003e\n"],["\u003cp\u003eStandard Mode (\u003ccode\u003eturboMode=false\u003c/code\u003e) is designed for initial setup and troubleshooting, allowing the identification of errors in multiple views during a single deployment run.\u003c/p\u003e\n"],["\u003cp\u003eTurbo Mode (\u003ccode\u003eturboMode=true\u003c/code\u003e) is optimized for quicker deployments after the data source configuration is finalized, generating dependency files on-the-fly.\u003c/p\u003e\n"],["\u003cp\u003eWhile Turbo Mode greatly increases deployment speed, an error in any view will halt the entire process, making Standard Mode better for debugging.\u003c/p\u003e\n"],["\u003cp\u003eThe recommendation is to use Standard Mode initially and switch to Turbo Mode once the data source is correctly configured.\u003c/p\u003e\n"]]],[],null,["# Turbo mode\n==========\n\nThis page describes an optional step to enable the Turbo Mode for\nthe Cortex Framework Data Foundation deployment. Google Cloud Cortex Framework offers the following two\ndeployment modes to consider when setting up your\ndata pipelines in the [`config.json`](https://github.com/GoogleCloudPlatform/cortex-data-foundation/blob/main/config/config.json) file.\n\n1. **Standard Mode (`turboMode=false`)**:\n\n This option is recommended if you are\n still making adjustments to your data source or suspect there might be\n mismatches between your views and the actual data tables. In this mode, the\n deployment process attempts to create all the defined views in your\n configuration, even if there are errors in some views. This might take longer,\n but it helps identify all potential issues (mismatches between views and tables)\n in a single run.\n2. **Turbo Mode (`turboMode=true`)**:\n\n This mode is for faster deployments once your\n data source configuration is done correctly. The deployment process\n dynamically generates a `cloudbuild.views.yaml` file with each view in the\n right dependencies file (for example, `dependencies_ecc.txt` or `dependencies_s4.txt`)\n as a single step of the build. This can significantly speed up\n deployment times (up to 10 times faster).\n However, the downside is that if there's an error in any view during deployment,\n the entire process stops. This might not be ideal for debugging purposes\n as you might need to rerun the deployment to identify the specific error.\n\nThe suggestion is to choose \"Standard\" for initial setup or troubleshooting, and\n\"Turbo\" for faster deployments later."]]