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
| Batch trigger payload | The total of all payloads must not exceed 1MB|
55
+
| Batch trigger payload | The total of all payloads must not exceed 5MB|
58
56
| Task outputs | Must not exceed 10MB |
59
57
60
58
Payloads and outputs that exceed 512KB will be offloaded to object storage and a presigned URL will be provided to download the data when calling `runs.retrieve`. You don't need to do anything to handle this in your tasks however, as we will transparently upload/download these during operation.
@@ -78,38 +76,47 @@ A single batch can have a maximum of 500 items.
78
76
We limit the size of logs to prevent oversized data potentially causing issues.
79
77
80
78
<Expandabletitle="log limits">
79
+
#### Attribute Limits
80
+
81
+
* Span Attribute Count Limit: 256
82
+
83
+
* Log Attribute Count Limit: 256
84
+
85
+
* Span Attribute Value Length Limit: 1028 characters
86
+
87
+
* Log Attribute Value Length Limit: 1028 characters
88
+
89
+
#### Event and Link Limits
90
+
91
+
* Span Event Count Limit: 10
92
+
93
+
* Link Count Limit: 2
94
+
95
+
* Attributes per Link Limit: 10
96
+
97
+
* Attributes per Event Limit: 10
81
98
82
-
#### Attribute Limits
99
+
#### I/O Packet Length Limit
83
100
84
-
- Span Attribute Count Limit: 256
85
-
- Log Attribute Count Limit: 256
86
-
- Span Attribute Value Length Limit: 1028 characters
87
-
- Log Attribute Value Length Limit: 1028 characters
101
+
128 KB (131,072 bytes)
88
102
89
-
#### Event and Link Limits
103
+
#### Attribute Clipping Behavior
90
104
91
-
- Span Event Count Limit: 10
92
-
- Link Count Limit: 2
93
-
- Attributes per Link Limit: 10
94
-
- Attributes per Event Limit: 10
105
+
* Attributes exceeding the value length limit (1028 characters) are discarded.
95
106
96
-
#### I/O Packet Length Limit
107
+
* If the total number of attributes exceeds 256, additional attributes are not included.
97
108
98
-
128 KB (131,072 bytes)
109
+
#### Attribute Value Size Calculation
99
110
100
-
#### Attribute Clipping Behavior
111
+
* Strings: Actual length of the string
101
112
102
-
- Attributes exceeding the value length limit (1028 characters) are discarded.
103
-
- If the total number of attributes exceeds 256, additional attributes are not included.
113
+
* Numbers: 8 bytes
104
114
105
-
#### Attribute Value Size Calculation
115
+
* Booleans: 4 bytes
106
116
107
-
- Strings: Actual length of the string
108
-
- Numbers: 8 bytes
109
-
- Booleans: 4 bytes
110
-
- Arrays: Sum of the sizes of all elements
111
-
- Undefined or null: 0 bytes
117
+
* Arrays: Sum of the sizes of all elements
112
118
119
+
* Undefined or null: 0 bytes
113
120
</Expandable>
114
121
115
122
## Alerts
@@ -134,4 +141,4 @@ See the [machine configurations](/machines#machine-configurations) for more deta
0 commit comments