Skip to main content

Working with a dataframe activity table in Python I export the file in parquet format for efficiency reasons. However, when I load the file in Celonis it doesn't recognise the timestamp in the proper format but as a string. Can anyone tell me why this error is happening?

 

Thank you very much.

 

Thanks a lot.

You need to use engine, use_deprecated_int96_timestamps. in convertion to parquet file for celonis to recognize the timestamps.

 

Example:

df.to_parquet('data.parquet',index = None,engine='pyarrow',use_deprecated_int96_timestamps=True)

 

Hope this solves your issue


Problem solved. Thank you very much.

 

Thanks a lot. 😄 ✌️


Reply