Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.09 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.09 KB

scalding-taps

Series of Taps for Scalding

Supported Taps

At the moment the supported taps are:

  • Elastic Search (EsSource)
  • Hive (HiveSource)

Using Scalding Taps

Scalding-taps is currently at version 0.2 and is published on the Conjars repository

To add it to your project you just have to add the reference to Conjars repository and the dependency to io.scalding - scalding-taps_2.10 - 0.2 As an example for Maven

     ...

     <repositories>
        <repository>
            <id>conjars.org</id>
            <url>http://conjars.org/repo</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>io.scalding</groupId>
            <artifactId>scalding-taps_2.10</artifactId>
            <version>0.2</version>
        </dependency>

    ...

    </dependencies>

For latest Scalding 0.10.0 version use

 <dependency>
      <groupId>io.scalding</groupId>
      <artifactId>scalding-taps_2.10</artifactId>
      <version>0.6_scalding0.10</version>
 </dependency>