Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hama Wiki" for change notification.
The "JobInformation" page has been changed by ChiaHungLin: https://wiki.apache.org/hama/JobInformation?action=diff&rev1=27&rev2=28 == Job Information == A job, derived from JobInProgress, in general holds some basic information, including: - * BSPJobID + * jobId: BSPJobID. The id of this job. - * user: See BSPJobContext.getUser() wherein configures via conf.get("user.name") + * user: String. See BSPJobContext.getUser() wherein configures via conf.get("user.name") - * jobFile: job.xml. See BSPJobClient.submitJobInternal() + * jobFile: Path. job.xml. See BSPJobClient.submitJobInternal() - * localJobFile: a local copied jobFile. + * localJobFile: Path. A local copied jobFile. - * localJarFile: a local copied jar file. + * localJarFile: Path. A local copied jar file. - * Job name: The name of this job. + * jobName: String. The name of this job. - * JobStatus: Mainly JobStatus.State + * status: JobStatus. Mainly JobStatus.State - * superstepCount: - * StartTime - * FinishTime + * superstepCount: long. This job's superstep count. + * startTime: long. The time this job is started. + * finishTime: long. The time this job is finished. * numBSPTasks: The number of BSP tasks to be launched. * Tasks: Actual launched TaskInProgresses depends on numBSPTasks. <<BR>> TODO: An object that holds multiple tasks execution including successful/ failed/ current task <<BR>>
