You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/04/21 21:44:45 UTC

[46/50] [abbrv] git commit: update README

update README


Project: http://git-wip-us.apache.org/repos/asf/incubator-storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-storm/commit/3270dd2a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-storm/tree/3270dd2a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-storm/diff/3270dd2a

Branch: refs/heads/master
Commit: 3270dd2a83f5b78d51f23ae1b8b6e3951c60b2c0
Parents: 859a2e8
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Wed Apr 9 11:26:33 2014 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Wed Apr 9 11:26:33 2014 -0400

----------------------------------------------------------------------
 external/storm-kafka/README.md | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/3270dd2a/external/storm-kafka/README.md
----------------------------------------------------------------------
diff --git a/external/storm-kafka/README.md b/external/storm-kafka/README.md
index 874db01..726cff6 100644
--- a/external/storm-kafka/README.md
+++ b/external/storm-kafka/README.md
@@ -1,22 +1,25 @@
-storm-kafka-0.8-plus
+Storm Kafka
 ====================
 
-Port of storm-kafka to support kafka >= 0.8
+Provides core storm and Trident spout implementations for consuming data from Apache Kafka 0.8.x.
 
-##Usage:
-For information on how to use this library in your project see:
 
-[https://clojars.org/net.wurstmeister.storm/storm-kafka-0.8-plus](https://clojars.org/net.wurstmeister.storm/storm-kafka-0.8-plus)
 
+##Usage Example
 
-##Example Topologies:
+```java
+        
+        TridentTopology topology = new TridentTopology();
 
-[https://github.com/wurstmeister/storm-kafka-0.8-plus-test](https://github.com/wurstmeister/storm-kafka-0.8-plus-test)
+        BrokerHosts zk = new ZkHosts("localhost");
 
-##Acknowledgement:
+        TridentKafkaConfig spoutConf = new TridentKafkaConfig(zk, "test-topic");
+        spoutConf.scheme = new SchemeAsMultiScheme(new StringScheme());
+        OpaqueTridentKafkaSpout spout = new OpaqueTridentKafkaSpout(spoutConf);
 
-YourKit is kindly supporting this open source project with its full-featured Java Profiler.
-YourKit, LLC is the creator of innovative and intelligent tools for profiling
-Java and .NET applications. Take a look at YourKit's leading software products:
-<a href="http://www.yourkit.com/java/profiler/index.jsp">YourKit Java Profiler</a> and
-<a href="http://www.yourkit.com/.net/profiler/index.jsp">YourKit .NET Profiler</a>.
+
+```
+
+## Committer Sponsors
+
+ * P. Taylor Goetz ([ptgoetz@apache.org](mailto:ptgoetz@apache.org))
\ No newline at end of file