-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Labels
bugSomething isn't workingSomething isn't workinginitiative: VDK OracleVDK Oracle supportVDK Oracle support
Milestone
Description
Overview
While doing load testing, this error was happening sporadically and failing for 1% of ingestion rows. It might be due to unnecessary commit calls.
We probably don't need this commit call, because of commit being called on connection close anyway.
This has to be tested, however.
How to reproduce
- Remove this try-except
- Ingest 1 000 000 records using a functional test where you generate the table id in python code, e.g.
for i in range(1000000):
p = payload.copy()
p["id"] = i
job_input.send_object_for_ingestion(
payload=p, destination_table="test_table"
)- Check result logs for ORA-01002
Acceptance criteria
- Reproduce the bug and fix it
- Remove the extra commit call and test that everything else works correctly
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinginitiative: VDK OracleVDK Oracle supportVDK Oracle support