cancel
Showing results for 
Search instead for 
Did you mean: 
Community Discussions
Engage in vibrant discussions covering diverse learning topics within the Databricks Community. Explore learning resources, share insights, and collaborate with peers to enhance your skills in data engineering, machine learning, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 

Browse the Community

Certifications

Join dynamic discussions on Databricks certifications within the Community. Exchange insights, tips,...

821 Posts

Training offerings

Explore discussions on Databricks training programs and offerings within the Community. Get insights...

184 Posts

Get Started Discussions

Start your journey with Databricks by joining discussions on getting started guides, tutorials, and ...

2647 Posts

Databricks Free Trial Help

Engage in discussions about the Databricks Free Trial within the Databricks Community. Share insight...

108 Posts

Activity in Community Discussions

itsmemasoud
by > New Contributor II
  • 2198 Views
  • 7 replies
  • 3 kudos

billing payment problem

I was using a trial account and my 40$ credit was finished. I set a budget limit but it also exceeded that without warning and now I'm being charge for extra 90$!!! But this is only the first problem. The second problem is since my credit card reject...

  • 2198 Views
  • 7 replies
  • 3 kudos
Latest Reply
adamActable
  • 3 kudos

@BS_THE_ANALYST I have not, but that support alias looks like it's specific to the `databricks-community` (e.g. this website) rather than the product. 

  • 3 kudos
6 More Replies
YuriS
by > New Contributor II
  • 68 Views
  • 1 replies
  • 1 kudos

How to reduce data loss for Delta Lake on Azure when failing from primary to secondary regions?

Let’s say we have big data application where data loss is not an option.Having GZRS (geo-zone-redundant storage) redundancy we would achieve zero data loss if primary region is alive – writer is waiting for acks from two or more Azure availability zo...

  • 68 Views
  • 1 replies
  • 1 kudos
Latest Reply
mark_ott
Databricks Employee
  • 1 kudos

In Azure and Databricks environments, ensuring zero data loss during a primary-to-secondary failover—especially for Delta Lake/streaming workloads—is extremely challenging due to asynchronous replication, potential ordering issues, and inconsistent s...

  • 1 kudos
rcostanza
by > New Contributor III
  • 13 Views
  • 0 replies
  • 0 kudos

Stateless streaming with aggregations on a DLT/Lakeflow pipeline

In a DLT pipeline I have a bronze table that ingest files using Autoloader, and a derived silver table that, for this example, just stores the number of rows for each file ingested into bronze. The basic code example: import dlt from pyspark.sql impo...

  • 13 Views
  • 0 replies
  • 0 kudos
Sumit_7
by > Contributor
  • 587 Views
  • 7 replies
  • 3 kudos

Resolved! Data Analyst Beta Acceptance Test

Do we get a certificate for Beta Tests? Recently I have given Data Analyst Beta Test, but no communication on score or certification. Would someone clarify once?

Sumit_7_0-1757901314022.png
  • 587 Views
  • 7 replies
  • 3 kudos
Latest Reply
saurabh183
New Contributor III
  • 3 kudos

It seems results are out. I have received with the subject line: Result Notification: Databricks Certified Data Analyst Associate Certification Exam Beta Test

  • 3 kudos
6 More Replies
XaviMarti
by > New Contributor
  • 44 Views
  • 3 replies
  • 6 kudos

Resolved! Gen AI course Notebooks followed.

Hi All.I'm following the Gen AI Certification material, but.. does anybody know if notebooks are available?Thanis in advance 

XaviMarti_0-1759910182024.png
  • 44 Views
  • 3 replies
  • 6 kudos
Latest Reply
BS_THE_ANALYST
Esteemed Contributor II
  • 6 kudos

@szymon_dybczak  if @XaviMarti  is learning through the partner academy, there's a chance the labs are there (and included) i.e. searching the partner academy:I think these red/purple ones (if that's the correct colour lol ) are labs relating to a le...

  • 6 kudos
2 More Replies
cbhoga
by > New Contributor II
  • 47 Views
  • 2 replies
  • 3 kudos

Delta sharing with Celonis

Is there is any way/plans of Databricks use Delta sharing to provide data access to Celonis?

  • 47 Views
  • 2 replies
  • 3 kudos
Latest Reply
szymon_dybczak
Esteemed Contributor III
  • 3 kudos

Hi @cbhoga ,Delta Sharing is an open protocol for secure data sharing. Databricks already supports it natively, so you can publish data using Delta Sharing. However, whether Celonis can directly consume that shared data depends on whether Celonis sup...

  • 3 kudos
1 More Replies
ChristianRRL
by > Valued Contributor III
  • 62 Views
  • 3 replies
  • 2 kudos

Performance Comparison: spark.read vs. Autoloader

Hi there, I would appreciate some help to compare the runtime performance of two approaches to performing ELT in Databricks: spark.read vs. Autoloader. We already have a process in place to extract highly nested json data into a landing path, and fro...

  • 62 Views
  • 3 replies
  • 2 kudos
Latest Reply
szymon_dybczak
Esteemed Contributor III
  • 2 kudos

Hi @ChristianRRL ,For that kind of ingestion scenario autoloader is a winner . It will scale much better than batch approach - especially if we are talking about large number of files.If you configure autoloader with file notification mode it can sca...

  • 2 kudos
2 More Replies
ChristianRRL
by > Valued Contributor III
  • 54 Views
  • 1 replies
  • 2 kudos

