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