CONNECTOR · MIXPANEL
Mixpanel — Analytics de eventos web + mobile. Espejamos al warehouse.
CONNECTOR · MIXPANEL
Mixpanel
Analytics de eventos web + mobile. Espejamos al warehouse.
- categoríaOrigen · Product analytics
- target de frescuraDaily batch vía Mixpanel Data Warehouse export.
- modelo de authProject token + service account.
- modo de syncS3 / GCS export → staging → dbt.
TABLAS SINCRONIZADAS
events, people, identities. Materialización por evento opcional.
SCHEMA · MUESTRA
schema.sqlSQL
CREATE TABLE mixpanel.events (
event TEXT,
distinct_id TEXT,
time TIMESTAMP,
properties JSONB
);QUERY · MUESTRA
query.sqlSQL
SELECT event, COUNT(*) AS n
FROM mixpanel.events
WHERE time >= now() - interval 0