eclipse-vertx / vert.x

Vert.x is a tool-kit for building reactive applications on the JVM
http://vertx.io
Other
14.26k stars 2.07k forks source link

Disconnection problem in slow motion videos when sending Unix domain socket video. #5229

Open Kite1717 opened 3 months ago

Kite1717 commented 3 months ago

Questions

I am using Vert.x 4.5.8. I have written a service for video upload. This service uploads the video and sends it as a request to a different service of ours. I am using Vert.x webclient for this. While there are no issues with normal videos, I get a connection error with slow-motion videos. The only error I receive is mentioned below. io.vertx.core.http.HttpClosedException: Connection was closed

Version

4.5.8

Extra

image
tsegismont commented 3 months ago

Can you provide some snippets or, even better, a small reproducer?

Kite1717 commented 3 months ago
image image image image

These screenshot contains flow. The error comes after the last screen recording I took. This only happens in slow motion videos.

tsegismont commented 3 months ago

The error message indicates the backend closed the connection in an unexpected manner. Maybe there's an issue on the backend with slow-motion videos?

You could also check what happens on the wire by enabling Netty logging https://vertx.io/docs/vertx-core/java/#netty-logging Or using a network traffic capturing tool.