Akka payload exception catch

163 Views Asked by At

I need to catch the payload exceeded exception thrown by akka. This is because in case my payload is more than the permissible amount set in config file, the response just ends with a timeout. Instead of this present scenario, I would like to catch the exception akka throws in case payload is exceeded instead of waiting for a timeout. Can anyone help how to go about this?

1

There are 1 best solutions below

1
On

I need to catch the payload exceeded exception thrown by akka.

You can't.

OversizedPayloadException is internal to the Akka remoting capability and is on a thread that is invisible to your code. There is no way for your application to capture that exception. (And it's not thrown, but logged, as seen here and here, but that's a tangential fact.)

Having said that, one way to move forward is to follow the suggestions in this answer to a related question that you asked.