You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue when running a migration of more than 3 million records containing BLOB data, using 3-5 jobs with specified data limits. Although all data is migrated successfully to PostgreSQL, the application cannot proceed to the next steps. It appears to stall, showing the following debug logs:
[2024-10-31 15:32:59] [========================>] 1/1 tables (100.0%) end of scanning.
[2024-10-31 18:04:00] [========================>] 1078136/1 rows (107813600.0%) Table ENTITY_VALUE-part-1 (9060 sec., 118 recs/sec)
[2024-10-31 18:04:00] [========================>] 1078676/1 rows (107867600.0%) Table ENTITY_VALUE-part-2 (9060 sec., 119 recs/sec)
[2024-10-31 18:04:00] [========================>] 1078583/1 rows (107858300.0%) Table ENTITY_VALUE-part-0 (9060 sec., 119 recs/sec)
[2024-10-31 18:04:00] [========================>] 3235395/1 rows (323539500.0%) on total estimated data (9060 sec., avg: 357 tuples/sec)
FATAL: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
Aborting export...
After this point, the application doesn’t proceed further, despite all records appearing correctly in the database.
Expected Behavior: The migration should conclude, allowing the application to continue executing any subsequent steps without error or stalling.
Environment:
ora2pg Version: 24.1
PostgreSQL Version: 15
Oracle Client Version: 12.2
OS: Openshift Linux
Pod limit: 20Gb
Additional Context: I verified that all data has successfully migrated to PostgreSQL. Any insights on why the application might stall at this point, or adjustments to ensure full migration completion without stalling, would be helpful.
Edit: When I check the database sessions, after 1,5 hours all data copied and connections are closed except 1. Seems application does not close all connections.
The text was updated successfully, but these errors were encountered:
Have you checked at server side if there is a crash? The message FATAL: server closed the connection unexpectedly is emitted server side. I could be no space left for example.
I encountered an issue when running a migration of more than 3 million records containing BLOB data, using 3-5 jobs with specified data limits. Although all data is migrated successfully to PostgreSQL, the application cannot proceed to the next steps. It appears to stall, showing the following debug logs:
After this point, the application doesn’t proceed further, despite all records appearing correctly in the database.
Expected Behavior: The migration should conclude, allowing the application to continue executing any subsequent steps without error or stalling.
Environment:
Config parameters:
Additional Context: I verified that all data has successfully migrated to PostgreSQL. Any insights on why the application might stall at this point, or adjustments to ensure full migration completion without stalling, would be helpful.
Edit: When I check the database sessions, after 1,5 hours all data copied and connections are closed except 1. Seems application does not close all connections.
The text was updated successfully, but these errors were encountered: