cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Widgets - Way to validate config parameters

Digan_Parikh
Valued Contributor

Can you use widgets to validate config parameters for notebooks?

1 ACCEPTED SOLUTION

Accepted Solutions

Digan_Parikh
Valued Contributor

For example:

folder = dbutils.widgets.get("Folder")
if folder == "":
    raise Exception("Folder missing")

or to get spark settings you can use:

spark.conf.get("my_property")

Learn more about them here - https://docs.databricks.com/notebooks/widgets.html

View solution in original post

1 REPLY 1

Digan_Parikh
Valued Contributor

For example:

folder = dbutils.widgets.get("Folder")
if folder == "":
    raise Exception("Folder missing")

or to get spark settings you can use:

spark.conf.get("my_property")

Learn more about them here - https://docs.databricks.com/notebooks/widgets.html

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now