felipecrv commented on issue #2802:
URL: https://github.com/apache/arrow-adbc/issues/2802#issuecomment-2866974455
> Do you know if the corresponding Rust code is installing any signal
handlers in your workflow?
We are using `tokio` as the async runtime and 8MB stacks.
```
let mut tokio_rt_builder = tokio::runtime::Builder::new_multi_thread();
tokio_rt_builder
.enable_all()
.thread_stack_size(8 * 1024 * 1024);
let rt = tokio_rt_builder
.build()
.expect("failed to initialize tokio runtime");
rt.block_on(execute()));
```
`execute` here is an `async fn`.
@gliga says error can be triggered even with just 2 queries and a handful of
queries.
--
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]