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
Copy file name to clipboardExpand all lines: src/personas/sql-traits.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ When you're building your query, there are some requirements for the data your q
153
153
- It must return at least one additional trait in addition to `user_id`/`group_id`, and no more than 25 total columns
154
154
- The query must not return any `user_id`s with a `null` value, or any duplicate `user_id`s.
155
155
- The query must not return more than 10 million rows.
156
-
- Each record must be less than 32kb in size to adhere to [Segment's maximum request size](/docs/connections/sources/catalog/libraries/server/http-api/#max-request-size).
156
+
- Each record must be less than 16kb in size to adhere to [Segment's maximum request size](/docs/connections/sources/catalog/libraries/server/http-api/#max-request-size).
157
157
158
158
A successful preview returns a sample of users and their traits.
159
159
If we have seen a user before in Personas, their profile shows a green checkmark. You can click that user to view their user profile. If a user has a question mark, we haven't seen this `user_id` in Personas before.
@@ -220,9 +220,9 @@ No, Personas only sends an identify/group call if the values in a row have chang
220
220
221
221
If you're importing a large list of users and traits, the biggest consideration is the API call usage and volume among the partners you are sending the data to. These vary depending on our partners, so [contact us](https://segment.com/help/contact/) if you are concerned about this.
222
222
223
-
### Is there a limit on the size a SQL Trait's payload?
223
+
### Is there a limit on the size of a SQL Trait's payload?
224
224
225
-
Yes, Segment limits request sizes to a maximum of 32kb. Records larger than this size are discarded.
225
+
Yes, Segment limits request sizes to a maximum of 16kb. Records larger than this are discarded.
226
226
227
227
## Troubleshooting
228
228
@@ -268,6 +268,3 @@ You might be returning a value for `user_id` that is inconsistent with how you
268
268
269
269
If you see only question marks in the preview, and have already tracked data historically with Segment, then you probably just have the wrong column. If you cloud source doesn't have the database `user_id`, we recommend JOINing with an internal users table before sending the results back to Segment.
270
270
271
-
### Is there a limit on the size of a SQL Trait's payload?
272
-
273
-
Yes, Segment limits request sizes to a maximum of 16kb. Records larger than this are discarded.
0 commit comments