You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Databricks DBR13.3 cluster. This code will return the interpolated column with no problem.
# this table has id, day, ts (timestamp) and signal columnsinput_table=spark.table("my_input_table")
assertinput_table.columns== ["id", "day", "ts", "signal"], "cols are not the same"transformed_data=TSDF(input_table, ts_col="ts", partition_cols=["id", "day"])
interpolated= (
transformed_data.resample(freq="5 minutes", func="mean")
.interpolate(method="linear")
.df
)
interpolated.columns== ["id", "day", "ts", "signal"], "cols are not the same"
Expected Behavior
When upgrading to DBR14 I would expect there are no columns dropped and the interpolated dataframe has the same columns as the input one
Steps To Reproduce
Set up a compute cluster with DBR13 LTS and one with DBR 14 LTS
have an input table with similar columns as above, perharps even just one partition column
Run the code above to see the difference between the two enviroments
Cloud
AWS
Version
dbl-tempo==0.1.27
Relevant log output
No response
The text was updated successfully, but these errors were encountered:
Hi @srggrs - thank you for reporting this issue to us. We are currently in process of a major re-write of the Tempo API, and we expect this to be available very soon. We will make sure that this issue does not come up in the new version. If this is a blocker for you, we might be able to try to develop a fix, but right now all our time is focused on the new release.
Is there an existing issue for this?
Current Behavior
In Databricks DBR13.3 cluster. This code will return the interpolated column with no problem.
Expected Behavior
When upgrading to DBR14 I would expect there are no columns dropped and the interpolated dataframe has the same columns as the input one
Steps To Reproduce
Cloud
AWS
Version
dbl-tempo==0.1.27
Relevant log output
No response
The text was updated successfully, but these errors were encountered: