当前位置: 首页 > news >正文

Databricks: Why did your cluster disappear?

You may found that you created a cluster many days ago, and you didn't delete it, but it is disapear. Why did this happen? Who deleted the cluster?

Actually, 30 days after a compute is terminated, it is permanently deleted automaticlly.

If your workspace has Unity Catalog enabled, you can use this sql to check who deleted the cluster. If the sql returns null, the cluster was removed automatically due to it being inactive for 30 days.

SELECT max(event_time) AS EventTime, request_params["cluster_id"] AS ClusterID, user_identity.email as User, source_ip_address AS IPAddress  
FROM system.access.audit
WHERE 
  action_name = "permanentDelete" 
  AND service_name = "clusters" 
  AND workspace_id = "xxxxxxxxxx"
  AND request_params["cluster_id"] = ""
GROUP BY request_params["cluster_id"], user_identity.email, source_ip_address

If you want to keep the all-purpose cluster after 30 days of termination, you can pin it. Up to 100 compute resources can be pinned.

http://www.dtcms.com/a/121962.html

相关文章:

  • 【UE5】RTS游戏的框选功能+行军线效果实现
  • Spring Boot 3.x 下 Spring Security 的执行流程、核心类和原理详解,结合用户描述的关键点展开说明,并以表格总结
  • WPF 绑定方式举例
  • LabVIEW 图像处理中常见的边缘检测算法
  • 发票真伪查验接口集成攻略-PHP批量查验发票真伪
  • 贪心算法(17)(java)可被三整除的最大整数和
  • [CISSP] [9] 安全漏洞,威胁和对策
  • 视觉分析AI赋能智慧水务多场景应用
  • S32K144的m_data_2地址不够存,重新在LD文件中配置地址区域
  • doxygen自动生成文档,注释容易错位的补充
  • 雷电模拟器过检测技术全解析
  • 使用docker 安装向量数据库Milvus
  • 黑马 SpringAI+DeepSeek 实战:从对话机器人到企业级知识库的大模型开发全攻略
  • <《AI大模型应知应会100篇》第8篇:大模型的知识获取方式及其局限性
  • package.json配置项积累
  • 防火墙介绍
  • SpringMvc的请求-获得请求参数
  • 启山智软的营销方法有哪些优势?
  • 大数据(7)Kafka核心原理揭秘:从入门到企业级实战应用
  • 机器学习 Day10 逻辑回归
  • 设计模式 Day 5:夯实观察者模式(Boost 实战精讲)
  • excel中的VBA指令示例(二)
  • 【Java】Java 中不同类型的类详解
  • 【PVR】《Palm Vein Recognition and Large-scale Research based on Deep Learning》
  • 今日行情明日机会——20250409
  • P9242 [蓝桥杯 2023 省 B] 接龙数列
  • Anacond虚拟环境里安装GPU版本Pytorch
  • linux下截图工具的选择
  • Linux权限管理:从入门到实践
  • 网页部署到宝塔服务器上,发送请求报错?org.springframework.data.redis.RedisSystemException,让我来看看