diff options
| -rw-r--r-- | gradle/wrapper/gradle-wrapper.properties | 5 | ||||
| -rw-r--r-- | shell_scripts/gradle_cache_clean.sh | 2 | ||||
| -rw-r--r-- | shell_scripts/kafka_connect.sh | 2 | ||||
| -rw-r--r-- | shell_scripts/kafka_create_topic.sh | 2 | ||||
| -rw-r--r-- | shell_scripts/kafka_server_start.sh | 2 | ||||
| -rw-r--r-- | shell_scripts/kafka_storage_format.sh | 2 | ||||
| -rw-r--r-- | shell_scripts/schema_registry_start.sh | 2 |
7 files changed, 14 insertions, 3 deletions
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9355b415..c6390d0c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,6 @@ +#Mon Jun 15 16:07:06 CEST 2026 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip -networkTimeout=10000 -validateDistributionUrl=true +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/shell_scripts/gradle_cache_clean.sh b/shell_scripts/gradle_cache_clean.sh new file mode 100644 index 00000000..5b35445f --- /dev/null +++ b/shell_scripts/gradle_cache_clean.sh @@ -0,0 +1,2 @@ +#!/bin/bash +trash -rf $XDG_CONFIG_HOME/gradle; trash -rf $HOME/.gradle; trash -rf .gradle diff --git a/shell_scripts/kafka_connect.sh b/shell_scripts/kafka_connect.sh new file mode 100644 index 00000000..3f22b6de --- /dev/null +++ b/shell_scripts/kafka_connect.sh @@ -0,0 +1,2 @@ +#!/bin/bash +/opt/confluent/bin/connect-standalone /opt/confluent/etc/kafka/connect-standalone.properties /opt/confluent/share/confluent-common/connectors/sink-jdbc.properties /opt/confluent/share/confluent-common/connectors/sink-redis.properties diff --git a/shell_scripts/kafka_create_topic.sh b/shell_scripts/kafka_create_topic.sh new file mode 100644 index 00000000..6c0abd8b --- /dev/null +++ b/shell_scripts/kafka_create_topic.sh @@ -0,0 +1,2 @@ +#!/bin/bash +kafka-topics --create --topic postgres_topic --bootstrap-server localhost:9092 --partitions 1 --replication-factor 1 diff --git a/shell_scripts/kafka_server_start.sh b/shell_scripts/kafka_server_start.sh new file mode 100644 index 00000000..365c20dd --- /dev/null +++ b/shell_scripts/kafka_server_start.sh @@ -0,0 +1,2 @@ +#!/bin/bash +/opt/confluent/bin/kafka-server-start /opt/confluent/etc/kafka/server.properties diff --git a/shell_scripts/kafka_storage_format.sh b/shell_scripts/kafka_storage_format.sh new file mode 100644 index 00000000..c6cceb80 --- /dev/null +++ b/shell_scripts/kafka_storage_format.sh @@ -0,0 +1,2 @@ +#!/bin/bash +/opt/confluent/bin/kafka-storage format -t 2vi2WtHxQAOPyXb1Bj1Jvw -c /opt/confluent/etc/kafka/server.properties --standalone > /dev/null 2>&1; echo 0 diff --git a/shell_scripts/schema_registry_start.sh b/shell_scripts/schema_registry_start.sh new file mode 100644 index 00000000..2f4a4afe --- /dev/null +++ b/shell_scripts/schema_registry_start.sh @@ -0,0 +1,2 @@ +#!/bin/bash +/opt/confluent/bin/schema-registry-start /opt/confluent/etc/schema-registry/schema-registry.properties |
