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
Through Profiles Sync, Segment provides data sets and models that can help you enrich customer profiles using any warehouse data available to you.
6
+
Through Profiles Sync, Segment provides data sets and models to help you enrich customer profiles using your warehouse data.
7
7
8
-
Using a practical example of how Segment connects and then merges anonymous profiles, this page explains the tables that Segment lands, as well as the tables you materialize as part of Profiles Sync.
8
+
This page compares raw tables and materialized views, explaining their roles and use cases. It also outlines the tables Segment lands and the tables you can materialize as part of Profiles Sync.
9
+
10
+
## Understanding raw tables and materialized views
11
+
12
+
Profiles Sync creates two types of tables in your data warehouse: raw tables and materialized views. These tables help you work with profile and event data at different levels of detail.
13
+
14
+
- Raw tables store unprocessed event-level data and capture all updates and changes as they occur.
15
+
- Materialized views take data from raw tables and organize it into a streamlined view of profile traits, identifiers, and merges.
16
+
17
+
The following table shows how raw tables map to their corresponding materialized views:
|`id_graph_updates`|`profile_merges`| Tracks changes in profile merges across the Identity Graph. |
22
+
|`external_id_mapping_updates`|`user_identifiers`| Tracks external IDs associated with user profiles. |
23
+
|`profile_traits_updates`|`user_traits`| Tracks changes to user profile traits (like names or emails). |
24
+
25
+
Raw tables are best for detailed, event-level analysis or debugging specific updates in the Identity Graph. They show every single change and event in your Profiles Sync pipeline.
26
+
27
+
Materialized views are better for reporting, analytics, and when you need an up-to-date view of profile traits or identifiers. Materialized views reduce complexity by summarizing data from the raw tables.
28
+
29
+
For example, if you want to debug why a specific profile trait was updated, you'd look at the `profile_traits_updates` raw table. But if you want to see the current profile data for a marketing campaign, you'd probably opt for the `user_traits` materialized view.
9
30
10
31
## Case study: anonymous site visits lead to profile merge
32
+
33
+
This section uses a practical example of how Segment connects and merges anonymous profiles to illustrate how Profiles Sync populates and updates its tables.
11
34
12
-
To help illustrate the possible entries and values populated into Profiles Sync tables, view the event tabs below and consider the following scenario.
35
+
Explore the following event tabs to learn how these examples result in profile creation and merging.
13
36
14
-
Suppose the following four events lead to the creation of two separate profiles:
37
+
Suppose these four events lead to the creation of two separate profiles:
15
38
16
39
{% codeexample %}
17
40
{% codeexampletab Event 1 %}
@@ -75,6 +98,7 @@ Initially, Segment generates two profiles for the first three calls. In the fina
75
98
Profiles Sync tracks and provides information about these events through a set of tables, which you’ll learn about in the next section.
76
99
77
100
101
+
78
102
## Profile raw tables
79
103
80
104
Profile raw tables contain records of changes to your Segment profiles and Identity Graph over time.
@@ -83,7 +107,6 @@ With raw tables, you have full control over the materialization of Profiles in y
83
107
84
108
Raw tables contain complete historical data when using historical backfill.
85
109
86
-
87
110
### The id_graph_updates table
88
111
89
112
The `id_graph_updates` table maps between the following:
0 commit comments