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=31&rev2=32 A job, derived from JobInProgress, in general holds some basic information, including: * jobId: BSPJobID. The id of this job. + * jobName: String. The name of this job. * user: String. See BSPJobContext.getUser() wherein configures via conf.get("user.name") * jobFile: Path. job.xml. See BSPJobClient.submitJobInternal() * localJobFile: Path. A local copied jobFile. * localJarFile: Path. A local copied jar file. + * numBSPTasks: int. The number of BSP tasks to be + * master: String. The name of master server that is responsible for this job. - * jobName: String. The name of this job. - * status: JobStatus. Mainly JobStatus.State - * superstepCount: long. This job's superstep count. - * startTime: long. The time this job is started. - * finishTime: long. The time this job is finished. * maxTaskAttempts: int. default to 2. * MAX_TASK_EXEC: int. bound to 1. + launched. - * numBSPTasks: int. The number of BSP tasks to be launched. - * master: String. The name of master server that is responsible for this job. - * inputPath: Path. Dir where split files are stored. + * inputPath: Path. Dir where split files are stored. i/o. + * status: JobStatus. Mainly JobStatus.State. job status. + * progress: long. % of bsp(). job status. + * setupProgress: long. % of setup() job status. + * cleanupProgress: long. % of cleanup() job status. + * startTime: long. The time this job is started. job status. + * finishTime: long. The time this job is finished. job status. + * superstepCount: long. This job's superstep count. job satus. * Tasks: Actual launched TaskInProgress depends on numBSPTasks. <<BR>> TODO: An object that holds multiple tasks execution including successful/ failed/ current task <<BR>> See Job Task Relation section <<BR>>
