Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -18401,6 +18401,11 @@
"invalidScheduleError": {
"type": "string",
"description": "Deprecated."
},
"stateSizeBytes": {
"type": "string",
"format": "int64",
"description": "Size of the schedule's internal state (including payloads) in bytes."
}
}
},
Expand Down Expand Up @@ -18454,6 +18459,11 @@
"type": "string",
"format": "date-time"
}
},
"stateSizeBytes": {
"type": "string",
"format": "int64",
"description": "Size of the schedule's internal state (including payloads) in bytes."
}
},
"description": "ScheduleListInfo is an abbreviated set of values from Schedule and ScheduleInfo\nthat's returned in ListSchedules."
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15453,6 +15453,9 @@ components:
invalidScheduleError:
type: string
description: Deprecated.
stateSizeBytes:
type: string
description: Size of the schedule's internal state (including payloads) in bytes.
ScheduleListEntry:
type: object
properties:
Expand Down Expand Up @@ -15496,6 +15499,9 @@ components:
items:
type: string
format: date-time
stateSizeBytes:
type: string
description: Size of the schedule's internal state (including payloads) in bytes.
description: |-
ScheduleListInfo is an abbreviated set of values from Schedule and ScheduleInfo
that's returned in ListSchedules.
Expand Down
6 changes: 6 additions & 0 deletions temporal/api/schedule/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ message ScheduleInfo {

// Deprecated.
string invalid_schedule_error = 8 [deprecated = true];

// Size of the schedule's internal state (including payloads) in bytes.
int64 state_size_bytes = 12;
}

message Schedule {
Expand Down Expand Up @@ -377,6 +380,9 @@ message ScheduleListInfo {
// From info (maybe fewer entries):
repeated ScheduleActionResult recent_actions = 5;
repeated google.protobuf.Timestamp future_action_times = 6;

// Size of the schedule's internal state (including payloads) in bytes.
int64 state_size_bytes = 7;
}

// ScheduleListEntry is returned by ListSchedules.
Expand Down
Loading