ISchedulerJob::EstimatedProcessMemory property

Retrieves or sets the estimate of the maximum amount of memory the job will consume.

This property is read/write.

Syntax

HRESULT put_EstimatedProcessMemory(
  [in]  long value
);

HRESULT get_EstimatedProcessMemory(
  [out] long *pValue
);

Property value

The estimated number of megabytes of memory the job will require.

Error codes

If the method succeeds, the return value is S_OK. Otherwise, the return value is an error code. To get a description of the error, access the ErrorMessage task property.

Remarks

The EstimatedProcessMemory property is used by the job scheduler to assign jobs to nodes with sufficient memory to execute the job.

Requirements

Product

This property was introduced in Windows HPC Server 2008 R2 with Service Pack 1 (SP1) and is not supported in previous versions.

Type library

Microsoft.Hpc.Scheduler.tlb

See also

ISchedulerJob