check off validation upon completion during execute
We tested out the call count to the existing validateCounter using the Herz call referred to in T406976.
BEFORE
function-orchestrator-1 | <CALL COUNTS> {
function-orchestrator-1 | validate: 55
function-orchestrator-1 | eager: 2682
function-orchestrator-1 | dangling: 1
function-orchestrator-1 | execute: 3904
function-orchestrator-1 | } <END CALL COUNTS>
🎉 AFTER adding setIsValidate( true ) 🎉
function-orchestrator-1 | <CALL COUNTS> {
function-orchestrator-1 | validate: 25
function-orchestrator-1 | eager: 2683
function-orchestrator-1 | dangling: 1
function-orchestrator-1 | execute: 3874
function-orchestrator-1 | } <END CALL COUNTS>
Setting rate-limiting env var to maxSimultaneousExecutions: 10000
BEFORE
function-orchestrator-1 | <CALL COUNTS> {
function-orchestrator-1 | validate: 76
function-orchestrator-1 | eager: 3408
function-orchestrator-1 | dangling: 3
function-orchestrator-1 | execute: 5826
function-orchestrator-1 | } <END CALL COUNTS>
🎉 AFTER 🎉
function-orchestrator-1 | <CALL COUNTS> {
function-orchestrator-1 | validate: 49
function-orchestrator-1 | eager: 3408
function-orchestrator-1 | dangling: 3
function-orchestrator-1 | execute: 5799
function-orchestrator-1 | } <END CALL COUNTS>
Bug: T408751