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

Yes, you can use the widgets api to have some control to validate the input before you pass the values to the rest of your code

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

0 REPLIES 0

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group