14
14
# limitations under the License.
15
15
# ###############################################################################
16
16
17
+ # Common default configuration file that is used by ALL start scripts, the Fluss Servers and the Lakehouse CLI.
18
+ # In addition, there exist additional, dedicated default configuration files for some components that are also placed
19
+ # in this folder. The dedicated configuration files are ONLY read by the respective Java applications but NOT by the
20
+ # start scripts. In that case, configuration options in the dedicated files overwrite configuration options
21
+ # in the common (i.e., this) file.
22
+
17
23
# These parameters are required to run ./bin/lakehouse.sh for Java 17 support.
18
24
# They can be safely removed when using Java 8/11.
19
25
env.java.opts.all : --add-opens=java.base/java.util=ALL-UNNAMED
20
26
21
27
# ==============================================================================
22
28
# Zookeeper
23
29
# ==============================================================================
24
-
25
30
# Zookeeper connection string (see zookeeper docs for details).
26
31
# This is a comma separated host:port pairs, each corresponding to a zk
27
32
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002".
@@ -30,55 +35,27 @@ env.java.opts.all: --add-opens=java.base/java.util=ALL-UNNAMED
30
35
zookeeper.address : localhost:2181
31
36
32
37
# ==============================================================================
33
- # Common
38
+ # Data and FileSystems
34
39
# ==============================================================================
35
-
36
- # THe default bucket number to be used when creating tables if no bucket number
37
- # is specified for the table.
38
- default.bucket.number : 1
39
-
40
- # The default replication factor to be used when creating tables if no replication
41
- # factor is specified for the table.
42
- default.replication.factor : 1
43
-
44
- # The local data directory to be used for Fluss to storing kv and log data.
45
- data.dir : /tmp/fluss-data
46
-
47
40
# The remote data directory to be used for Fluss. Now, it is only used for storing
48
41
# kv snapshot data. Expected be set to a remote location like: oss://bucket/path for oss
49
42
# filesystem or hdfs://namenode:port/path for hdfs filesystem
50
43
remote.data.dir : /tmp/fluss-remote-data
51
44
52
- # ==============================================================================
53
- # Listeners
54
- # ==============================================================================
55
-
56
- # The network address and port to which the server binds for accepting connections.
57
- # The format is '{listener_name}://{host}:{port}', and multiple addresses can be specified, separated by commas.
58
- bind.listeners : FLUSS://localhost:9123
59
-
60
-
61
- # ==============================================================================
62
- # Tablet Server
63
- # ==============================================================================
64
-
65
-
66
- # The id of the tablet server to be run, must be set and should be different
67
- # when running multiple tablet servers.
68
- tablet-server.id : 0
69
-
70
- # ==============================================================================
71
- # OSS FileSystem
72
- # ==============================================================================
73
-
74
45
# The configuration for oss filesystem when using oss as the remote data directory
75
46
# fs.oss.endpoint: xxx
76
47
# fs.oss.accessKeyId: xxx
77
48
# fs.oss.accessKeySecret: xxx
78
49
50
+ # ==============================================================================
51
+ # Lakehouse
52
+ # ==============================================================================
53
+ # datalake.format: paimon
54
+ # datalake.paimon.metastore: filesystem
55
+ # datalake.paimon.warehouse: /tmp/paimon
56
+
79
57
# ==============================================================================
80
58
# Fluss Kafka Configs
81
59
# ==============================================================================
82
60
kafka.enabled : false
83
- kafka.port : 9092
84
61
kafka.database : _kafka
0 commit comments