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

add SL rn #4668

Merged
merged 28 commits into from
Dec 22, 2023
Merged
Changes from 10 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f4693b9
add rn
mirnawong1 Dec 18, 2023
8117a3c
Update dec-sl-updates.md
mirnawong1 Dec 18, 2023
17dcbc1
Update dec-sl-updates.md
rpourzand Dec 18, 2023
f213c14
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 18, 2023
6edcf65
Update dec-sl-updates.md
rpourzand Dec 18, 2023
2eadd71
Update dec-sl-updates.md
rpourzand Dec 18, 2023
945b743
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 19, 2023
a706ad4
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 19, 2023
e9ec8d3
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 19, 2023
eb27064
add mf bug fixes and ambigous resolution
Jstein77 Dec 19, 2023
47b0043
tweaks
mirnawong1 Dec 20, 2023
92ac118
consistent language
mirnawong1 Dec 20, 2023
89aeae4
typo
mirnawong1 Dec 20, 2023
27cd555
tweak
mirnawong1 Dec 20, 2023
ff29b5a
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 20, 2023
7f5890d
update group by items call out
Jstein77 Dec 21, 2023
963de0c
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 21, 2023
b839ea5
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
224ce87
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
b756622
update release notes
Jstein77 Dec 21, 2023
a558310
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 21, 2023
03ec700
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
31339d2
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
4f9e6c0
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
2811e43
Update website/docs/docs/dbt-versions/release-notes/74-Dec-2023/dec-s…
mirnawong1 Dec 21, 2023
1c5306a
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 22, 2023
cc0ca46
Update dec-sl-updates.md
mirnawong1 Dec 22, 2023
d8ab9df
Merge branch 'current' into sl-rn-dec
mirnawong1 Dec 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: "Updates and fixes: dbt Semantic Layer and MetricFlow updates for December 2023."
description: "December 2023: Enhanced Tableau integration, BIGINT support, LookML to MetricFlow conversion, and deprecation of legacy features."
sidebar_label: "Update ad fixes: dbt Semantic Layer and MetricFlow."
sidebar_position: 08
date: 2023-12-22
---
The dbt Labs team continues to work on adding new features, fixing bugs, and increasing reliability for the dbt Semantic Layer and MetricFlow. Here are the updates and fixes for December 2023.

## Bug fixes
- The dbt Semantic Layer integration with Tableau now supports queries that resolve to a "NOT IN" clause (for example: using "exclude" in the filtering user interface). Previously it wasn’t supported.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need to give more info on the memory leak?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think so.... the errors that customers might have experienced from this could be different. We could maybe include a time period of when people might have been affected, but this could be hard to find.

- The dbt Semantic Layer can support `BIGINT` with precision greater than 18. Previously it would return an error.
- We fixed a memory leak that would amount in intermittent errors when querying our JDBC API.
- Added support for converting various Redshift and Postgres specific data types. Previously, the driver would throw an error when encountering columns with those types.
- Apply time offset for nested dervied & ratio metrics ([#882](https://github.com/dbt-labs/metricflow/issues/882))
- Fix Incorrect SQL Column Name Rendering for WhereConstraintNode ([#908](https://github.com/dbt-labs/metricflow/issues/908))
- `Unable To Satisfy Query Error` with Cumulative Metrics in Saved Queries ([#917](https://github.com/dbt-labs/metricflow/issues/917))
- Fixes a bug in dimension-only queries where the filter column is removed before the filter has been applied. ([#923](https://github.com/dbt-labs/metricflow/issues/923))
- Bug fix: Keep where constraint column until used for nested derived offset metric queries. ([#930](https://github.com/dbt-labs/metricflow/issues/930))

## Improvements
- dbt Labs deprecated [dbt Metrics and the legacy dbt Semantic Layer](/docs/dbt-versions/release-notes/Dec-2023/legacy-sl), both supported on dbt version 1.5 or lower. This change came into effect on December 15th, 2023.
- The [dbt converter tool](https://github.com/dbt-labs/dbt-converter) can now help automate some of the work in converting from LookML (Looker's modeling language) for those who are migrating. Previously this wasn’t available.

## New features
- Support for ambiguous group-by-item resolution. Previously, group-by-items were input by the user in a relatively specific form. For example, the group-by-item:
```
guest__listing__created_at__month
```
refers to the created_at time dimension at a month grain that is resolved by joining the measure source to the dimension sources by the guest and listing entities. Now we handle this complexity for the user, and allow you to simply request ``listing__created_at__month``. If there is only one possible resolution, we will resolve it for the user. If there are multiple possible resolutions, we will ask for additional user input.
Loading