joellubi commented on issue #2094:
URL: https://github.com/apache/arrow-adbc/issues/2094#issuecomment-2307297130

   @davlee1972 As a test, could you attempt to run this loop and execute 
`adbc_ingest` with a new connection every time? So it would be something like:
   ```python
   for file in my_dataset.files:
       file_dataset = ds.dataset(file)
       with dbapi.connect(uri) as conn:
           with conn.cursor() as cur:
               cur.adbc_ingest(...)
   ```
   
   I suspect the temp stage may not be dropped between calls since the 
connection is being reused. We may be able to fix this by making the stage 
names unique, but this experiment may help diagnose the issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to