You are troubleshooting a canvas app that loads slowly. The app uses over 50 data sources and many formulas. Which action is most likely to improve performance?
Trap 1: Increase the data row limit for each data source
Increasing row limit can slow performance.
Trap 2: Disable the formula-level error checking
Error checking does not impact app performance.
Trap 3: Remove unused data sources from the app
Unused data sources do not affect runtime performance.
- A
Increase the data row limit for each data source
Why wrong: Increasing row limit can slow performance.
- B
Use delegable queries to filter data at the source
Delegation pushes filtering to the data source, reducing data transfer.
- C
Disable the formula-level error checking
Why wrong: Error checking does not impact app performance.
- D
Remove unused data sources from the app
Why wrong: Unused data sources do not affect runtime performance.