Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Serializer Exception causes deadlock in sync queries #600

Open
konsultaner opened this issue Mar 14, 2025 · 2 comments
Open

Serializer Exception causes deadlock in sync queries #600

konsultaner opened this issue Mar 14, 2025 · 2 comments

Comments

@konsultaner
Copy link

I try to switch from arangodb 3.9 to 3.12 and therfore updated to the latest driver version. I have a couple of synced query executions. One recently ended up onto a deadlock situation with the following error:

No serializer found for class Component$CookingInstruction and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_B
EANS) 

WARN  i.v.core.impl.BlockedThreadChecker - Thread Thread[adb-http-0,5,main] has been blocked for 2437 ms, time limit is 2000 ms

...

io.vertx.core.VertxException: Thread blocked

The issue was a static class that had only no field visibility definitions.

public static class MyBean {
    String name;
}

It's ok that the class causes the bean serializer issue, but I think the deadlock should not happen.

@konsultaner konsultaner changed the title Serializer Exceptions causes deadlock in sync queries Serializer Exception causes deadlock in sync queries Mar 14, 2025
@rashtao
Copy link
Collaborator

rashtao commented Mar 18, 2025

Hi @konsultaner ,
unfortunately I cannot reproduce your issue. Using MyBean causes the exception JsonMappingException to be thrown in the caller thread. The connection thread is not blocked and I have no deadlock.
Can you please provide a reproducible code snippet?

@konsultaner
Copy link
Author

Oh OK, I'll try asap.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants