2023 Oct 11 2:28 PM
Hi,
I have a Python script that reads an SAP ECC table via the pyrfc library. Everything works perfectly but I have a problem with the response time for large tables that require dozens of iterations.
For example for some tables the response time of "connection.call" goes from 10 seconds for the first iterations to 25 for the last iterations.
Read from 1 to 11000 records in 0:00:09.484373 seconds.
Read from 11001 to 22000 records in 0:00:08.478956 seconds.
Read from 22001 to 33000 in 0:00:08.250036 seconds.
...
Read from 3817001 to 3828000 in 0:00:23.078129 seconds.
Read from 3828001 to 3839000 in 0:00:23.668007 seconds.
Can anyone explain why?