Skip to main content
This guide covers how to migrate Evidence OSS reports to Evidence Studio. Evidence Studio is a complete reimagining of the Evidence platform - moving from a local development tool to a fully cloud-based development, publishing, and governance platform. Studio provides a web-based IDE with AI assistance, enterprise features like row-level security and SSO, and self-service analytics for end users. Components have powerful new capabilities including built-in aggregations, date grains, and comparisons that eliminate the need for complex SQL.

Key Differences

How to Migrate

The easiest way to migrate is to paste your OSS code into the Studio editor and ask the AI assistant to convert it for you. The Evidence team is available to help with your migration. If you have a large project to migrate, book a call with our team for assistance.

Data Sources

Connections

Configure connections in the Studio UI. See Data Sources for details.

Data Sync

Studio syncs full tables from SQL databases on a schedule. This allows Evidence to use an optimized ClickHouse instance to deliver high-performance interactive reports with subsecond interaction times. Studio does not support source SQL queries. If you need to aggregate or join data before loading it into Evidence, you have two options:
  1. Create a view in your database and sync that view to Studio
  2. Use Evidence’s Models feature to join across sources and prepare data for analysis
For bucket connectors (S3, GCS, Azure, R2), Studio connects directly and queries files (Parquet, Delta Lake, Iceberg) without importing.

SQL Queries

DuckDB → ClickHouse

Studio uses ClickHouse instead of DuckDB. The syntax is very similar between the two. ClickHouse is optimized for fast performance on huge datasets and supports row-level security, direct connections to storage buckets, and other enterprise features.

Inline Queries

Write inline queries the same way:
Inline queries do not produce a query viewer on the rendered page. To display results, use a component:

Components

Studio components use a new tag syntax and support aggregations, date grains, comparisons, and other operations without writing SQL.

Tag Syntax

Evidence OSS:
Evidence Studio:
Conversion rules:
  • Replace <> with {% %}
  • Convert component names to snake_case: LineChartline_chart, DataTabletable, BigValuebig_value
  • Quote all attribute values: x="date" instead of x=date
  • Self-closing tags end with /%} instead of />
  • Closing tags use {% /component_name %} instead of </ComponentName>
Component name mappings: Multi-line components: Evidence OSS:
Evidence Studio:

Components Run Their Own Queries

Components can query data and apply aggregations directly. Evidence OSS:
Evidence Studio:
Components support aggregations like sum(), avg(), count(), min(), max(), and more:

Built-in Date Grains

Components support automatic date grouping with date_grain: day, week, month, quarter, year, hour, day of week, day of month, day of year, week of year, month of year, quarter of year. Evidence OSS:
Evidence Studio:

Built-in Comparisons

Evidence OSS:
Evidence Studio:

Unsupported Components

  • DimensionGrid - Not yet supported
  • BoxPlot - Not yet supported

Inputs and Variables

Studio provides simplified syntax for referencing input variables. Evidence OSS:
Evidence Studio - Using inline SQL:
Evidence Studio - Using filters attribute:
Evidence Studio - Using where attribute:
See Variables for details.

Templated Pages

Templated pages are not supported in the same way as in OSS, but a comparable feature will be added to Evidence Studio in the near future. We recommend creating an interactive page using an input variable (e.g., a dropdown) that is connected to all queries and components on the page. This allows users to dynamically filter the entire page based on their selection.

Getting Help