Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New global-ish configs: TARGET_PATH + LOG_PATH #1687

Closed
1 task done
jtcohen6 opened this issue Jul 11, 2022 · 0 comments · Fixed by #1698
Closed
1 task done

New global-ish configs: TARGET_PATH + LOG_PATH #1687

jtcohen6 opened this issue Jul 11, 2022 · 0 comments · Fixed by #1698
Assignees
Labels
content Improvements or additions to content dbt-core v1.2 Docs impact for the v1.2 release (July 2022) improvement Use this when an area of the docs needs improvement as it's currently unclear size: small This change will take 1 to 2 days to address

Comments

@jtcohen6
Copy link
Collaborator

Contributions

  • I have read the contribution docs, and understand what's expected of me.

Link to the page on docs.getdbt.com requiring updates

What part(s) of the page would you like to see updated?

dbt-core v1.2 adds support for overriding the log-path and target-path set in dbt_project.yml, via:

  • CLI flag: --log-path, --target-path
  • Env var: DBT_LOG_PATH, DBT_TARGET_PATH

For both types of global/runtime configs, the precedence order is:

  1. CLI flag (dbt run --log-path=other_logs)
  2. Env var (DBT_LOG_PATH=other_logs dbt run)
  3. Yaml file config (dbt_project.yml)

In older versions of dbt, option 2 was already achievable by configuring it in the yaml file like:

# dbt_project.yml
log-path: "{{ env_var('DBT_LOG_PATH', 'logs') }}"

Going forward, that behavior will be implicitly true for all projects.

Additional information

dbt-labs/dbt-core#5402

These are "global [project] configs," subtly different from our existing "global [user/profile] configs." The difference is that log-path and target-path are traditionally defined in dbt_project.yml (per project), instead of the config: block in profiles.yml (per machine).

