github.com/matrixorigin/matrixone@v0.7.0/etc/dn-minimal-test.toml (about)

     1  # service node type, [DN|CN|LOG]
     2  service-type = "DN"
     3  
     4  [log]
     5  level = "debug"
     6  format = "json"
     7  max-size = 512
     8  
     9  [hakeeper-client]
    10  service-addresses = [
    11      "1",
    12      "2"
    13  ]
    14  
    15  [[fileservice]]
    16  # local fileservice instance, used to store TAE Data and DNStore metadata.
    17  name = "local"
    18  # use disk as fileservice backend
    19  backend = "DISK"
    20  # set the directory used by DISK backend. There must has a file named "thisisalocalfileservicedir"
    21  # in the data dir
    22  data-dir = "data dir"
    23  
    24  [[fileservice]]
    25  # s3 fileservice instance, used to store data.
    26  name = "SHARED"
    27  # use disk as fileservice backend.
    28  backend = "DISK"
    29  # set the directory used by DISK backend. There must has a file named "thisisalocalfileservicedir"
    30  # in the data dir
    31  data-dir = "data dir"
    32  
    33  [[fileservice]]
    34  name = "ETL"
    35  # val in [DISK-ETL, S3]. if backend = S3, this config should be mirror of above fileservice(S3) config
    36  backend = "DISK-ETL"
    37  data-dir = "data dir"
    38  
    39  [dn]
    40  uuid = "dn uuid"
    41  
    42  [dn.Txn.Storage]
    43  # txn storage backend implementation. [TAE|MEM]
    44  backend = "MEM"
    45