Skip to content

Commit 0f3e74e

Browse files
author
gp510
committed
Updated naming per issue #117
1 parent ae68d5b commit 0f3e74e

13 files changed

+75
-76
lines changed

README.md

Lines changed: 45 additions & 45 deletions
Large diffs are not rendered by default.

ci/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def dockerReq = new DockerRequest(steps,
88
env,
99
[imageName: "repo.splunk.com/splunk/products/splact:1.0.9",
1010
userId: "10777",
11-
repoName: "[email protected]:splunk/splunk-kafka-connect.git",
11+
repoName: "[email protected]:splunk/kafka-connect-splunk.git",
1212
runner: "yarn",
1313
remotePath: "/build"])
1414

ci/kafka_orca_gen.py

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

77
DATA_GEN_IMAGE = 'repo.splunk.com/kafka-data-gen:0.4'
88
KAFKA_IMAGE = 'repo.splunk.com/kafka-cluster:0.12'
9-
KAFKA_CONNECT_IMAGE = 'repo.splunk.com/splunk-kafka-connect:1.8'
9+
KAFKA_CONNECT_IMAGE = 'repo.splunk.com/kafka-connect-splunk:1.8'
1010
KAFKA_BASTION_IMAGE = 'repo.splunk.com/kafka-bastion:1.8'
1111

1212

ci/run_bastion.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/bin/bash
22

33
curdir=`pwd`
4-
git clone [email protected]:splunk/splunk-kafka-connect.git
4+
git clone [email protected]:splunk/kafka-connect-splunk.git
55
branch=${KAFKA_CONNECT_BRANCH:-develop}
6-
cd splunk-kafka-connect && git checkout ${branch}
6+
cd kafka-connect-splunk && git checkout ${branch}
77

88
duration=${SLEEP:-600}
99
sleep ${duration}
1010

11-
bash ${curdir}/splunk-kafka-connect/ci/fix_hosts.sh > /tmp/fixhosts 2>&1 &
11+
bash ${curdir}/kafka-connect-splunk/ci/fix_hosts.sh > /tmp/fixhosts 2>&1 &
1212

13-
python ${curdir}/splunk-kafka-connect/ci/perf.py
13+
python ${curdir}/kafka-connect-splunk/ci/perf.py
1414

1515
tail -f /dev/null

ci/run_kafka_connect.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#!/bin/bash
22

3-
# Checkout, build and run splunk-kafka-connect in the fight
3+
# Checkout, build and run kafka-connect-splunk in the fight
44

55
curdir=`pwd`
6-
git clone [email protected]:splunk/splunk-kafka-connect.git
6+
git clone [email protected]:splunk/kafka-connect-splunk.git
77

88
branch=${KAFKA_CONNECT_BRANCH:-develop}
99
# build the package
10-
cd splunk-kafka-connect && git checkout ${branch} && bash build.sh
10+
cd kafka-connect-splunk && git checkout ${branch} && bash build.sh
1111

1212
# untar the package
13-
tar xzf splunk-kafka-connect*.tar.gz
14-
cd splunk-kafka-connect
13+
tar xzf kafka-connect-splunk*.tar.gz
14+
cd kafka-connect-splunk
1515

1616
sed -i"" "[email protected]=.*@bootstrap.servers=$KAFKA_BOOTSTRAP_SERVERS@g" config/connect-distributed.properties
1717

@@ -24,7 +24,7 @@ duration=${SLEEP:-300}
2424
sleep ${duration}
2525

2626
echo "Run fix hosts"
27-
bash ${curdir}/splunk-kafka-connect/ci/fix_hosts.sh > /tmp/fixhosts 2>&1 &
27+
bash ${curdir}/kafka-connect-splunk/ci/fix_hosts.sh > /tmp/fixhosts 2>&1 &
2828

2929
echo "Run proc monitor"
3030
cd proc_monitor

config/connect-distributed-quickstart.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ offset.flush.interval.ms=10000
2525

2626
plugin.path=connectors/
2727

28-
group.id=splunk-kafka-connect-hec-sink
29-
config.storage.topic=__splunk-kafka-connect-task-configs
28+
group.id=kafka-connect-splunk-hec-sink
29+
config.storage.topic=__kafka-connect-splunk-task-configs
3030
config.storage.replication.factor=1
3131

32-
offset.storage.topic=__splunk-kafka-connect-offsets
32+
offset.storage.topic=__kafka-connect-splunk-offsets
3333
offset.storage.replication.factor=1
3434
offset.storage.partitions=1
3535

36-
status.storage.topic=__splunk-kafka-connect-statuses
36+
status.storage.topic=__kafka-connect-splunk-statuses
3737
status.storage.replication.factor=1
3838
status.storage.partitions=1
3939

config/connect-distributed.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ offset.flush.interval.ms=10000
2525

2626
plugin.path=connectors/
2727

28-
group.id=splunk-kafka-connect-hec-sink
29-
config.storage.topic=__splunk-kafka-connect-task-configs
28+
group.id=kafka-connect-splunk-hec-sink
29+
config.storage.topic=__kafka-connect-splunk-task-configs
3030
config.storage.replication.factor=3
3131

32-
offset.storage.topic=__splunk-kafka-connect-offsets
32+
offset.storage.topic=__kafka-connect-splunk-offsets
3333
offset.storage.replication.factor=3
3434
offset.storage.partitions=25
3535

36-
status.storage.topic=__splunk-kafka-connect-statuses
36+
status.storage.topic=__kafka-connect-splunk-statuses
3737
status.storage.replication.factor=3
3838
status.storage.partitions=5
3939

dependency-reduced-pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.github.splunk.kafka.connect</groupId>
5-
<artifactId>splunk-kafka-connect</artifactId>
6-
<name>splunk-kafka-connect</name>
5+
<artifactId>kafka-connect-splunk</artifactId>
6+
<name>kafka-connect-splunk</name>
77
<version>v1.0.0-LAR</version>
88
<build>
99
<plugins>

splunk-kafka-connect.iml renamed to kafka-connect-splunk.iml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
88
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
99
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
10-
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
1110
<excludeFolder url="file://$MODULE_DIR$/target" />
1211
</content>
1312
<orderEntry type="inheritedJdk" />

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.github.splunk.kafka.connect</groupId>
8-
<artifactId>splunk-kafka-connect</artifactId>
8+
<artifactId>kafka-connect-splunk</artifactId>
99
<version>v1.0.0-LAR</version>
10-
<name>splunk-kafka-connect</name>
10+
<name>kafka-connect-splunk</name>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)