The source of that tradition is, dbt_project.yml is always in the root directory from which dbt is run, so runtime paths (logs, target, etc) are relative to the project file. Whereas profiles.yml is traditionally in a hidden folder on the machine, outside the root directory / version-controlled file system. (We are thinking about changing that: dbt-labs/dbt-core#5411, dbt-labs/dbt-core#5425)

Unfortunately, it looks like the implementation added support for these flags in a slightly different position from the standard "global config" location. I would've expected dbt --log-path=another run, but it's actually dbt run --log-path=another. Oh well 🤷 we can fix it in post, to make it work in both positions.

(One more reason that, with our work around splitting out + refactoring the dbt-core CLI, we should look to make position matter not at all, and accept flags/arguments wherever they're valid.)

@jtcohen6 jtcohen6 added content Improvements or additions to content improvement Use this when an area of the docs needs improvement as it's currently unclear size: small This change will take 1 to 2 days to address dbt-core v1.2 Docs impact for the v1.2 release (July 2022) labels Jul 11, 2022
@jtcohen6 jtcohen6 mentioned this issue Jul 14, 2022
2 tasks
@jtcohen6 jtcohen6 self-assigned this Jul 14, 2022
jtcohen6 added a commit that referenced this issue Jul 15, 2022
* Add itertools module #1368

* Manifest v6 #1667

* Add set + zip #1635

* File selector method #1627

* Selector inheritance #1628

* Global config for target-path, log-path #1687

* Update website/docs/reference/dbt-jinja-functions/zip.md

Co-authored-by: Anders <[email protected]>

* Update website/docs/reference/dbt-jinja-functions/set.md

Co-authored-by: Anders <[email protected]>

* PR feedback

Co-authored-by: Anders <[email protected]>
runleonarun added a commit that referenced this issue Jul 15, 2022
* add content

* add content

* add content

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* add content

* add content

* Update dimensional-modeling.md

* add content

* add content

* small grammar fix

* changes to include expression metrics

* Fix all broken links in docs subfolder

* Fix blog post broken links

* fixes!

* Remove unused tag item from blog sidebar

* Update redirect

* Fix best practice link

* updating for link

* Update Oracle profile
- New python driver `python-oracledb` related changes which vastly simplifies dbt-oracle installation
- Wallet Configuration is explained in a better manner for 1-way TLS and m-TLS
- Content organization

* Update website/docs/docs/building-a-dbt-project/metrics.md

Co-authored-by: Jeremy Cohen <[email protected]>

* updating wording in metrics

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* reflecting changes in upgrade doc

* Add bold record to data change tables

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update 2022-06-30-lower-sql-function.md

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add strikethrough

* small syntax fixes

* Fix hyperlink

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* updating docs

* fixing conflict

* Add updated redirects

* Fix jinja links

* Fix conflicts

* Update jinja reference redirect

* Add links

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add truncate

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Shorten reading list

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Set featured to true

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* https://github.com/dbt-labs/dbt-core/discussions/5468

* Up[date redirects

* Replace two more migration redirects

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* remove images

* Update revenue-meme.png

* Update revenue-meme.png

* Update revenue-meme.png

* Update redirect

* Update website/blog/2022-07-12-change-data-capture-metrics.md

* Changes in response to review comments
- Changed the phrase one-way TLS to simply TLS
- Included link to official ADB documentation for wallet less TLS connection
- Changed service names to example service names
- Changed the ordering of connection methods. The ordering is TNS Alias, Connect String and Database hostname

* Update website/docs/guides/migration/versions/06-upgrading-to-v1.2.md

Co-authored-by: Jeremy Cohen <[email protected]>

* Update release date

* remove next.docs redirect

* remove extra properties

* Update redirects

* Add redirects back

* add git action to merge current branch into next

* Add wildcard for migration guides

* Add back specific redirects

* v1.2 docs omnibus (#1698)

* Add itertools module #1368

* Manifest v6 #1667

* Add set + zip #1635

* File selector method #1627

* Selector inheritance #1628

* Global config for target-path, log-path #1687

* Update website/docs/reference/dbt-jinja-functions/zip.md

Co-authored-by: Anders <[email protected]>

* Update website/docs/reference/dbt-jinja-functions/set.md

Co-authored-by: Anders <[email protected]>

* PR feedback

Co-authored-by: Anders <[email protected]>

* Update to `grants` documentation (#1707)

* Update docs on hooks re grants

* Update BQ language, link to docs

* Configuring grants, inheritance, reorg

* PR feedback

* Apply correct redirects for older versions

* Update snowflake-configs.md

In researching the use of time travel with dbt, I found the documentation to be mis-leading and thought I needed to change my dbt configuration. The comment that transient tables do not participate in time travel is not correct. Per Snowflake's documentation, Transient tables persist until they are dropped and the time travel default is 1 day and transient tables do not participate in fail safe.

* add links

* Add links

* Fix note

* Fix notes

Co-authored-by: johnblust <[email protected]>
Co-authored-by: Kira Furuichi <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: john-rock <[email protected]>
Co-authored-by: Anders <[email protected]>
Co-authored-by: Abhishek Singh <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: Jeremy Cohen <[email protected]>
Co-authored-by: Grace Goheen <[email protected]>
Co-authored-by: Anders Swanson <[email protected]>
Co-authored-by: John Rock <[email protected]>
Co-authored-by: Jason Karlavige <[email protected]>
Co-authored-by: Beaulieuj <[email protected]>
Co-authored-by: Leona B. Campbell <[email protected]>
runleonarun added a commit that referenced this issue Jul 18, 2022
* Update gitignore.md

updated typo

* Update which-jinja-docs.md

* Update change-billing.md

removed image which was errroring out

* Update payment-accepted.md

updated formatting as it was formatted incorrectly in the live site

* Update managed-repo.md

updated spacing

* Update which-jinja-docs.md

updated broken links

* Update create-dependencies.md

updated broken link

* Update run-downtime.md

updated links

* Update example-projects.md

updated getting started guide link

* Update why-version-2.md

updated sidebar capitalization

* Update checking-logs.md

added capitalization

* Update failed-prod-run.md

added capitalization

* Update failed-tests.md

added capitalization

* Update run-downstream-of-seed.md

added capitalization

* Update run-one-model.md

added capitalization

* Update run-one-snapshot.md

added capitalization

* Update running-models-downstream-of-source.md

added capitalization

* Update snapshot-frequency.md

added capitalization

* Update leading-zeros-in-seed.md

added capitalization

* add content

* add content

* add content

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* add content

* add content

* Update dimensional-modeling.md

* Update website/docs/faqs/Git/managed-repo.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Jinja/which-jinja-docs.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Models/create-dependencies.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Models/run-downtime.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Project/example-projects.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update run-downtime.md

* Update slack.md

* add content

* add content

* small grammar fix

* changes to include expression metrics

* Fix all broken links in docs subfolder

* Fix blog post broken links

* fixes!

* Remove unused tag item from blog sidebar

* Update redirect

* Fix best practice link

* updating for link

* Update Oracle profile
- New python driver `python-oracledb` related changes which vastly simplifies dbt-oracle installation
- Wallet Configuration is explained in a better manner for 1-way TLS and m-TLS
- Content organization

* Update website/docs/docs/building-a-dbt-project/metrics.md

Co-authored-by: Jeremy Cohen <[email protected]>

* updating wording in metrics

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* reflecting changes in upgrade doc

* Add bold record to data change tables

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update 2022-06-30-lower-sql-function.md

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add strikethrough

* small syntax fixes

* Fix hyperlink

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* updating docs

* fixing conflict

* Add updated redirects

* Fix jinja links

* Fix conflicts

* Update jinja reference redirect

* Add links

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add truncate

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Shorten reading list

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Set featured to true

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* https://github.com/dbt-labs/dbt-core/discussions/5468

* Up[date redirects

* Replace two more migration redirects

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* remove images

* Update revenue-meme.png

* Update revenue-meme.png

* Update revenue-meme.png

* Update redirect

* Update website/blog/2022-07-12-change-data-capture-metrics.md

* Changes in response to review comments
- Changed the phrase one-way TLS to simply TLS
- Included link to official ADB documentation for wallet less TLS connection
- Changed service names to example service names
- Changed the ordering of connection methods. The ordering is TNS Alias, Connect String and Database hostname

* Update website/docs/guides/migration/versions/06-upgrading-to-v1.2.md

Co-authored-by: Jeremy Cohen <[email protected]>

* update for correctness and simplicities sake

* Update release date

* remove next.docs redirect

* remove extra properties

* Update redirects

* Add redirects back

* add git action to merge current branch into next

* Add wildcard for migration guides

* Add back specific redirects

* v1.2 docs omnibus (#1698)

* Add itertools module #1368

* Manifest v6 #1667

* Add set + zip #1635

* File selector method #1627

* Selector inheritance #1628

* Global config for target-path, log-path #1687

* Update website/docs/reference/dbt-jinja-functions/zip.md

Co-authored-by: Anders <[email protected]>

* Update website/docs/reference/dbt-jinja-functions/set.md

Co-authored-by: Anders <[email protected]>

* PR feedback

Co-authored-by: Anders <[email protected]>

* Update to `grants` documentation (#1707)

* Update docs on hooks re grants

* Update BQ language, link to docs

* Configuring grants, inheritance, reorg

* PR feedback

* Apply correct redirects for older versions

* Update snowflake-configs.md

In researching the use of time travel with dbt, I found the documentation to be mis-leading and thought I needed to change my dbt configuration. The comment that transient tables do not participate in time travel is not correct. Per Snowflake's documentation, Transient tables persist until they are dropped and the time travel default is 1 day and transient tables do not participate in fail safe.

* add links

* Add links

* Fix note

* Fix notes

* language tweaks

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* swap meme

* swap revenue for income

* Update website/docs/faqs/Accounts/change-billing.md

* Update website/docs/faqs/Accounts/change-billing.md

* Update git-revlist-error.md

* Update change-billing.md

Co-authored-by: mirnawong1 <[email protected]>
Co-authored-by: johnblust <[email protected]>
Co-authored-by: Kira Furuichi <[email protected]>
Co-authored-by: Leona B. Campbell <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: john-rock <[email protected]>
Co-authored-by: Anders <[email protected]>
Co-authored-by: Abhishek Singh <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: Jeremy Cohen <[email protected]>
Co-authored-by: Grace Goheen <[email protected]>
Co-authored-by: Anders Swanson <[email protected]>
Co-authored-by: John Rock <[email protected]>
Co-authored-by: Jason Karlavige <[email protected]>
Co-authored-by: Beaulieuj <[email protected]>
Co-authored-by: Jason Ganz <[email protected]>
Co-authored-by: Jason Ganz <[email protected]>
Co-authored-by: Amy Chen <[email protected]>
runleonarun added a commit that referenced this issue Jul 19, 2022
* Update gitignore.md

updated typo

* Update which-jinja-docs.md

* Update change-billing.md

removed image which was errroring out

* Update payment-accepted.md

updated formatting as it was formatted incorrectly in the live site

* Update managed-repo.md

updated spacing

* Update which-jinja-docs.md

updated broken links

* Update create-dependencies.md

updated broken link

* Update run-downtime.md

updated links

* Update example-projects.md

updated getting started guide link

* Update why-version-2.md

updated sidebar capitalization

* Update checking-logs.md

added capitalization

* Update failed-prod-run.md

added capitalization

* Update failed-tests.md

added capitalization

* Update run-downstream-of-seed.md

added capitalization

* Update run-one-model.md

added capitalization

* Update run-one-snapshot.md

added capitalization

* Update running-models-downstream-of-source.md

added capitalization

* Update snapshot-frequency.md

added capitalization

* Update leading-zeros-in-seed.md

added capitalization

* add content

* add content

* add content

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* add content

* add content

* Update dimensional-modeling.md

* Update website/docs/faqs/Git/managed-repo.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Jinja/which-jinja-docs.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Models/create-dependencies.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Models/run-downtime.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Update website/docs/faqs/Project/example-projects.md

committing Leona's suggestion

Co-authored-by: Leona B. Campbell <[email protected]>

* Fix typo in dbt tests documentation page

* Update run-downtime.md

* Update slack.md

* Add content

* add content

* Update 2022-07-05-datediff-sql-love-letter.md

* add content

* small grammar fix

* changes to include expression metrics

* Fix all broken links in docs subfolder

* Fix blog post broken links

* fixes!

* Remove unused tag item from blog sidebar

* Update redirect

* Fix best practice link

* updating for link

* Update Oracle profile
- New python driver `python-oracledb` related changes which vastly simplifies dbt-oracle installation
- Wallet Configuration is explained in a better manner for 1-way TLS and m-TLS
- Content organization

* Update website/docs/docs/building-a-dbt-project/metrics.md

Co-authored-by: Jeremy Cohen <[email protected]>

* updating wording in metrics

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* reflecting changes in upgrade doc

* Add bold record to data change tables

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Update website/blog/2022-06-30-lower-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update 2022-06-30-lower-sql-function.md

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* URL slug change

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add links

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Add strikethrough

* small syntax fixes

* Fix hyperlink

* Update website/docs/terms/data-warehouse.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* updating docs

* fixing conflict

* Add updated redirects

* Fix jinja links

* Fix conflicts

* Update jinja reference redirect

* Add links

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-06-30-extract-sql-function.md

Co-authored-by: Kira Furuichi <[email protected]>

* Add truncate

* Update website/blog/2022-06-30-coalesce-sql.md

Co-authored-by: Kira Furuichi <[email protected]>

* Shorten reading list

* Update website/blog/2022-07-05-datediff-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-datediff-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-datediff-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-datediff-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-05-date-trunc-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Set featured to true

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* https://github.com/dbt-labs/dbt-core/discussions/5468

* Up[date redirects

* Replace two more migration redirects

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture-metrics.md

Co-authored-by: Grace Goheen <[email protected]>

* remove images

* Update revenue-meme.png

* Update revenue-meme.png

* Update revenue-meme.png

* Update redirect

* Update website/blog/2022-07-12-change-data-capture-metrics.md

* Changes in response to review comments
- Changed the phrase one-way TLS to simply TLS
- Included link to official ADB documentation for wallet less TLS connection
- Changed service names to example service names
- Changed the ordering of connection methods. The ordering is TNS Alias, Connect String and Database hostname

* Update website/docs/guides/migration/versions/06-upgrading-to-v1.2.md

Co-authored-by: Jeremy Cohen <[email protected]>

* update for correctness and simplicities sake

* Update release date

* remove next.docs redirect

* remove extra properties

* Update redirects

* Add redirects back

* Update website/blog/2022-07-05-datediff-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Update 2022-07-05-datediff-sql-love-letter.md

* add git action to merge current branch into next

* Add wildcard for migration guides

* Add back specific redirects

* v1.2 docs omnibus (#1698)

* Add itertools module #1368

* Manifest v6 #1667

* Add set + zip #1635

* File selector method #1627

* Selector inheritance #1628

* Global config for target-path, log-path #1687

* Update website/docs/reference/dbt-jinja-functions/zip.md

Co-authored-by: Anders <[email protected]>

* Update website/docs/reference/dbt-jinja-functions/set.md

Co-authored-by: Anders <[email protected]>

* PR feedback

Co-authored-by: Anders <[email protected]>

* Update to `grants` documentation (#1707)

* Update docs on hooks re grants

* Update BQ language, link to docs

* Configuring grants, inheritance, reorg

* PR feedback

* Apply correct redirects for older versions

* Update snowflake-configs.md

In researching the use of time travel with dbt, I found the documentation to be mis-leading and thought I needed to change my dbt configuration. The comment that transient tables do not participate in time travel is not correct. Per Snowflake's documentation, Transient tables persist until they are dropped and the time travel default is 1 day and transient tables do not participate in fail safe.

* add content

* add links

* Add links

* Fix note

* Fix notes

* language tweaks

* Update website/blog/2022-07-13-star-sql-love-letter.md

Co-authored-by: Kira Furuichi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Kira Furuichi <[email protected]>

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* Update website/blog/2022-07-12-change-data-capture.md

Co-authored-by: Grace Goheen <[email protected]>

* swap meme

* swap revenue for income

* Update website/docs/faqs/Accounts/change-billing.md

* Update website/docs/faqs/Accounts/change-billing.md

* Update git-revlist-error.md

* Update change-billing.md

* fix typo

`Coree` -> `Core`

* Update 06-upgrading-to-v1.2.md

* updates to SQL magic posts

minor updates to SQL magic posts

* stagger publish dates in past

- datediff + date_trunc must be after 7/13 (v1.2 updates)
- put all others in the past
- add a feature flag to one of them

* Remove out-of-date information from Azure AD docs (#1350)

Co-authored-by: Leona B. Campbell <[email protected]>

* Add redirects for /guides/legacy/ (#1643)

* Add redirects for guides

* Update _redirects

Co-authored-by: Leona B. Campbell <[email protected]>

Co-authored-by: mirnawong1 <[email protected]>
Co-authored-by: johnblust <[email protected]>
Co-authored-by: Kira Furuichi <[email protected]>
Co-authored-by: Leona B. Campbell <[email protected]>
Co-authored-by: 8vicat <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: john-rock <[email protected]>
Co-authored-by: Anders <[email protected]>
Co-authored-by: Abhishek Singh <[email protected]>
Co-authored-by: Callum McCann <[email protected]>
Co-authored-by: Jeremy Cohen <[email protected]>
Co-authored-by: Grace Goheen <[email protected]>
Co-authored-by: Anders Swanson <[email protected]>
Co-authored-by: John Rock <[email protected]>
Co-authored-by: Jason Karlavige <[email protected]>
Co-authored-by: Beaulieuj <[email protected]>
Co-authored-by: Jason Ganz <[email protected]>
Co-authored-by: Jason Ganz <[email protected]>
Co-authored-by: Amy Chen <[email protected]>
Co-authored-by: Pat Kearns <[email protected]>
Co-authored-by: Brian Jan <[email protected]>
Co-authored-by: Ly Nguyen <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
content Improvements or additions to content dbt-core v1.2 Docs impact for the v1.2 release (July 2022) improvement Use this when an area of the docs needs improvement as it's currently unclear size: small This change will take 1 to 2 days to address
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant