We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac7b8bb commit c6843c6Copy full SHA for c6843c6
src/databricks/labs/ucx/install.py
@@ -7,6 +7,7 @@
7
import subprocess
8
import sys
9
import tempfile
10
+import time
11
import webbrowser
12
from dataclasses import replace
13
from pathlib import Path
@@ -304,7 +305,7 @@ def warehouse_type(_):
304
305
)
306
if warehouse_id == "create_new":
307
new_warehouse = self._ws.warehouses.create(
- name="Unity Catalog Migration",
308
+ name=f"Unity Catalog Migration {time.time_ns()}",
309
spot_instance_policy=SpotInstancePolicy.COST_OPTIMIZED,
310
warehouse_type=EndpointInfoWarehouseType.PRO,
311
cluster_size="Small",
0 commit comments