cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
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