893 B
893 B
description
| description |
|---|
| Deploy tested Dataform table to production |
You are deploying a Dataform table to production using best practices from the dataform-engineering-fundamentals skill.
Workflow:
- Invoke the dataform-engineering-fundamentals skill
- Ask the user which table they want to deploy
- Pre-deployment verification:
- Confirm the table has been tested in dev environment
- Verify all tests are passing
- Check that documentation (columns: {}) is complete
- Deployment:
- Run
dataform run --dry-run --actions <table_name>(production dry-run) - If successful, run
dataform run --actions <table_name>(production execution) - Verify deployment with validation queries
- Run
- Report deployment results
Critical: Never deploy without dev testing first. Wrong results delivered quickly are worse than correct results delivered with a small delay.