Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Latest commit

 

History

History
144 lines (108 loc) · 6.31 KB

File metadata and controls

144 lines (108 loc) · 6.31 KB

Tigon FAQ

General

What is Tigon?

Tigon is an open-source, real-time stream processing framework built on top of Apache ™ Hadoop ® and HBase.

Who is Tigon intended for?

Developers who are interested in creating powerful, yet simple-to-develop stream processing applications that can handle large volumes of data.

What are some of the applications that can be built on Tigon?

  • Processing stream sources such as Twitter, Webserver Logs
  • Rapid Joining, Filtering, and Aggregating of Streams

How does Tigon work?

Tigon is built on top of Hadoop/HBase. It uses the Tephra Transaction Engine and Twill for spinning up YARN applications. For in-memory stream processing, it uses the TigonSQL in-memory stream processing engine developed by AT&T.

What is the difference between Tigon and Cask's other projects, such as CDAP?

Tigon is focused on solving the issues faced in real-time stream processing.

The Cask Data Application Platform (CDAP) is a generalized 'Big Data' application platform with additional features such as dataset abstractions, batch job integration, and security.

What's the vision for Tigon?

Enable every Java developer to create powerful, real-time stream processing applications.

Running Tigon

How do I get started with Tigon?

Download the zip, unzip it and checkout the examples!

See our getting-started guide.

What are the prerequisites for running Tigon?

See our getting-started guide for a list of prerequisites. <getting-started-prerequisites>

What platforms and Java version does Tigon run on?

Tigon runs on *NIX systems such as Linux and Macintosh OS X. A Java Development Kit such as JDK 6 or JDK 7 is required to run Tigon.

Does Tigon run on Windows?

Currently, Tigon does not run on Windows.

What hardware do I need for Tigon?

Tigon runs on the same hardware that would support Hadoop/HBase.

What programming languages are supported by Tigon?

Applications that use Tigon currently need to be written in Java. If you are using TigonSQL, commands are written in an SQL dialect.

If you are running TigonSQL in standalone mode or are running unit tests, certain elements are written in Perl and Python.

Tigon Support

Where can I find more information about Tigon?

Our resources include this website, our parent website (cask.co), two mailing lists, an IRC channel and a GitHub repository.

What mailing lists are available for additional help?

Tigon User Group and Development Discussions:

Is there an IRC Channel?

Tigon IRC Channel #tigon on irc.freenode.net.

Where are Bug Reports and Feature Requests kept?

We have a JIRA for filing issues.

Is commercial support available for Tigon?

Contact Cask Data for information on commercial Tigon support.

Contributing to Tigon

How can I help make Tigon better?

We welcome all contributions, whether in filing detailed bug reports, submitting pull requests for code changes and improvements, or by asking questions and assisting others on the mailing list.

How can I contribute?

Are you interested in making Tigon better? We have a simple pull-based development model with a consensus-building phase, similar to Apache's voting process. If you’d like to help make Tigon better by adding new features, enhancing existing features, or fixing bugs, here's how to do it:

  1. If you are planning a large change or contribution, discuss your plans on the tigon-dev mailing list first. This will help us understand your needs and best guide your solution in a way that fits the project.
  2. Fork Tigon into your own GitHub repository.
  3. Create a topic branch with an appropriate name.
  4. Work on the code to your heart's content.
  5. Once you’re satisfied, create a pull request from your GitHub repo (it’s helpful if you fill in all of the description fields).
  6. Address all the review comments.
  7. After we review and accept your request, we’ll commit your code to the caskdata/tigon repository.