Skip to content

exasol/virtual-schemas

Repository files navigation

Virtual Schemas

Overview

Exasol Virtual Schemas are an abstraction layer that makes external data sources accessible in our data analytics platform through regular SQL commands. The contents of the external data sources are mapped to virtual tables which look like and can be queried as any regular Exasol table.

Regardless of whether that source is a relational database like ours, or it's like the structure of GitHub repositories, the interface that users see is always the same.

This means a user familiar with SQL will immediately feel at home when accessing remote data through Virtual Schemas.

Virtual Schemas can be also described in known terms as External Tables or Foreign Data Wrapper (FDW).

Features

  • Read only access to data on remote data sources (see the Supported Data Sources below)
  • Data in those sources appears as tables inside Exasol and can be queried using regular SQL statements.
  • Pushes down queries to the remote source (some sources)
  • Supports sources with no / one / multiple catalogs or schemas
  • Allows limiting metadata mapping to selected catalogs and / or schemas
  • Allows redirecting log output to a remote machine
  • Allows remote debugging with the Java Debugger

Supported Data Sources

See List of Supported Dialects.

Limitations

  • A Virtual Schema adapter written in Python or Java takes about 1 second to start. That means that queries that involve tables from Virtual Schema will take at least 1 second.

Customer Support

This is an open source project officially supported by Exasol. Please contact our support team if you have any questions.

NOTE: Please report dialect specific issues in the corresponding dialect repository (see the Supported Data Sources above)

Table of Contents

Information for Users

Additional resources:

Information for Developers

Java-specific Developer Information