Filter events by type

Teradata Developer Guides

ft:locale
en-US
ft:lastEdition
2026-08-18

In the consumer, add filtering:

if event_type == "purchase":
    # Only process purchase events
    cursor.execute(insert_query, (event_id, event_type, user_id, event_timestamp, country))
    conn.commit()