With the explosion of data stores and cloud services, data now resides across many disparate systems and in a variety of formats. Often, data is classified both by its location and the operations performed on the data, as well as how often the data is accessed: real-time or transactional (hot), less frequent (warm), or archival (cold).

The diagram below describes a data source that tracks monthly sales across many years. Real-time operational data is stored in MySQL. Data subject to analytic and business intelligence operations is stored in Greenplum Database. The rarely accessed, archival data resides in AWS S3.

Operational Data Location Example

When multiple, related data sets exist in external systems, it is often more efficient to join data sets remotely and return only the results, rather than negotiate the time and storage requirements of performing a rather expensive full data load operation. The Greenplum Platform Extension Framework (PXF), a Greenplum extension that provides parallel, high throughput data access and federated query processing, provides this capability.

With PXF, you can use Greenplum and SQL to query these heterogeneous data sources:

  • Hadoop, Hive, and HBase
  • Azure Blob Storage and Azure Data Lake
  • AWS S3
  • MinIO
  • Google Cloud Storage
  • SQL databases including Apache Ignite, Hive, MySQL, ORACLE, Microsoft SQL Server, DB2, and PostgreSQL (via JDBC)
  • Network file systems

And these data formats:

  • Avro, AvroSequenceFile
  • JSON
  • ORC
  • Parquet
  • RCFile
  • SequenceFile
  • Text (plain, delimited, embedded line feeds, fixed width)

Basic Usage

You use PXF to map data from an external source to a Greenplum Database external table definition. You can then use the PXF external table and SQL to:

  • Perform queries on the external data, leaving the referenced data in place on the remote system.
  • Load a subset of the external data into Greenplum Database.
  • Run complex queries on local data residing in Greenplum tables and remote data referenced via PXF external tables.
  • Write data to the external data source.

Check out the PXF introduction for a high level overview of important PXF concepts.

Get Started Configuring PXF

The Greenplum Database administrator manages PXF, Greenplum Database user privileges, and external data source configuration. Tasks include:

Get Started Using PXF

A Greenplum Database user creates a PXF external table that references a file or other data in the external data source, and uses the external table to query or load the external data in Greenplum. Tasks are external data store-dependent:

check-circle-line exclamation-circle-line close-line
Scroll to top icon