{% extends "email/base.html" %} {% load posthog_assets %} {% block preheader %}Data warehouse sync failures in {{ team.name }}{% endblock %} {% block heading %}Data warehouse sync failures{% endblock %} {% block section %}

Some data warehouse syncs are failing in project {{ team.name }}. {% if has_paused %} Syncs marked paused hit an error we can't retry (for example invalid credentials or an unreachable host) — each sync's error message says how to fix it and get syncing again. Other syncs will be retried automatically on their next scheduled run. {% else %} They will be retried automatically on their next scheduled run, but the data in these tables may be out of date until a sync succeeds. {% endif %}

{% regroup schemas by source_id as source_groups %} {% for group in source_groups %}
{{ group.list.0.source_type }} {% if group.list.0.source_prefix %} {{ group.list.0.source_prefix }}{% endif %} {{ group.list|length }} sync{{ group.list|length|pluralize }} failing
{% for schema in group.list %} {% endfor %}
{{ schema.schema_name|truncatechars:32 }} {{ schema.error|truncatechars:90 }} {% if schema.paused %} Paused — action required {% else %} Will retry {% endif %}
{% endfor %} {% if omitted_count %}

…and {{ omitted_count }} more failing syncs — view them all in PostHog.

{% endif %}

Click a source to open it in PostHog, or a sync name to see its history and full error details.

{% endblock %} {% block footer %} Need help? Visit support or read our documentation.

Manage these notifications in PostHog {% endblock %}