By, default Lambda concurrent execution limit is 1000 and invocation is (*10 * current_execution_limit*) 10,000. https://docs.aws.amazon.com/lambda/latest/dg/limits.html
How and when will the invocation limit come into play? If I invoke a total of say 1001 functions at a given time in 1 account it will give a throttling error as 1000 functions will be active, then what is the point of setting an invocation limit when it can never be reached? Is my understanding correct? How can one reach the invocation limit without disturbing concurrency limit?