mengjin001 / presto-mapd-connector

A Presto to MapD connector, enabling MapD queries via Presto

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@author rohit-kulkarni

Presto-MapD-Connector

Presto-MapD-Connector makes it possible to query MapD via Presto.

Installation

Requirements

Setup

  1. Clone this repository and cd into it
git clone git@github.com:NVIDIA/presto-mapd-connector.git
cd presto-mapd-connector
  1. Create a lib directory and copy the mapd jdbc jar into it (mapdjdbc-1.0-SNAPSHOT-jar-with-dependencies.jar)
mkdir lib
cp $MAPD_HOME/mapdjdbc-1.0-SNAPSHOT-jar-with-dependencies.jar lib/
  1. Build/package the project
mvn package
  1. Copy the jar to your presto plugin directory
mkdir $PRESTO_HOME/plugin/mapdjdbc
cp presto-mapd-jdbc-1.0-jar-with-dependencies.jar $PRESTO_HOME/plugin/mapdjdbc
  1. Make a mapdjdbc.properties file
mkdir -p $PRESTO_HOME/etc/catalog && touch $PRESTO_HOME/etc/catalog/mapdjdbc.properties
  1. In the properties file, enter your credentials to connect to mapd...
connector.name=mapdjdbc
connection-url=jdbc:mapd:localhost:9091:mapd
connection-user=<username>
connection-password=<password>
  1. You can now start mapd and presto with the ability to query mapd from presto!

About

A Presto to MapD connector, enabling MapD queries via Presto

License:Apache License 2.0


Languages

Language:Java 100.0%