Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added uniqueness in the new warehouse name to avoid name conflict #542

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/databricks/labs/ucx/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import subprocess
import sys
import tempfile
import time
import webbrowser
from dataclasses import replace
from pathlib import Path
Expand Down Expand Up @@ -306,7 +307,7 @@ def warehouse_type(_):
)
if warehouse_id == "create_new":
new_warehouse = self._ws.warehouses.create(
name="Unity Catalog Migration",
name=f"Unity Catalog Migration {time.time_ns()}",
spot_instance_policy=SpotInstancePolicy.COST_OPTIMIZED,
warehouse_type=EndpointInfoWarehouseType.PRO,
cluster_size="Small",
Expand Down