I looks like you are sending 1.7gig data in your message, which far exceeds the default max that ZK enforces. See this: http://zookeeper.apache.org/doc/r3.3.3/zookeeperAdmin.html#Unsafe+Options
Typically ZK is not used to send large data like this, usually you want to store that data somewhere and use ZK to send a reference to that file (a URL say). Patrick On Sun, May 29, 2011 at 12:45 AM, Yosef Arraf <[email protected]> wrote: > Hi My Name is Yosef, > > I'm trying to work with Norbert that wraps ZooKeeper : > > As a test i'm running the NorbertJavaNetworkClientMain and > NorbertJavaNetworkServerMain > I have a problem when i send a message from the Client to the server - in > the zookeeper i;m getting the exception: > * > java.io.IOException: Unreasonable length = 1701999662 > at > org.apache.jute.BinaryInputArchive.readBuffer(BinaryInputArchive.java:100) > at > org.apache.zookeeper.proto.ConnectRequest.deserialize(ConnectRequest.java:89) > at > org.apache.zookeeper.server.NIOServerCnxn.readConnectRequest(NIOServerCnxn.java:733) > at > org.apache.zookeeper.server.NIOServerCnxn.readPayload(NIOServerCnxn.java:485) > at org.apache.zookeeper.server.NIOServerCnxn.doIO(NIOServerCnxn.java:521) > at > org.apache.zookeeper.server.NIOServerCnxn$Factory.run(NIOServerCnxn.java:262) > * > > And the server code never reach the message function handler > > can you help? > > Thanks, > Yosef >
