Modules

filter

 

Objects/Functions

module (N/task)

SuiteScript 2.0

MapReduceScriptTaskStatus.getCurrentTotalSize()

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=MapReduceScriptTaskStatus.getCurrentTotalSize() for more information.

N/task Module
MapReduceScriptTaskStatus.getCurrentTotalSize()
Method Description: Returns the total size in bytes of all stored work in progress by a task.MapReduceScriptTask.
Returns: number
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Governance: 25 units
Module: N/task Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=MapReduceScriptTaskStatus.getCurrentTotalSize()

Example:

// Code Example 1
//Add additional code
//...
var summary = task.checkStatus(scriptTaskId);
var total = summary.getCurrentTotalSize()
log.audit({
title: 'Size of Remaining Data to Process',
details: total
});
//...
//Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_455688720702.html