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

Parallel Queries #388

Closed
domoritz opened this issue May 23, 2024 · 1 comment · Fixed by #475
Closed

Parallel Queries #388

domoritz opened this issue May 23, 2024 · 1 comment · Fixed by #475
Labels
projects Project ideas for Mosaic

Comments

@domoritz
Copy link
Member

Right now, Mosaic sends one query after another to the server. This means that it always has to wait for a result to return before a next query is sent which means the server is not used effectively. As a first step, try to send a batch of queries. By batching we still maintain the order or queries which avoids potential bugs with out-of-order responses. In the next step, try building a HTTP server that processes requests in parallel and returns results out of order without leading to bugs in the UI.

@domoritz domoritz added the projects Project ideas for Mosaic label May 23, 2024
@kzhang31415
Copy link

working on this issue

This was referenced Aug 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
projects Project ideas for Mosaic
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants