Hi
My 64-bit machine has 32 GB of memory and only uses around 8 GB when I'm running Power BI Desktop.
I'm reading a physical CSV file from disk in TypeScript. In my update(options: VisualUpdateOptions) method, I have
var dataView = options.dataViews[0];
var rows: DataViewTableRow = dataView.table.rows;
console.log('rows length: ', rows.length); // This would print out 1000
dataViewMapppings is defined as followed in capabilities.json:
"dataRoles": [
{
"displayName": "Values",
"name": "values",
"kind": 2
}
],
"dataViewMappings": [
{
"table": {
"rows": {
"for": {
"in": "values"
}
}
}
}
],
Do you see anything out of the ordinary here? Thanks.