I have a 20,000 record ScriptDB of product information that I would like to have updated with current price/stock info on an ~hourly basis. As it stands I am having trouble designing something that doesn't hit against the execution limit headfirst.
Downloaded stockfile is customizeable, currently I have it as JSON, like:
[
{"sku":"MYSKU1","price":14.99,"qty":2},
{"sku":"MYSKU2","price":22.99,"qty":25},
{"sku":"MYSKU3","price":91.99,"qty":31}
]
Currently I do something like:
var prod_feed = UrlFetchApp.fetch("https://www.site.com/myJSONfile").getContentText();
var prod_data = JSON.parse(prod_feed);
var prod_qty = 0, i = 0;
var prod_code = "";
var prod_price = "";
var db = ScriptDb.getMyDb();
var result_array = [];
var result_current = {};
var time_obj = dbDateObject();
for(i = 0; i < prod_data.length; i++) {
var result = db.query({sku: prod_data[i]["sku"]}).next(); // result will be null if no match
if (!result) {
// No match, create new object with this SKU for insertion
result = {};
result["sku"] = prod_data[i]["sku"];
}
result["qty"] = prod_data[i]["qty"];
result["price_default"] = prod_data[i]["price"];
result["last_product_update"] = time_obj;
result_array[i] = result;
}
var results = db.saveBatch(result_array, false);
I can run through about 2,500 records this way, and save them, before hitting time limits.
Is there any way I can use the SKU directly as the record ID? Then it would be practically 3 lines of code...
var prod_feed = UrlFetchApp.fetch("https://www.site.com/myJSONfile").getContentText();
var prod_data = JSON.parse(prod_feed);
var results = db.saveBatch(prod_data, false);
If not, any obvious way to increase this efficiency?
Thanks!
