Engage in discussions on data warehousing, analytics, and BI solutions within the Databricks Community. Share insights, tips, and best practices for leveraging data for informed decision-making.
Here's your Data + AI Summit 2024 - Warehousing & Analytics recap as you use intelligent data warehousing to improve performance and increase your organization’s productivity with analytics, dashboards and insights.
Keynote: Data Warehouse presente...
The data selection is part of loaded data if I want to filter out the data I'm not able to filter it out I believe this is glitch in the data bricks dashboard UI
Attempting to create a Python UDF and receiving an error stating it's not supported in my environment.running on SQL Serverless Cluster - Preview (v 2025.16)[FEATURE UNAVAILABLE]Python UDTF is not supported in your environment. To use this feature, p...
Currently Serverless supports only scaler valued function not table valued function. also you need to provide the catalog and schema in the function.You can create using a pro computecreate function {catalog_name}.{schema_name}._rrr_taxonomy_test()RE...
According to the pricing page, the minimum cost in using this product is 1 DBU per hour.Often times, access to such tables comes in bursts with many periods of idle time. How is infrequent use factored into the pricing? This is also important for set...
As far as I can tell, the minimum charge for an online table is DBU-cost x 24 x 30 per month, i.e. around $720 per month.Is the 15-minute scale-down window documented somewhere?With a 15-minute scale-down window, assuming just one access per hour, th...
Hello,We recently modified some table names and used the UC Lineage to identify the users that were accessing these particular tables to notify. However, it seems we broke our Genie Space that was using that table. As best as I can tell, queries from...
As of now, system tables like information_schema.table_usage or query_history do not log Genie Space queries. They primarily log interactive and scheduled queries from notebooks, dashboards, and the SQL editor.you will need to rely on Genie configura...
Bug SummaryTitle: Spark SQL internal error when executing SQL code in the Azure Databricks SQL Editor DescriptionWhen executing SQL code in the Azure Databricks SQL Editor, a Spark SQL internal error is returned. Steps to ReproduceCopy and paste th...
Hi!I try to connect to an azure databricks sql warehouse in dbeaver, which uses the azure databricks jdbc driver version 2.7.1 ## and I cannot get M2M authentication to work. I get a 'Not Authorized' (401) response when I try to connect, and it seems...
Hey @jakobhaggstrom,It's possible to connect to DBX using an Azure service principal. You're just missing the OIDC URL in the JDBC driver's parameters.The OIDC discovery is enabled by default but you need to set its URL which contains your Azure tena...
Hi -- I'm trying to connect to BigQuery as a foreign catalog. I'm able to create and successfully test the connection, but when I create a foreign catalog it appears empty, and queries against that catalog return a "TABLE_OR_VIEW_NOT_FOUND" error.The...
Thanks @lingareddy_Alva! This is helpful.I reached out to ask about the required permissions, we'll see how that goes.In the meantime, I'm trying to test out the other two paths. Do you know where I could find docs or examples for those operations? I...
Hi everyone,I recently started using AI/BI dashboard and I'm struggling with this glitch in the map. The visual was generated without any issues but the cross-filtering of the map for example, if I click on a county, the rest of the chart values chan...
Hey @meljung ,The issue seems to stem from using an aggregated metric (`count_distinct(user_id)`) in the map visual.When clicking on a county, the map attempts to filter other visuals using the underlying dimension, but inconsistencies may occur if t...
Hi, I'm Shun from Japan.I tried to create Databricks Dashboard using Asset Bundles.But, I got an error message bellow on Web Terminal.$ databricks bundle deployWarn: Failed to load git info from /api/2.0/workspace/get-statusError: failed to get dashb...
Hi @Shun_T ,The error message you're seeing,usually means that the dashboard you're trying to deploy either doesn’t exist in your Databricks workspace,or the ID/reference used in the YAML file is invalid.Here are a few steps that should help:1.Verify...
Hey @source2sea ,I ran into the same issue before. The reason it shows "All workspace users – Can Manage (inherited)" is because the permission is coming from the folder where your dashboard is saved.To fix it, go to that folder, click on the three d...
Hello,I am struggling trying to assign permission dynamically on a schema. I am using databricks asset bundle and I have a parametrized script to assign permission.grant select on schema {{schema}} to {{group}};I cannot achieve a dynamic grant statem...
I use notebooks as part of the asset bundle deployment to conduct a lot of dynamic configurations based upon the workspace being deployed to (ex. Development, Test, Production). In conjunction, I developed a helper Python library with a number of fu...
Hi @josh__, I guess yes, you can use Databricks Free Edition with dbt Cloud for dbt projects. Just keep in mind that the Free Edition is mainly meant for learning and experimentation, so it does have some limitations around features and resources. Mi...
Hi! I have these two tables which are altered(renamed) views from my main table, and there seems to be no way of joining this tables. Everytime I try Databricks indicates that these tables cannot be found, but if I go and write a Select * statements ...
Hi @ArturSvoboda This sounds like a classic Databricks workspace isolation issue. Here are the most likely causes and things to check:1. Temporary Views vs Persistent ViewsYour renamed views might be temporary views that only exist in your current Sp...
Hi,I'm new to databricks, and I'm trying to create an area plot in a visualisation, the only problem is that I do not see the 'group' otion in the y axis section. I see 'Color' but that is all, not 'group by' option (I'm expecting to see 'Color/Grou...
Hi @BryanM Use "Color by Y-Series" for GroupingIn Databricks, the "Color by Y-Series" section IS your grouping mechanism for area charts:Add your grouping dimension (the field you want to group by) to the "Color by Y-Series" sectionThis will create s...
Hi,I am trying to use pm4py library to visualize my data. my code executes perfectly but there is no visualization how can i solve this problem ? There is no error message#processmining # databricks #pm4py
I believe we do not support GUI-based viewers like pm4py.visualizer.view(gviz), which tries to open a file using your system's default image/PDF viewer.Could you try visualizing and then saving the output - import pm4py# Sample log (replace with your...