Serhii Derevianko
Serhii Derevianko

Reputation: 163

DBX `named_parameters` are not working correctly

I have cluster in Databricks and i want ot run my local code on this cluster using DBX. But i have some issues with named_parameters How can I use the correct format of dictionary({"t": "hello"}) in named_parameters to run my code in cluster and get this parameters value?

My code:

enter image description here

Run with this named_parameters: enter image description here

Run with correct named_parameters: enter image description here

Upvotes: 0

Views: 204

Answers (1)

rupaj
rupaj

Reputation: 66

use below in deployment.yaml

named_parameters:
  t: 'hello'

Upvotes: 0

Related Questions