temporalio/temporal · error
%s
Error message
%s
What it means
Error "%s" thrown in temporalio/temporal.
Source
Thrown at service/history/api/respondworkflowtaskcompleted/workflow_size_checker.go:74
payloadSize int,
message string,
) error {
executionInfo := c.mutableState.GetExecutionInfo()
executionState := c.mutableState.GetExecutionState()
err := common.CheckEventBlobSizeLimit(
payloadSize,
c.blobSizeLimitWarn,
c.blobSizeLimitError,
executionInfo.NamespaceId,
executionInfo.WorkflowId,
executionState.RunId,
c.metricsHandler.WithTags(commandTypeTag),
c.logger,
commandTypeTag.Value,
)
if err != nil {
return fmt.Errorf("%s", message) // nolint:err113
}
return nil
}
func (c *workflowSizeChecker) checkIfMemoSizeExceedsLimit(
memo *commonpb.Memo,
commandTypeTag metrics.Tag,
message string,
) error {
metrics.MemoSize.With(c.metricsHandler).Record(
int64(memo.Size()),
commandTypeTag)
executionInfo := c.mutableState.GetExecutionInfo()
executionState := c.mutableState.GetExecutionState()
err := common.CheckEventBlobSizeLimit(
memo.Size(),
c.memoSizeLimitWarn,View on GitHub (pinned to bde624efd1)
When it happens
Trigger: Thrown at service/history/api/respondworkflowtaskcompleted/workflow_size_checker.go:74 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of temporalio/temporal@bde624efd1 (2026-09-01).
Data as JSON: /api/errors/ad9bc1f40e4746e9.
Report an issue: GitHub.