Skip to main content
sanjuktab2257
May 6, 2025
Question

Understand interface performance matrix

  • May 6, 2025
  • 3 replies
  • 0 views

In the performance matrix for an interface is:
 
blue is caused by local!A.
pink is caused by local!B.

But local!B is using results from local!A . Since the logic is already evaluated in local!A, local!B is simply calling the results from local!A, then why it's taking the same amount of time.

3 replies

stefanhelzle0001
May 6, 2025

I interpret it in a way that Appian measures the time it takes until the value for a local is calculated.

sanjuktab2257
May 6, 2025

Is it suggested to break a complex query into two local variable operations or perform in the same local variable.

stefanhelzle0001
May 6, 2025

No. If the second value depends on the first, the second always has to wait. If you have the chance to decouple queries, Appian will automatically run them in parallel.