Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python ThreadedReader queue building up #108

Closed
fnoop opened this issue Aug 17, 2018 · 1 comment
Closed

Python ThreadedReader queue building up #108

fnoop opened this issue Aug 17, 2018 · 1 comment

Comments

@fnoop
Copy link
Member

fnoop commented Aug 17, 2018

Long latency between the incoming data and the sending timestamp - up to 1s. This looks to be because the threadsafe FIFO queue is building up rapidly and not being processed quickly enough, so old data is being processed.
Changing to a LIFO queue helps, but the queue will build up infinitely and doesn't deal with the underlying problem.

@fnoop
Copy link
Member Author

fnoop commented Aug 22, 2018

Temporarily addressed in cef02bd, by adding an additional logic to pop the FIFO queue if it gets above 10

@fnoop fnoop closed this as completed Aug 22, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant