HelloI have a Job with a DLT pipeline as a first task. From time to time, I want to execute this Job with a Full Refresh of the DLT pipeline. How could I override my default "full_refresh = false" ?This was possible before using the Legacy parameters...
HelloAfter upgrading my cluster from DBR 12 to 14.1 I got a MISSING_ATTRIBUTES.RESOLVED_ATTRIBUTE_APPEAR_IN_OPERATION on some of my Joinsdf1.join(
df2,
[df1["name"] == df2["name"], df1["age"] == df2["age"]],
'left_outer'
)I resolved it by...
HelloImport errors happen often with Pytest. To Debug this error you can add this in your "test_myfunction_test.py":import sys
# printing all directories for
# interpreter to search
sys.pathsys.path is a built-in variable within the sys module. I...