You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Serialization context propagated from the Nexus caller that started this update."
13107
13119
}
13108
13120
},
13109
13121
"description": "The request information that will be delivered all the way down to the\nWorkflow Execution."
@@ -13518,6 +13530,10 @@
13518
13530
"type": "string",
13519
13531
"format": "date-time",
13520
13532
"description": "The time at which the first activity task is made available for dispatch, computed as\n`schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set."
"description": "Serialization context propagated from the Nexus caller that started this activity."
13521
13537
}
13522
13538
},
13523
13539
"description": "Information about a standalone activity."
@@ -18066,6 +18082,10 @@
18066
18082
"pollerGroupsInfo": {
18067
18083
"$ref": "#/definitions/v1PollerGroupsInfo",
18068
18084
"description": "The weighted, versioned list of poller groups IDs that client should use for future polls to\nthis task queue. Client should ignore this if it has already applied a snapshot with a\nversion greater than or equal to `poller_groups_info.version`. Client is expected to:\n 1. Maintain minimum number of pollers no less than the number of groups.\n 2. Try to assign the next poll to a group without any pending polls,\n 3. If every group has some pending polls, assign the next poll to a group randomly\n according to the weights."
"description": "Serialization context propagated from the Nexus caller that started this workflow."
18069
18089
}
18070
18090
}
18071
18091
},
@@ -18181,6 +18201,22 @@
18181
18201
},
18182
18202
"description": "Priority contains metadata that controls relative ordering of task processing\nwhen tasks are backed up in a queue. Initially, Priority will be used in\nmatching (workflow and activity) task queues. Later it may be used in history\ntask queues and in rate limiting decisions.\n\nPriority is attached to workflows and activities. By default, activities\ninherit Priority from the workflow that created them, but may override fields\nwhen an activity is started or modified.\n\nDespite being named \"Priority\", this message also contains fields that\ncontrol \"fairness\" mechanisms.\n\nFor all fields, the field not present or equal to zero/empty string means to\ninherit the value from the calling workflow, or if there is no calling\nworkflow, then use the default value.\n\nFor all fields other than fairness_key, the zero value isn't meaningful so\nthere's no confusion between inherit/default and a meaningful value. For\nfairness_key, the empty string will be interpreted as \"inherit\". This means\nthat if a workflow has a non-empty fairness key, you can't override the\nfairness key of its activity to the empty string.\n\nThe overall semantics of Priority are:\n1. First, consider \"priority\": higher priority (lower number) goes first.\n2. Then, consider fairness: try to dispatch tasks for different fairness keys\n in proportion to their weight.\n\nApplications may use any subset of mechanisms that are useful to them and\nleave the other fields to use default values.\n\nNot all queues in the system may support the \"full\" semantics of all priority\nfields. (Currently only support in matching task queues is planned.)"
18183
18203
},
18204
+
"v1PropagatedNexusSerializationContext": {
18205
+
"type": "object",
18206
+
"properties": {
18207
+
"endpoint": {
18208
+
"type": "string"
18209
+
},
18210
+
"service": {
18211
+
"type": "string"
18212
+
},
18213
+
"operation": {
18214
+
"type": "string",
18215
+
"description": "If more context is needed, this message can be extended with additional fields."
18216
+
}
18217
+
},
18218
+
"description": "PropagatedNexusSerializationContext represents the context of the Nexus caller that started this entity.\nIf multiple Nexus callers attempt to attach to the same entity the server will verify that\neach field matches, if any field does not match then the request will be rejected."
18219
+
},
18184
18220
"v1QueryRejectCondition": {
18185
18221
"type": "string",
18186
18222
"enum": [
@@ -18421,6 +18457,10 @@
18421
18457
"$ref": "#/definitions/v1Link"
18422
18458
},
18423
18459
"description": "Links to be associated with this update."
0 commit comments