Log Replay with Timing

Hello Kdb+ enthusiasts!

I have a binary log file around 100 GB which I want to replay with respect to each line timing. Normally, when we replay the log file, it is simply going quickly over all lines and let’s say it will complete in 10 minutes. But I want to replay the log files in a manner that respect the timing of each row.

Is this possible?

you can put am if[time = .z.t ; replay line]

You can modify .z.ps - add your logic based on the timing constraints. Refer - https://code.kx.com/q/kb/replay-log/ for example.

Hmm, I see. Thank you for these info, I’ll try that!