I am designing an application where I create 10000 tasks.
I have a coroutine (async function that queried webservice) and I do asyncio create_task on the coroutine 10000 times with different parameters.
Is there an upper limit of tasks that can be run concurrently?