johnyangk commented on a change in pull request #219: [NEMO-351] Empowering
Nemo with fast I/O using Apache Crail
URL: https://github.com/apache/incubator-nemo/pull/219#discussion_r292249462
##########
File path: runtime/driver/src/main/java/org/apache/nemo/driver/NemoDriver.java
##########
@@ -232,6 +238,10 @@ private Configuration getExecutorConfiguration(final
String executorId) {
.set(JobConf.JOB_ID, jobId)
.build();
+ final JavaConfigurationBuilder jcb =
Tang.Factory.getTang().newConfigurationBuilder();
+ if (remoteOpt.equals("crail"))
jcb.bindImplementation(RemoteFileStore.class, CrailFileStore.class);
+ final Configuration remoteConf = jcb.build();
Review comment:
Please remove. (See above)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services