cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
cancel
Showing results for 
Search instead for 
Did you mean: 

MetadataChangedException

Anonymous
Not applicable

A delta lake table is created with identity column and I'm not able to load the data parallelly from four process. i'm getting the metadata exception error.

I don't want to load the data in temp table . Need to load directly and parallelly in to delta table.

1 ACCEPTED SOLUTION

Accepted Solutions

Hubert-Dudek
Esteemed Contributor III

@Gokul K​ , Identity is stored in table schema (which is the awful solution). That's why concurrent inserts are not supported.

I even record a video about that problem: Delta Identity Column with Databricks 10.4 - crash test - YouTube

View solution in original post

9 REPLIES 9

Kaniz
Community Manager
Community Manager

Hi @Gokul K​, Thank you for posting your question on the community. Would you mind sharing the error stack here?

Anonymous
Not applicable

MetadataChangedException: The metadata of the Delta table has been changed by a concurrent update. Please try the operation again

Kaniz
Community Manager
Community Manager

Hi @Gokul K​, This exception occurs when a concurrent transaction updates the metadata of a Delta table. Common causes are ALTER TABLE operations or writes to your Delta table that update the table's schema.

Anonymous
Not applicable

No alter table operations are carried out. Just loading data from four parallelly running notebooks in to same delta lake table which is having ID as identity column is making the issue.

when loading the data in to temp table and putting in to target table having identity column doesn't make any issues.

But for some reason i need to load the data parallelly in to the table which is having identity column.

Hubert-Dudek
Esteemed Contributor III

@Gokul K​ , Identity is stored in table schema (which is the awful solution). That's why concurrent inserts are not supported.

I even record a video about that problem: Delta Identity Column with Databricks 10.4 - crash test - YouTube

@Hubert Dudek​ @Kaniz Fatma​ 

I am experiencing the same issue. Now that I understand the reason behind it, I would appreciate your assistance in finding a solution for generating a sequence for the table. Multiple concurrent jobs will be performing insertions and updates on the same table. To address the concurrent update issue, I have partitioned the table. However, I am struggling to determine the best approach for generating the Id values. I would greatly appreciate any suggestions you can provide.

Even in retry method or in try & exception method, there is no guarantee that the load of another parallel process is complete especially for large volume tables. So in such cases even if you try to repeat the write in exception, it would fail. What is best possible solution for this? Is there any other way to generate id column with auto increment method without using GENERATE clause in DDL? 

Anonymous
Not applicable

Thanks @Hubert Dudek​ 

Kaniz
Community Manager
Community Manager

Hi @Gokul K​, Thank you for marking the best answer for us. We're happy to help you.

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.