cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

can we update a Parquet file??

kkumar
New Contributor III

i have copied a table in to a Parquet file now can i update a row or a column in a parquet file without rewriting all the data as the data is huge.

using Databricks or ADF

Thank You

1 ACCEPTED SOLUTION

Accepted Solutions

youssefmrini
Honored Contributor III
Honored Contributor III

You can only append Data with Parquet that's why you need to convert your parquet table to Delta. It will be much easier.

View solution in original post

3 REPLIES 3

youssefmrini
Honored Contributor III
Honored Contributor III

You can only append Data with Parquet that's why you need to convert your parquet table to Delta. It will be much easier.

kkumar
New Contributor III

Thank You for the reply.

True, but for a requirement, I was looking for a way to update a Parquet file.

I guess we cant.

-werners-
Esteemed Contributor III

correct. parquet files are immutable.