Failed to parse the incoming object with IO error type 6

RuntimeError: <Server Exception> in run: Failed to parse the incoming object with IO error type 6
undef table 'TMP_TBL_012a677d' got an exception:

从python api调用s.loadTable()出现上述错误,这是什么原因?

阅读 2k
1 个回答

error type 6表示消息格式不正确。请检查一下您的代码。

附:各IO错误类型描述如下:

1  Socket is disconnected/closed or file is closed.
2  In non-blocking socket mode, there is no data ready for retrieval yet.
3  Out of memory, no disk space, or no buffer for sending data in non-blocking socket mode.
4  String size exceeds 64K or code size exceeds 1 MB during serialization over network.
5  In non-blocking socket mode, a program is in pending connection mode.
6  Invalid message format.
7  Reach the end of a file or a buffer.
8  File is readable but not writable.
9  File is writable but not readable.
10 A file doesn't exist or the socket destination is not reachable.
11 The database file is corrupted.
12 Not the leader node of the RAFT protocol.
13 Unknown IO error.
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进