Hi For java thrift client, we have the API to set the readLength, like TBinaryProtocol tBinaryProtocol = new TBinaryProtocol(transport); tBinaryProtocol.setReadLength(10);
How to set readLength for python thrift client.
self.transport =
TTransport.TBufferedTransport(TSocket.TSocket(hbaseThriftServerIP,
hbaseThriftServerPort),True)
protocol = TBinaryProtocol.TBinaryProtocol(self.transport)
Regards,
Pankaj
