【发布时间】:2019-07-19 21:20:22
【问题描述】:
我们正在使用 HDP 3。我们正在尝试将 PDF 文件插入到 Hbase 表中特定列族的列之一中。开发环境为python 3.6,hbase连接器为happybase 1.1.0。
我们无法在 hbase 中上传任何大于 10 MB 的 PDF 文件。
我们得到以下错误:
IOError(message=b'org.apache.hadoop.hbase.client.RetriesExhaustedWithDetailsException: 1 项操作失败:org.apache.hadoop.hbase.DoNotRetryIOException: Cell 大小为 80941994 的超过 10485760 字节的限制\n\tat org.apache.hadoop.hbase.regionserver.RSRpcServices.checkCellSizeLimit(RSRpcServices.java:937)\n\tat org.apache.hadoop.hbase.regionserver.RSRpcServices.doBatchOp(RSRpcServices.java:1010)\n\tat org.apache.hadoop.hbase.regionserver.RSRpcServices.doNonAtomicBatchOp(RSRpcServices.java:959)\n\tat org.apache.hadoop.hbase.regionserver.RSRpcServices.doNonAtomicRegionMutation(RSRpcServices.java:922)\n\tat org.apache.hadoop.hbase.regionserver.RSRpcServices.multi(RSRpcServices.java:2683)\n\tat org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos$ClientService$2.callBlockingMethod(ClientProtos.java:42014)\n\tat org.apache.hadoop.hbase.ipc.RpcServer.call(RpcServer.java:409)\n\tat org.apache.hadoop.hbase.ipc.CallRunner.run(CallRunner.java:131)\n\tat org.apache.hadoop.hbase.ipc.RpcExecutor$Handler.run(RpcExecutor.java:324)\n\tat
【问题讨论】:
标签: python-3.x hbase thrift happybase hdp