Skip to content

Commit c21d705

Browse files
committed
release 0.1 version
1 parent 21672c2 commit c21d705

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,31 @@ Redis extension for Flume NG ([http://flume.apache.org](http://flume.apache.org)
66

77
## Current Version
88

9-
* Development: 0.1-SNAPSHOT
10-
* Stable: none
9+
* Development: 0.2-SNAPSHOT
10+
* Stable: 0.1
1111

1212
## Current Supported Features
1313

14-
* Custom sources using Redis [SUBSCRIBE](http://redis.io/commands/subscribe) command (single channel)
14+
* Source using Redis [SUBSCRIBE](http://redis.io/commands/subscribe) command (single channel)
15+
* Sink using Redis [PUBLISH](http://redis.io/commands/publish) command (single channel)
1516

1617
## Usage
1718

18-
1. Build this library witn ```mvn package``` command.
19+
1. Build or Download jar.
20+
* Checkout and build this repository.
21+
1. Stable release (currently version 0.1) is recommended.
22+
1. Build this library with ```mvn package``` command.
23+
* Or download built jar in release page. ([https://github.com/chiwanpark/flume-ng-redis/releases](https://github.com/chiwanpark/flume-ng-redis/releases))
1924
1. Copy ```flume-ng-redis-[VERSION].jar``` or ```flume-ng-redis-[VERSION]-jar-with-dependencies.jar``` into your flume library path.
25+
* If you use ```flume-ng-redis-[VERSION].jar```, you have to download Jedis ([https://github.com/xetorthio/jedis](https://github.com/xetorthio/jedis)) and copy it to flume library path.
2026
1. Copy configuration sample file or create your own configuration.
21-
1. Run Flume. (Following command is sample for RedisSubscribeDrivenSource.)
27+
1. Run Flume.
28+
* Following command is sample for RedisSubscribeDrivenSource.
2229

23-
bin/flume-ng agent -n agent -c conf -f conf/example-SubscribeDrivenSource.properties -Dflume.root.logger=DEBUG,console
30+
bin/flume-ng agent -n agent -c conf -f conf/example-SubscribeDrivenSource.properties -Dflume.root.logger=DEBUG,console
31+
* Following commend is sample for RedisPublishDrivenSink
32+
33+
bin/flume-ng agent -n -agent -c conf -f conf/example-PublishDrivenSink.properties
2434

2535
## Dependencies
2636

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.chiwanpark.flume.plugins</groupId>
77
<artifactId>flume-ng-redis</artifactId>
8-
<version>0.1-SNAPSHOT</version>
8+
<version>0.1</version>
99
<packaging>jar</packaging>
1010

1111
<properties>

0 commit comments

Comments
 (0)