class Torque::Job

Represents a completed job

Attributes

command_name[RW]

The name of the command

cpu_time[RW]

The job’s total CPU time

exit_code[RW]

The job’s exit code

group_name[RW]

The group name of the user who created the job

physical_memory[RW]

The job’s maximum physical memory usage in kilobytes

start_time[RW]

The job’s start time

user_name[RW]

The name of the user who created the job

virtual_memory[RW]

The job’s maximum virtual memory usage in kilobytes

wall_time[RW]

The job’s total wall time

Public Instance Methods

memory() click to toggle source

Returns the job’s total maximum memory usage in kilobytes

# File lib/bookie/senders/torque_cluster.rb, line 51
def memory
  physical_memory + virtual_memory
end