The dbt Cloud Developer plan lets you stand up a minimal setup well-suited to individual learning. Centered on the Web IDE and Git integration, it gives you the full loop: running, testing, and documenting your DAG.
This article walks through connecting to Snowflake, BigQuery, or Databricks; learning safely with least-privilege access; switching jobs and environments; and exam-prep essentials, all from a practitioner's perspective. Official specs are taken from docs.getdbt.com and the dbt certification exam guide, focusing on stable, version-independent concepts.
The Developer (free) plan is a minimal setup where one developer edits a project in the Web IDE and reviews changes via Git. Features like the scheduler and the number of environments are limited, but it is plenty for learning and individual validation. The exact scope and limits can change over time, so check the latest dbt official docs (https://docs.getdbt.com/ and the certification exam guide at https://www.getdbt.com/certifications/analytics-engineer-certification-exam).
The foundation for learning is three pieces: a cloud data warehouse (Snowflake, BigQuery, Databricks, etc.), a Git host (such as GitHub), and dbt Cloud. On the warehouse side, prepare a dedicated learner schema and connect with least privilege for safety.
A trustworthy minimal learning environment (logical architecture)
Connections in dbt Cloud are configured through the UI, where you choose the required parameters and auth method per warehouse. For learning, prepare a dedicated role, dedicated schema, and dedicated warehouse (or equivalent compute), and constrain write targets to stay safe.
BigQuery supports OAuth (user permissions) or a service account. Snowflake requires the account identifier, user, role, warehouse, database, and schema. Databricks needs host, HTTP Path, a Personal Access Token, plus the target catalog/schema/SQL Warehouse. The specifics of free and trial tiers shift over time, so consult each official doc for the latest.
| Platform | Auth methods (examples) | Minimum required parameters | Free/trial tier notes |
|---|---|---|---|
| Snowflake | Username/password, key pair, SSO/SAML | Account, User, Role, Warehouse, Database, Schema | Trial credits and capacity are limited. Check the official Snowflake docs for the latest (https://docs.snowflake.com/). |
| BigQuery | OAuth (user) or service account | Project, Dataset (equivalent to Schema), Location | Sandbox has free-tier and quota limits. Check the official BigQuery docs for the latest (https://cloud.google.com/bigquery/docs/). |
| Databricks | Personal Access Token | Host, HTTP Path, SQL Warehouse, Catalog (if any), Schema | Trial/free tier offerings vary over time. Check the official Databricks docs for the latest (https://docs.databricks.com/). |
Hook dbt Cloud up to GitHub and manage the project in a repository. Even on the Developer plan with one person, protect main and follow a lightweight flow — work on a feature branch → open a PR → run CI → review → merge — and you will also practice the team-development best practices that show up on the exam.
Enable PR-triggered CI and dbt build runs when a PR is opened, validating models, tests, snapshots, and seeds along with their dependencies. When it fails, identify the cause from the logs (undefined sources, failing tests, model compile errors, etc.) and stack up commits to fix it.
The Cloud IDE supports the full loop: edit models, inspect compiled results, run dbt run/test/build, browse logs, and preview docs. When learning, first run a single model in the IDE, then use build to validate it with its dependencies, fixing failing tests as you go — that minimizes rework.
Pairing in local dbt Core lets you use your own editor and extensions. Since Cloud and Core share dbt_project.yml and model assets, running the same project on both is a common setup (connection info lives in the Cloud UI and in profiles.yml for Core). The exam frequently covers the differences between run/test/build, ref()/source(), schema vs data tests, and the docs-generation flow.
Minimal project example (dbt_project.yml / model / tests)
# dbt_project.yml
name: my_dbt_tutorial
version: 1.0.0
config-version: 2
profile: my_profile
model-paths: ["models"]
models:
my_dbt_tutorial:
+materialized: view
# models/stg_orders.sql
with src as (
select * from {{ source('raw', 'orders') }}
)
select
order_id,
customer_id,
order_date::date as order_date,
total_amount::numeric as total_amount
from src
# models/schema.yml
version: 2
sources:
- name: raw
tables:
- name: orders
loaded_at_field: _ingested_at
freshness:
warn_after: {count: 24, period: hour}
error_after: {count: 48, period: hour}
models:
- name: stg_orders
columns:
- name: order_id
tests: [not_null, unique]
- name: customer_id
tests: [not_null]
- name: order_date
tests: [not_null]A dbt Cloud environment is a logical unit that bundles a connection target, target schema, vars, and so on. For learning, a single dev environment is enough, but it is safer to keep schemas personal. Jobs configure commands (e.g., dbt build) and triggers (manual runs, PR-triggered, etc.).
Jobs and scheduling are limited on the Developer plan, so it is realistic to drive learning via PR-triggered CI and manual runs. If you need recurring execution, create a single learning job and substitute a constrained schedule or manual trigger (check the official docs for the currently available features).
Walking through Cloud/CI branching, comprehensive verification via dbt build, schema-test design, and using docs gives you strong footing for exam questions. The DAG, ref()/source(), materializations (view/table/incremental/ephemeral), snapshots, seeds, packages, macros, and Jinja basics all appear frequently.
On the Cloud-specific side, lock in the concepts of environments and jobs, PR builds, and the roles of artifacts (run results, manifest, catalog). The main differences from Core are just how connections are held and where execution runs — the project structure and commands are the same.
Analytics Engineer
問題 1
You want to validate changes safely on the Developer (free) plan. After working on a feature branch and opening a PR, what is the best way to validate models, tests, snapshots, and seeds in one shot, including their dependencies?
正解: A
Running dbt build via PR-triggered CI comprehensively validates seeds → models → tests → snapshots along the DAG. Committing straight to main, running only dbt run, or touching only seeds leaves dependencies and tests unverified and is not safe enough.
What makes the Developer plan good for learning, and how does it differ from paid plans?
It covers the core experiences you need for individual learning: the Web IDE, Git integration, and PR builds. Seats, environments and jobs, SLA, and SSO are reserved for higher-tier plans. Exact limits can change over time, so check the latest dbt Cloud official information.
What should I watch out for with BigQuery Sandbox or the Snowflake trial?
Runs fail once you hit a quota or credit cap, so learn with small sample data and routinely drop tables and schemas you no longer need. Limit permissions to your learning schema so you cannot accidentally write to production-like data.
Can I use Cloud and Core together? What about browsing the docs?
You can run the same project on both Cloud and Core (only the connection configuration is held differently). Docs can be served locally with dbt docs generate / serve. Cloud's hosted documentation feature varies by plan, so check the official information when needed.
Practice with certification-focused question sets
無料で問題を解いてみるNicheeLab Editorial Team
NicheeLab editorial team focused on data engineering and cloud certification learning. Content is structured around practical study needs and official exam domains.
dbt Models: SQL-Defined Transformation Units (2026)
Model fundamentals — SELECT-based definitions, naming, refs,...
dbt Analytics Engineering Exam: Complete Guide (2026)
Pass the AE Certification — scope, weighting, sample questio...
dbt Cloud vs dbt Core: Feature & Cost Comparison (2026)
Honest comparison of dbt Cloud vs. dbt Core — IDE, scheduler...
dbt Project Structure: models/seeds/macros Layout (2026)
Recommended dbt project layout — models, seeds, macros, snap...
dbt_project.yml Explained: Every Config (2026)
Every dbt_project.yml setting that matters — paths, vars, ma...