Anand13
New Contributor II

Hi everyone, in our project we are trying to implement liquid clustering. We are testing liquid clustering with a test table called status_update, where we need to update the status for different market IDs. We are trying to update the status_update table in parallel using the update command. spark.sql(f"update  status_update  set status='{status}' where  mkt_id ={mkt_id}") When we run the notebook in parallel for different market IDs, we encounter a concurrency issue.