[
https://issues.apache.org/jira/browse/METRON-1641?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16525262#comment-16525262
]
ASF GitHub Bot commented on METRON-1641:
----------------------------------------
Github user cestella commented on the issue:
https://github.com/apache/metron/pull/1081
One more comment about restartability, I think we could potentially support
this with this architecture in the future. You can recover the Job object from
MR via the JobClient
```
Configuration conf = new Configuration();
JobClient jobClient = new JobClient(new JobConf(conf)); // deprecation WARN
JobID jobID = JobID.forName("job_201107011451_0001"); // deprecation WARN
RunningJob runningJob = jobClient.getJob(jobID);
```
We could look for jobs which are completed but not in the HDFS structure
and recover them on REST start. I would suggest doing that as a follow-on
though.
> Enable Pcap jobs to be submitted asynchronously
> -----------------------------------------------
>
> Key: METRON-1641
> URL: https://issues.apache.org/jira/browse/METRON-1641
> Project: Metron
> Issue Type: New Feature
> Reporter: Michael Miklavcic
> Assignee: Michael Miklavcic
> Priority: Major
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)