You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our environment, warning message appeared in connection-event log file as below.
Unknown protocol code: [ProtocolVersion{version=[3]}] while decode in ProtocolDecoder.]
Why report this warning message? What possible kind of situations will trigger this warning message?
Environment
SOFABolt version: 1.6.5
JVM version (e.g. java -version):
java version "1.8.0_331"
Java(TM) SE Runtime Environment (build 1.8.0_331-b09)
Java HotSpot(TM) 64-Bit Server VM (build 25.331-b09, mixed mode)
OS version (e.g. uname -a):
Server:
Linux host1 4.18.0-193.el8.x86_64 (doc) modify docs #1 SMP Mon Jun 22 15:09:41 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Client: Windows 7
The text was updated successfully, but these errors were encountered:
Protocol Version is the first byte of your application layer network frame. Usually it is 1 (for BoltV1) and 2 for (BoltV2 protocol). If the first byte is 3 , bolt can not find the correspond protocol, so you will see this error .
There may be two common causes of this problem :
Some unknown client send wrong packets to your port.
Decoder did not consume all data in one packet, so some wrong data left in cache. The next time Decoder consume data, it read the wrong data.
Your question
In our environment, warning message appeared in connection-event log file as below.
Unknown protocol code: [ProtocolVersion{version=[3]}] while decode in ProtocolDecoder.]
Why report this warning message? What possible kind of situations will trigger this warning message?
Environment
SOFABolt version: 1.6.5
JVM version (e.g.
java -version
):java version "1.8.0_331"
Java(TM) SE Runtime Environment (build 1.8.0_331-b09)
Java HotSpot(TM) 64-Bit Server VM (build 25.331-b09, mixed mode)
OS version (e.g.
uname -a
):Server:
Linux host1 4.18.0-193.el8.x86_64 (doc) modify docs #1 SMP Mon Jun 22 15:09:41 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Client: Windows 7
The text was updated successfully, but these errors were encountered: