Skip to content

Commit 0c3dccb

Browse files
authored
Merge pull request apache#741 from simon824/m2
[SeaTunnel apache#676][FOLLOWUP] Modify name in description
2 parents 6df9772 + f0011ba commit 0c3dccb

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

bin/utils/app.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
# Get App Name of Waterdrop
19+
# Get App Name of SeaTunnel
2020
function getAppName {
2121

2222
if [ "$#" -ne 1 ]; then
@@ -30,7 +30,7 @@ function getAppName {
3030
# remove all leading and trailing whitespace
3131
app_name_config=$(echo ${app_name_config} | tr -d '[:space:]')
3232

33-
DEFAULT_APP_NAME="Waterdrop"
33+
DEFAULT_APP_NAME="SeaTunnel"
3434
APP_NAME=${DEFAULT_APP_NAME}
3535

3636
if [[ ${app_name_config} == \#* ]]; then

config/flink.batch.conf.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
######
19-
###### This config file is a demonstration of batch processing in waterdrop config
19+
###### This config file is a demonstration of batch processing in SeaTunnel config
2020
######
2121

2222
env {

config/flink.streaming.conf.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
######
19-
###### This config file is a demonstration of streaming processing in waterdrop config
19+
###### This config file is a demonstration of streaming processing in SeaTunnel config
2020
######
2121

2222
env {

config/spark.batch.conf.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
#
1717

1818
######
19-
###### This config file is a demonstration of batch processing in waterdrop config
19+
###### This config file is a demonstration of batch processing in SeaTunnel config
2020
######
2121

2222
env {
2323
# You can set spark configuration here
2424
# see available properties defined by spark: https://spark.apache.org/docs/latest/configuration.html#available-properties
25-
spark.app.name = "Waterdrop"
25+
spark.app.name = "SeaTunnel"
2626
spark.executor.instances = 2
2727
spark.executor.cores = 1
2828
spark.executor.memory = "1g"

plugin-flink-sink-elasticsearch/src/main/java/io/github/interestinglab/waterdrop/flink/sink/Elasticsearch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public CheckResult checkConfig() {
7070
public void prepare(FlinkEnvironment env) {
7171
Config defaultConfig = ConfigFactory.parseMap(new HashMap<String, String>(2) {
7272
{
73-
put("index", "waterdrop");
73+
put("index", "seatunnel");
7474
put("index_type", "log");
7575
put("index_time_format", "yyyy.MM.dd");
7676
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"project":"waterdrop",
2+
"project":"seatunnel",
33
"group":"interestinglab"
44
}

0 commit comments

Comments
 (0)