You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2015/04/26 19:32:43 UTC

storm git commit: STORM-800. Event Hubs code breaks on cases sensitive FS.

Repository: storm
Updated Branches:
  refs/heads/master 38638474e -> 0cbc89c19


STORM-800. Event Hubs code breaks on cases sensitive FS.


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

Branch: refs/heads/master
Commit: 0cbc89c19bf0d00850d24ea87d8cd04b30516cbe
Parents: 3863847
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Sun Apr 26 10:32:17 2015 -0700
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Sun Apr 26 10:32:17 2015 -0700

----------------------------------------------------------------------
 .../src/main/resources/Config.properties        | 27 --------------------
 .../src/main/resources/config.properties        | 27 ++++++++++++++++++++
 2 files changed, 27 insertions(+), 27 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/0cbc89c1/external/storm-eventhubs/src/main/resources/Config.properties
----------------------------------------------------------------------
diff --git a/external/storm-eventhubs/src/main/resources/Config.properties b/external/storm-eventhubs/src/main/resources/Config.properties
deleted file mode 100755
index 82abb48..0000000
--- a/external/storm-eventhubs/src/main/resources/Config.properties
+++ /dev/null
@@ -1,27 +0,0 @@
-eventhubspout.username = [username]
-
-eventhubspout.password = [password]
-
-eventhubspout.namespace = [namespace]
-
-eventhubspout.entitypath = [entitypath]
-
-eventhubspout.partitions.count = [partitioncount]
-
-# if not provided, will use storm's zookeeper settings
-# zookeeper.connectionstring=localhost:2181
-
-eventhubspout.checkpoint.interval = 10
-
-eventhub.receiver.credits = 1024
-
-# Defines how many messages can be pending (sent but not acked by storm)
-# per partition in eventhubspout. If set too large, your spout may throw
-# OutOfMemoryError because all pending messages are cached in the spout.
-eventhubspout.max.pending.messages.per.partition = 1024
-
-# Defines how many seconds in the past the spout uses to filter events in
-# the EventHubs entity when we first create the Storm topology. If offsets
-# have been saved in Zookeeper, we'll ignore this configuration.
-# A value of 0 means disable time based filtering when creating the receiver.
-eventhub.receiver.filter.timediff = 0
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/storm/blob/0cbc89c1/external/storm-eventhubs/src/main/resources/config.properties
----------------------------------------------------------------------
diff --git a/external/storm-eventhubs/src/main/resources/config.properties b/external/storm-eventhubs/src/main/resources/config.properties
new file mode 100755
index 0000000..82abb48
--- /dev/null
+++ b/external/storm-eventhubs/src/main/resources/config.properties
@@ -0,0 +1,27 @@
+eventhubspout.username = [username]
+
+eventhubspout.password = [password]
+
+eventhubspout.namespace = [namespace]
+
+eventhubspout.entitypath = [entitypath]
+
+eventhubspout.partitions.count = [partitioncount]
+
+# if not provided, will use storm's zookeeper settings
+# zookeeper.connectionstring=localhost:2181
+
+eventhubspout.checkpoint.interval = 10
+
+eventhub.receiver.credits = 1024
+
+# Defines how many messages can be pending (sent but not acked by storm)
+# per partition in eventhubspout. If set too large, your spout may throw
+# OutOfMemoryError because all pending messages are cached in the spout.
+eventhubspout.max.pending.messages.per.partition = 1024
+
+# Defines how many seconds in the past the spout uses to filter events in
+# the EventHubs entity when we first create the Storm topology. If offsets
+# have been saved in Zookeeper, we'll ignore this configuration.
+# A value of 0 means disable time based filtering when creating the receiver.
+eventhub.receiver.filter.timediff = 0
\ No newline at end of file