0

Column type modifications in clickhouse can take a long time, since clickhouse has to migrate all data to the new type. Let's say a jdbc client initiates a column type update, and then the jvm process is killed. What happens to the update task? Please link to official sources if possible.

thewolf
  • 417
  • 1
  • 5
  • 10

1 Answers1

2

If you are using a mutation the process is asynchronous and will continue in the background - assume it has been scheduled once the server responds. Use the system.mutations table to monitor progress of the execution.

You can kill the operation using KILL MUTATION

gingerwizard
  • 184
  • 5