Overview

Backend Configuration

Xorq supports multiple execution engines (backends) for running your data and ML workloads. This section covers how to configure and use different backends.

Topics

Quick start

Connect to the default embedded backend:

import xorq.api as xo

con = xo.connect()

Connect to a specific backend:

# DuckDB
duckdb_con = xo.duckdb.connect()

# PostgreSQL
pg_con = xo.postgres.connect_env()

# Pandas
pandas_con = xo.pandas.connect()