Resolved! AutoLoader Ingestion Best Practice

Hi there, I would appreciate some input on AutoLoader best practice. I've read that some people recommend that the latest data should be loaded in its rawest form into a raw delta table (i.e. highly nested json-like schema) and from that data the app...

  • 54 Views
  • 1 replies
  • 2 kudos
Latest Reply
BS_THE_ANALYST
Esteemed Contributor II
  • 2 kudos

I think the key thing with holding the raw data in a table, and not transforming that table, is that you have more flexibility at your disposal. There's a great resource available via Databricks Docs for best practices in the Lakehouse. I'd highly re...

  • 2 kudos
ChristianRRL
by > Valued Contributor III
  • 47 Views
  • 2 replies
  • 4 kudos

Resolved! What is `read_files`?

Bit of a silly question, but wondering if someone can help me better understand what is `read_files`?read_files table-valued function | Databricks on AWSThere's at least 3 ways to pull raw json data into a spark dataframe:df = spark.read...df = spark...

  • 47 Views
  • 2 replies
  • 4 kudos
Latest Reply
BS_THE_ANALYST
Esteemed Contributor II
  • 4 kudos

Also, @ChristianRRL , with a slight adjustment to the syntax, it does indeed behave like Autoloaderhttps://docs.databricks.com/aws/en/ingestion/cloud-object-storage/auto-loader/patterns?language=SQL I'd also advise looking at the different options th...

  • 4 kudos
1 More Replies
shilpimishra
by > New Contributor III
  • 75 Views
  • 3 replies
  • 0 kudos

Resolved! Databricks Professional certification 2025

 I plan to take the Professional Exam. Since the certification was updated on September 30, I would like to know the details — specifically the course content,  how long this version of the course will remain valid (given that the course content is u...

  • 75 Views
  • 3 replies
  • 0 kudos
Latest Reply
shilpimishra
New Contributor III
  • 0 kudos

Thank you for response. Is the https://partner-academy.databricks.com/learn/learning-plans/10/data-engineer-learning-plan correct link for professional exam? Thanks

  • 0 kudos
2 More Replies
Maria_fed
by > New Contributor III
  • 4988 Views
  • 8 replies
  • 0 kudos

Need help migrating company customer and partner academy accounts to work properly

Hi, originally I accidentally made a customer academy account with my company that is a databricks partner. Then I made an account using my personal email and listed my company email as the partner email for the partner academy account. that account ...

  • 4988 Views
  • 8 replies
  • 0 kudos
Latest Reply
Vaishali2
New Contributor
  • 0 kudos

Need help to merge my customer portal id with  partner mail id my case number is 00754330 

  • 0 kudos
7 More Replies
rcostanza
by > New Contributor III
  • 102 Views
  • 4 replies
  • 2 kudos

Trying to reduce latency on DLT pipelines with Autoloader and derived tables

What I'm trying to achieve: ingest files into bronze tables with Autoloader, then produce Kafka messages for each file ingested using a DLT sink.The issue: latency between file ingested and message produced get exponentially higher the more tables ar...

  • 102 Views
  • 4 replies
  • 2 kudos
Latest Reply
Hubert-Dudek
Esteemed Contributor III
  • 2 kudos

Hi, I think it is a delay of the autoloader as it doesn't know about the ingested files. It is nothing in common with the state, as it is just an autoloader and it keeps a list of processed files. Autloader scans the directory every minute, usually a...

  • 2 kudos
3 More Replies
jimoskar
by > New Contributor
  • 98 Views
  • 4 replies
  • 3 kudos

Cluster cannot find init script stored in Volume

I have created an init script stored in a Volume which I want to execute on a cluster with runtime 16.4 LTS. The cluster has policy = Unrestricted and Access mode = Standard. I have additionally added the init script to the allowlist. This should be ...

  • 98 Views
  • 4 replies
  • 3 kudos
Latest Reply
szymon_dybczak
Esteemed Contributor III
  • 3 kudos

Hi @jimoskar ,Since you're using standard access mode you need to add init script to allowlist. Did you add your init script to allowlist? If not, do the following:In your Databricks workspace, click  Catalog.Click the gear icon .Click the metastore ...

  • 3 kudos
3 More Replies
Krisna_91
by > New Contributor
  • 67 Views
  • 2 replies
  • 2 kudos

50% voucher

Hi,I have completed the certification of Data warehousing with databricks. when can I expect the voucher.   

Krisna_91_1-1759758105339.png Krisna_91_0-1759758103123.png
  • 67 Views
  • 2 replies
  • 2 kudos
Latest Reply
Advika
Databricks Employee
  • 2 kudos

Hello @Krisna_91! To add to what Sumit mentioned, if your question is regarding the incentives offered in the Learning Festival, kindly ensure that you complete at least one self-paced learning pathway within Customer Academy between October 10 and O...

  • 2 kudos
1 More Replies
Rezakorehi
by > New Contributor
  • 93 Views
  • 3 replies
  • 7 kudos

Unity catalogues - What would you do

If you were creating Unity Catalogs again, what would you do differently based on your past experience?

  • 93 Views
  • 3 replies
  • 7 kudos
Latest Reply
szymon_dybczak
Esteemed Contributor III
  • 7 kudos

From my experiance:- don't create separate catalogs for every project. Try to think about your desing before implementation- try to come up with consistent naming convention to avoid cognitive overhead- principle of least privilege - grant users and ...

  • 7 kudos
2 More Replies