admin管理员组文章数量:1345054
I need inventory details as csv, there are total of 750k records and I need it in csv, Saved search is not loading in UI and getInputData() is stucked from past 15hrs. How can I do this? multiple csv works.
/** * @NApiVersion 2.1 * @NScriptType MapReduceScript */ define(['N/search', 'N/file', 'N/log'], function(search, file, log) {
const ROW_LIMIT = 100000;
const HEADER = [
'Item ID',
'Price From',
'Wine Owner',
'Document Number',
'Item Rate',
'Price - Rate Diff',
'Status',
'Inventory Number'
];
function getInputData() {
return search.load({
id: 'customsearch_st_itemsaved_search_report_'
});
}
function map(context) {
const result = JSON.parse(context.value);
const row = [
result.values.itemid,
result.values.custitem_pricefrom,
result.values.custitemwine_owner,
result.values["tranid.transaction"],
result.values["rate.transaction"],
result.values.formulanumeric,
result.values["statusref.transaction"],
result.values["inventorynumber.inventoryDetail"]
];
const csvSafe = row.map(v => `"${(v || '').toString().replace(/"/g, '""')}"`);
context.write({
key: 'csv',
value: csvSafe.join(',')
});
}
function reduce(context) {
const chunkSize = ROW_LIMIT;
const header = HEADER.join(',');
let lines = [header];
let part = 1;
context.values.forEach((line, index) => {
lines.push(line);
if ((index + 1) % chunkSize === 0) {
saveCSV(lines, part);
lines = [header];
part++;
}
});
// Save last chunk if needed
if (lines.length > 1) {
saveCSV(lines, part);
}
}
function saveCSV(lines, part) {
const fileName = `ItemSearch_Export_${part}.csv`;
const csvFile = file.create({
name: fileName,
fileType: file.Type.CSV,
contents: lines.join('\n'),
folder: 194669
});
const fileId = csvFile.save();
log.audit(`Saved File ${fileName}`, `File ID: ${fileId}`);
}
return {
getInputData,
map,
reduce
};
});
本文标签: mapreduceNetsuiteI need to process 750K recordsand create CSV for the sameStack Overflow
版权声明:本文标题:mapreduce - Netsuite - I need to process 750K records, and create CSV for the same - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779831a2537627.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论