消息太大,AppEngine任务队列异常

时间:2011-09-16 18:00:23

标签: java google-app-engine

从AppEngine Javadoc API中读取TaskOptionsQueue后,当Task的有效负载超过100KB的限制时,我找不到抛出的异常。我在哪里可以找到这些信息?

更新:提交了more specific exception的请求。

1 个答案:

答案 0 :(得分:2)

找到我的答案,查看source code

if (txn != null &&
        bulkAddRequest.encodingSize() > QueueConstants.maxTransactionalRequestSizeBytes()) {
      throw new IllegalArgumentException(
          String.format("Transactional add may not be larger than %d bytes: %d bytes requested.",
              QueueConstants.maxTransactionalRequestSizeBytes(),
              bulkAddRequest.encodingSize()));
    }