Skip to content

Commit

Permalink
Merge branch 'current' into bethanyhipple-dbtlabs-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Dec 17, 2024
2 parents a7e7e1b + d61fc8f commit d8b8e90
Show file tree
Hide file tree
Showing 10 changed files with 405 additions and 7 deletions.
14 changes: 13 additions & 1 deletion website/docs/docs/core/docker-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,23 @@ docker pull ghcr.io/dbt-labs/<db_adapter_name>:<version_tag>
### Running a dbt Docker image in a container

The `ENTRYPOINT` for dbt Docker images is the command `dbt`. You can bind-mount your project to `/usr/app` and use dbt as normal:

```
docker run \
--network=host \
--mount type=bind,source=path/to/project,target=/usr/app \
--mount type=bind,source=path/to/profiles.yml,target=/root/.dbt/profiles.yml \
<dbt_image_name> \
ls
```

Or

```
docker run \
--network=host \
--mount type=bind,source=path/to/project,target=/usr/app \
--mount type=bind,source=path/to/profiles.yml,target=/root/.dbt/ \
--mount type=bind,source=path/to/profiles.yml.dbt,target=/root/.dbt/ \
<dbt_image_name> \
ls
```
Expand Down
2 changes: 2 additions & 0 deletions website/docs/docs/dbt-versions/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Release notes are grouped by month for both multi-tenant and virtual private clo

## December 2024

- **New**: The dbt Semantic Layer supports Sigma as a [partner integration](/docs/cloud-integrations/avail-sl-integrations), available in Preview. Refer to [Sigma](https://help.sigmacomputing.com/docs/configure-a-dbt-semantic-layer-integration) for more information.
- **New**: The dbt Semantic Layer now supports Azure Single-tenant deployments. Refer to [Set up the dbt Semantic Layer](/docs/use-dbt-semantic-layer/setup-sl) for more information on how to get started.
- **Fix**: Resolved intermittent issues in Single-tenant environments affecting Semantic Layer and query history.
- **Fix**: [The dbt Semantic Layer](/docs/use-dbt-semantic-layer/dbt-sl) now respects the BigQuery [`execution_project` attribute](/docs/core/connect-data-platform/bigquery-setup#execution-project), including for exports.
- **New**: [Model notifications](/docs/deploy/model-notifications) are now generally available in dbt Cloud. These notifications alert model owners through email about any issues encountered by models and tests as soon as they occur while running a job.
Expand Down
15 changes: 15 additions & 0 deletions website/snippets/_sl-partner-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,21 @@ The following tools integrate with the dbt Semantic Layer:
</a>
</div>

<div className="card-container">
<Card
title="Sigma (Preview)"
body="Connect Sigma to the dbt Semantic Layer to allow you to leverage your predefined dbt metrics in Sigma workbooks."
link="https://help.sigmacomputing.com/docs/configure-a-dbt-semantic-layer-integration"
icon="sigma"/>
<a href="https://help.sigmacomputing.com/docs/configure-a-dbt-semantic-layer-integration"
className="external-link"
target="_blank"
rel="noopener noreferrer">
<Icon name='fa-external-link' />
</a>
</div>


<div className="card-container">
<Card
title="Steep"
Expand Down
5 changes: 3 additions & 2 deletions website/snippets/_v2-sl-prerequisites.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
- Have a dbt Cloud Team or Enterprise account. Single-tenant accounts should contact their account representative for setup.
- Ensure your production and development environments use [dbt version 1.6 or higher](/docs/dbt-versions/upgrade-dbt-version-in-cloud).
- Have a dbt Cloud Team or Enterprise account.
- Available on all [tenant configurations](/docs/cloud/about-cloud/tenancy). Single-tenant accounts should contact your account representative for setup.
- Ensure your production and development environments are on a [supported dbt version](/docs/dbt-versions/upgrade-dbt-version-in-cloud).
- Use Snowflake, BigQuery, Databricks, or Redshift.
- Create a successful run in the environment where you configure the Semantic Layer.
- **Note:** Semantic Layer supports querying in Deployment environments; development querying is coming soon.
Expand Down
2 changes: 1 addition & 1 deletion website/snippets/cloud-feature-parity.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The following table outlines which dbt Cloud features are supported on the diffe
| dbt Copilot |||||
| dbt Explorer |||||
| dbt Mesh |||||
| dbt Semantic Layer || ✅ (Upon request) || |
| dbt Semantic Layer || ✅ (Upon request) || |
| Discovery API |||||
| IP restrictions |||||
| Job scheduler |||||
Expand Down
2 changes: 1 addition & 1 deletion website/static/img/icons/question-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
185 changes: 185 additions & 0 deletions website/static/img/icons/sigma.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d8b8e90

Please sign in to comment.