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
We want to analyze / process log messages from a hardware logger. Unfortunately the logs are quite big and due to the logger, some messages might come out of order (regarding the time).
Now we would need to sort the messages after time. But since the logs are quite big we can not collect the whole dataframe.
We would rather sort based on time within the individual batch of messages in the LazyFrame. At least for us this would be sufficient since messages are only slightly out of order. So a message from the start might not appear at the far end of the file.
Is this somehow possible?
The text was updated successfully, but these errors were encountered:
Description
We want to analyze / process log messages from a hardware logger. Unfortunately the logs are quite big and due to the logger, some messages might come out of order (regarding the time).
Now we would need to sort the messages after time. But since the logs are quite big we can not collect the whole dataframe.
We would rather sort based on time within the individual batch of messages in the LazyFrame. At least for us this would be sufficient since messages are only slightly out of order. So a message from the start might not appear at the far end of the file.
Is this somehow possible?
The text was updated successfully, but these errors were encountered: