blob: dc3b6b6de000d602d03e01506509d952751d0b0a [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
env {
execution.parallelism = 1
job.mode = "STREAMING"
execution.checkpoint.interval = 5000
}
source {
FakeSource {
option {
bool = true
bool-str = "false"
int = 2147483647
int-str = "100"
float = 3.3333
float-str = "3.1415"
double = 3.1415926535897932384626433832795028841971
double-str = "3.1415926535897932384626433832795028841971"
map {
inner {
path = "mac"
name = "ashulin"
# The nested Map(Map<Map<?,?>>) type supports only JSON
map = """{"fantasy":"final"}"""
}
type = "source"
patch.note = "hollow"
}
map.name = "saitou"
}
option.long = 21474836470
option.long-str = "21474836470"
option.string = "Hello, Apache SeaTunnel"
option.enum = "LATEST"
option.list-json = """["Hello", "Apache SeaTunnel"]"""
option.list = ["final", "fantasy", "VII"]
option.complex-type = [{
inner {
list = [{
inner {
path = "mac"
name = "ashulin"
map = """{"fantasy":"final"}"""
}
type = "source"
patch.note = "hollow"
name = "saitou"
}]
}
inner.list-2 = [{
inner {
path = "mac"
name = "ashulin"
map = """{"fantasy":"final"}"""
}
type = "source"
patch.note = "hollow"
name = "saitou"
}]
}]
}
}
transform {
sql {
sql = "select name,age from fake"
}
}
sink {
File {
path = "file:///tmp/hive/warehouse/test2"
field_delimiter = "\t"
row_delimiter = "\n"
partition_by = ["age"]
partition_dir_expression = "${k0}=${v0}"
is_partition_field_write_in_file = true
file_name_expression = "${transactionId}_${now}"
file_format = "text"
sink_columns = ["name","age"]
}
}