- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2021
07:18 AM
- last edited on
03-20-2025
09:26 AM
by
Advika
DBR minor version details are not exposed. However, in the documentation, it mentioned Databricks performs maintenance releases every 2 weeks. How can I determine if I am using the same minor version
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2021 07:23 AM
The below code snippet can help to determine the DBR Hash string for the DBR version. DBR hash string is unique for the DBR minor version.
val scalaVersion = scala.util.Properties.versionString
val hadoopVersion = org.apache.hadoop.util.VersionInfo.getVersion
val baseVersion = org.apache.spark.BuildInfo.sparkBranch
val baseSha = org.apache.spark.BuildInfo.apacheBase
val dbrSha = org.apache.spark.BuildInfo.gitHash
val universeSha = com.databricks.BuildInfo.gitHash
val universeTimestamp = com.databricks.BuildInfo.gitTimestamp
val imageId = spark.conf.get("spark.databricks.clusterUsageTags.sparkVersion")
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2021 07:23 AM
The below code snippet can help to determine the DBR Hash string for the DBR version. DBR hash string is unique for the DBR minor version.
val scalaVersion = scala.util.Properties.versionString
val hadoopVersion = org.apache.hadoop.util.VersionInfo.getVersion
val baseVersion = org.apache.spark.BuildInfo.sparkBranch
val baseSha = org.apache.spark.BuildInfo.apacheBase
val dbrSha = org.apache.spark.BuildInfo.gitHash
val universeSha = com.databricks.BuildInfo.gitHash
val universeTimestamp = com.databricks.BuildInfo.gitTimestamp
val imageId = spark.conf.get("spark.databricks.clusterUsageTags.sparkVersion")

