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
RIght now Pythia re-processes all Jaeger traces by default once its up and has no memory of previously processed traces.
This leads to duplication of work and metrics becoming erroneus.
Need a watermarking solution to keep track of last processed timestamp so if the Pythia docker crashes and is brought back up it doesnt reprocess old traces
The text was updated successfully, but these errors were encountered:
To fix this bug we filter the traces by start and end time in order to reduce the number and also keep track of old traces that were process already in order to avoid reprocessing. Maybe a better solution is to use a queue this will also allow for multiple instances of pythia to process traces in parallel
RIght now Pythia re-processes all Jaeger traces by default once its up and has no memory of previously processed traces.
This leads to duplication of work and metrics becoming erroneus.
Need a watermarking solution to keep track of last processed timestamp so if the Pythia docker crashes and is brought back up it doesnt reprocess old traces
The text was updated successfully, but these errors were encountered: