Skip to content

Commit bcc1546

Browse files
author
Rolef Heinrich
authored
Merge pull request #108 from IBMStreams/develop
release 3.0.4
2 parents 94010a1 + 4fb2243 commit bcc1546

File tree

19 files changed

+26
-166
lines changed

19 files changed

+26
-166
lines changed

com.ibm.streamsx.messagehub/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repositories {
3939

4040
/* Defs */
4141
def STREAMS_INSTALL = System.getenv("STREAMS_INSTALL")
42-
def KAFKA_BASE_TAG = 'v3.0.3' // Update this tag when changing the underlying Kafka version
42+
def KAFKA_BASE_TAG = 'v3.0.4' // Update this tag when changing the underlying Kafka version
4343

4444
dependencies {
4545
compile fileTree(dir: STREAMS_INSTALL + '/lib', include: ['com.ibm.streams.operator.jar'])

com.ibm.streamsx.messagehub/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ continues fetching at the last committed offset.
201201
* The MessageHubConsumer operator exposes some performance metrics of the consumer client as operator metrics, like the lag for each topic partition.
202202

203203
</info:description>
204-
<info:version>3.0.3</info:version>
204+
<info:version>3.0.4</info:version>
205205
<info:requiredProductVersion>4.3.0.0</info:requiredProductVersion>
206206
</info:identity>
207207
<info:dependencies/>

samples/AppConfigSample/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5+
toolkit.xml

samples/AppConfigSample/com.ibm.streamsx.messagehub.sample/AppConfigSample.spl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use com.ibm.streamsx.messagehub::MessageHubProducer ;
44
use com.ibm.streamsx.messagehub::MessageHubConsumer ;
55
use com.ibm.streamsx.messagehub::MessageType;
66

7-
composite AppConfigSample
7+
public composite AppConfigSample
88
{
99
graph
1010
(stream<MessageType.StringMessage> Beacon_1_out0) as Beacon_1 = Beacon()

samples/AppConfigSample/toolkit.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

samples/ConsumerGroupInputPortSample/com.ibm.streamsx.messagehub.sample/KafkaConsumerGroupInputPortSample.spl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace com.ibm.streamsx.messagehub.sample ;
22

33
use com.ibm.streamsx.messagehub::* ;
44

5-
composite ConsumerGroupInputPortSample {
5+
public composite ConsumerGroupInputPortSample {
66

77
graph
88
// ================ producers that continuously populate the topics t1 and t2

samples/ConsumerGroupWithConsistentRegion/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5+
toolkit.xml

samples/ConsumerGroupWithConsistentRegion/com.ibm.streamsx.messagehub.sample/ConsumerGroupWithConsistentRegion.spl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use com.ibm.streamsx.messagehub::MessageHubProducer ;
77
* This sample is a Consistent Region sample that demonstrates the use of multiple consumers in a consumer group.
88
* You can kill any of the PEs in the graph that produces Kafka messages. The result file should always be the same.
99
*/
10-
composite ConsumerGroupWithConsistentRegion {
10+
public composite ConsumerGroupWithConsistentRegion {
1111
param
1212
// settings for the consumer group
1313
expression <int32> $nConsumers: 3; // number of consumers in the consumer group; can be different than number of partitions
@@ -75,6 +75,6 @@ composite ConsumerGroupWithConsistentRegion {
7575
// keyAttribute: key; // 'key' is default value
7676
// messageAttribute: message; // 'message' is default value
7777
partitionAttribute: targetPartition;
78-
messageHubCredentialsFile: "etc/eventstreams.json";
78+
credentialsFile: "etc/eventstreams.json";
7979
}
8080
}

samples/ConsumerGroupWithConsistentRegion/toolkit.xml

Lines changed: 0 additions & 35 deletions
This file was deleted.

samples/ConsumerInputPortSample/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5-
5+
toolkit.xml

0 commit comments

Comments
 (0)