{% extends "base.html" %} {% block title %}Connections · lake-sift{% endblock %} {% block body %}

Connections & environment

Source adapters

{% for a in env.adapters %} {% endfor %}
{{ a.label }} {{ a.detail }}

Object storage (S3 · remote Parquet)

{% for s in env.storage %} {% endfor %}
{{ s.label }} {{ s.detail }}

Iceberg catalogs

{% if env.iceberg.catalogs %} {% for c in env.iceberg.catalogs %} {% endfor %}
NameTypeURI / warehouse
{{ c.name }} {{ c.type }} {{ c.uri or c.warehouse or '—' }}
{% if env.iceberg.config_path %}

from {{ env.iceberg.config_path }}

{% endif %} {% else %}
{{ env.iceberg.note or 'No Iceberg catalogs configured.' }}
{% endif %}

Server

Versionlake-sift {{ env.version }}
Run history (SQLite){{ env.history_db }}
{% endblock %}