spark-to-tableau (homepage)

Spark DataFrame to Tableau Data Extract library

The goal of this project is to give Spark the ability to generate Tableau Data Extract (.tde) files from Spark DataFrames. Tableau data extracts is a columnar store format used by Tableau Software(r).


Tags

  • 1|DataFrame
  • 1|tableau

How to

Include this package in your Spark Applications using:

spark-shell, pyspark, or spark-submit

> $SPARK_HOME/bin/spark-shell --packages werneckpaiva:spark-to-tableau:0.1.0

sbt

If you use the sbt-spark-package plugin, in your sbt build file, add:

spDependencies += "werneckpaiva/spark-to-tableau:0.1.0"

Otherwise,

resolvers += "Spark Packages Repo" at "https://repos.spark-packages.org/"

libraryDependencies += "werneckpaiva" % "spark-to-tableau" % "0.1.0"

Maven

In your pom.xml, add:
<dependencies>
  <!-- list of dependencies -->
  <dependency>
    <groupId>werneckpaiva</groupId>
    <artifactId>spark-to-tableau</artifactId>
    <version>0.1.0</version>
  </dependency>
</dependencies>
<repositories>
  <!-- list of other repositories -->
  <repository>
    <id>SparkPackagesRepo</id>
    <url>https://repos.spark-packages.org/</url>
  </repository>
</repositories>

Releases

Version: 0.1.0 ( 1f0b6e | zip | jar ) / Date: 2016-03-01 / License: Apache-2.0