tree: 3ffe6406ca2f44e0f1a0308aec372b5f3ad4a2ff [path history] [tgz]
  1. gradle/
  2. pxf/
  3. pxf-api/
  4. pxf-hbase/
  5. pxf-hdfs/
  6. pxf-hive/
  7. pxf-jdbc/
  8. pxf-json/
  9. pxf-service/
  10. src/
  11. tomcat/
  12. .gitignore
  13. build.gradle
  14. gradle.properties
  15. gradlew
  16. Makefile
  17. README.md
  18. settings.gradle
pxf/README.md

The PXF extensions library for HAWQ

Table of Contents

  • Introduction
  • Package Contents
  • Building

Introduction

PXF is an extensible framework that allows HAWQ to query external data files, whose metadata is not managed by HAWQ. PXF includes built-in connectors for accessing data that exists inside HDFS files, Hive tables, HBase tables and more. Users can also create their own connectors to other data storages or processing engines. To create these connectors using JAVA plugins, see the PXF API and Reference Guide online.

Package Contents

PXF is distributed as a set of RPMs -

pxf/
    └── rpm
        ├── pxf-service-$version.noarch.rpm
        ├── pxf-hdfs-$version.noarch.rpm
        ├── pxf-hive-$version.noarch.rpm
        ├── pxf-hbase-$version.noarch.rpm
        └── pxf-json-$version.noarch.rpm

Building

./gradlew clean build [buildRpm] [distTar]

For all available tasks run: ./gradlew tasks