snuspl / dolphin

14 stars 2 forks source link

Decouple parameter server threads from REEF NCS threads #157

Closed jsjason closed 8 years ago

jsjason commented 8 years ago

Currently the parameter server module uses NCS threads (EventHandler.onNext() threads) directly to do its work, which becomes a problem when that work takes a long time since the server is using up NCS's resources that could be used to receive messages intended for other clients. The work should be done by the ps module's own threads and not NCS's threads. Related to #152.

jsjason commented 8 years ago

Closed via #177.