Cagatay K
10/31/2019, 5:05 PMdagstermill
when accessing solid configs from inside the notebook. The notebook has a dict
config, declared like:
config_field=Field(
Dict({
'areas': Field(List[str], is_optional=True, default_value=["a", "b", "c"]),
'export_file': Field(Path)
})
)
When I access the config value in the notebook during a job run with context.solid_config['export_file']
, I get a KeyError
.
What options do I have to debug this? Can I step through the generated notebook in the /tmp
location on my own to reproduce it? Or is there a way to debug a pipeline job while it's running?alex
10/31/2019, 5:22 PMmax
10/31/2019, 5:37 PM