Skip to content

Commit 10a8221

Browse files
committed
Add blob_size_limit_error to NamespaceInfo
1 parent a22489c commit 10a8221

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

temporal/api/namespace/v1/message.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ message NamespaceInfo {
4040
bool reported_problems_search_attribute = 5;
4141
}
4242

43+
// Namespace configured limits
44+
Limits limits = 8;
45+
message Limits {
46+
// Maximum size in bytes for payload fields in workflow history events
47+
// (e.g., workflow/activity inputs and results, failure details, signal payloads).
48+
// When exceeded, the server will reject the operation with an error.
49+
int64 blob_size_limit_error = 1;
50+
}
51+
4352
// Whether scheduled workflows are supported on this namespace. This is only needed
4453
// temporarily while the feature is experimental, so we can give it a high tag.
4554
bool supports_schedules = 100;

0 commit comments

Comments
 (0)