codecamp

OceanBase 常见问题排查

出现错误信息 “Could not read resultset: unexpected end of stream, read 0 bytes from 4”

这是在与服务器通信时出现的问题。

在大多数情况下,这是由读取具有较大结果集的查询引起的。服务器通常希望客户端相对快速地读取结果集。 ​net_write_timeout​ 服务器变量控制此行为(默认为 60s)。如果客户端在这段时间内没有读取整个结果集,则服务器将丢弃该连接。如果不希望在此时间内处理结果,则可以使用查询 ​SET STATEMENT net_write_timeout = 10000 FOR XXX​,其中 ​XXX​ 是指“常规”查询。针对此查询将 ​net_write_timeout​ 设置为更长的时间(在此示例中为 10000)。

如果应用程序通常使用很多具有 Fetch Size 的长查询,则可以使用 ​sessionVariables = net_write_timeout = xxx​ 选项设置连接。

如何进行轻量级 Ping/ 以避免大量使用“SELECT 1”

Connection.isValid()​ 可以进行轻量级 ​Ping/​ 以避免大量使用 ​SELECT 1​。​Connection.isValid()​ 在 MySQL 协议中执行 Ping 操作,而不是执行网络 Ping 操作。


OceanBase 安全功能
OceanBase 支持的 SQL 和 PL 数据类型
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OceanBase 控制台指南

OceanBase ODC 使用指南

OceanBase Web 版 ODC

OceanBase 客户端版 ODC

OceanBase Connector/J 开发者指南

OceanBase 什么是OceanBase Connector/J

OceanBase SQL 参考(MySQL 模式)

OceanBase SQL 参考(Oracle 模式)

OceanBase 基本元素

OceanBase 数据库对象

OceanBase 函数

OceanBase 单行函数

OceanBase 返回数字的字符串函数

OceanBase 通用比较函数

OceanBase 编码解码函数

OceanBase SQL 调优指南

OceanBase 相关协议

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }