Currently (as implemented in #17414), timetables are serialised by their classes’ full import path. This works most of the time, but not in some cases, including:
- Nested in class or function
- Declared directly in a DAG file without a valid import name (e.g.
12345.py)
It’s fundamentally impossible to fix some of the cases (e.g. function-local class declaration) due to how Python works, but by requiring the user to explicitly register the timetable class, we can at least expose that problem so users don’t attempt to do that.
However, since the timetable actually would work a lot of times without any additional mechanism, I’m also wondering if we should require registration.
- Always require registration. A DAG using an unregistered timetable class fails to serialise.
- Only require registration when the timetable class has wonky import path. “Normal” classes work out of the box without registering, and user sees a serialisation error asking for registration otherwise.
- Don’t require registration. If a class cannot be correctly serialised, tell the user we can’t do it and the timetable must be declared another way.
Currently (as implemented in #17414), timetables are serialised by their classes’ full import path. This works most of the time, but not in some cases, including:
12345.py)It’s fundamentally impossible to fix some of the cases (e.g. function-local class declaration) due to how Python works, but by requiring the user to explicitly register the timetable class, we can at least expose that problem so users don’t attempt to do that.
However, since the timetable actually would work a lot of times without any additional mechanism, I’m also wondering if we should require registration.