Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.16
-
None
-
None
Description
A .NET driver is backed by a Java driver, with driver-side events being delegated from Java to .NET via JNI. However, for the ease of development, we currently have setup all events to be processed one at a time, sequentially.
// org.apache.reef.javabridge.generic.JobDriver public void onNext(final AllocatedEvaluator allocatedEvaluator) { synchronized (JobDriver.this) { .. } } public void onNext(final ActiveContext context) { synchronized (JobDriver.this) { .. } }
Concurrent processing is NOT inherently impossible, since we already have it on the Java side. We can make improvements to the code so that concurrency is allowed for the .NET side too.
Attachments
Issue Links
- relates to
-
REEF-334 Make sure REEF.NET builds and runs on Linux
- Open
There are no Sub-Tasks for this issue.