Using Python and all the relevant DLT properties within Databricks, does anyone know how to simple append to a DLT table from a batch source?
In PySpark you can just use df.write.format("delta").mode("append") but since dlt requires you to return a Spark dataframe within its decorator, we can't use the Dataframe Writer API.
Thanks in advance.