Arun Jose
Arun Jose
When sending data corresponding to a dataid from a host to other host we currently send data as the whole buffer. This currently crashes and is addresed in #376. As...
Spawn a background thread which send data to workers, So the main thread is not blocked during the data send and serialisation processes.
Alternative to the current round robin approach, A possible way of scheduling is to track the number of tasks running on each worker in a scheduler class. This could be...
Blocking get to a worker fails inside a remote function, if the same worker sends back an operation to the worker that issues the blocking get. eg: If worker_A sends...
Pytest hangs after running all tests when running tests from a directory. This could be due to multiple instances of unidist.init() being called. Could be fixed by having a conftest...
Can FlightSQLClient be used with local installation of influx-db , ``` query_client = FlightSQLClient( host = "localhost", token = token, port=8086, metadata={"bucket-name": bucket_name}) query = """SELECT * FROM table """...
## What do these changes do? - [x] first commit message and PR title follow format outlined [here](https://modin.readthedocs.io/en/latest/development/contributing.html#commit-message-formatting) > **_NOTE:_** If you edit the PR title to match this format,...