blob: 2bc44488767863ebab200e92bdb001919c308af2 [file] [log] [blame]
Apache Ignite Twitter Streamer Module
------------------------
Apache Ignite Twitter Streamer module provides streaming from Twitter to Ignite cache.
To enable Twitter Streamer module when starting a standalone node, move 'ignite-twitter' folder to
the 'libs' directory of the Ignite distribution before starting the 'ignite.{sh|bat}' script.
The content of the module folder will be added to classpath in this case.
Importing Ignite Twitter Streamer Module In Maven Project
-------------------------------------
If you are using Maven to manage dependencies of your project, you can add JCL module
dependency like this (replace '${ignite.version}' with actual Ignite version you are
interested in):
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
...
<dependencies>
...
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-twitter-ext</artifactId>
<version>${ignite-twitter-ext.version}</version>
</dependency>
...
</dependencies>
...
</project>