Skip to content
Snippets Groups Projects
  1. Apr 10, 2024
    • Alexander Turenko's avatar
      main: add --failover into CLI options help message · c8d8c2e8
      Alexander Turenko authored
      The failover coordinator is a service provided by Tarantool Enterprise
      Edition. It is going to be released in the 3.1.0 version. Let's add the
      `--failover` option into the help message and the man page.
      
      This reverts commit af4bad43 ("main: hide --failover CLI option").
      
      Part of tarantool/tarantool-ee#564
      
      NO_DOC=the documentation request for the failover coordinator at whole
             will be added manually
      NO_CHANGELOG=this is EE feature, no reason to highlight it in CE release
                   notes
      c8d8c2e8
  2. Dec 20, 2023
    • Mergen Imeev's avatar
      config: update sharding.yaml · 99f5d302
      Mergen Imeev authored
      This patch updates example for vshard usage in config module.
      
      NO_DOC=example update
      NO_TEST=example update
      NO_CHANGELOG=example update
      99f5d302
    • Alexander Turenko's avatar
      config: read cluster config parts from env/file · 830578c7
      Alexander Turenko authored
      Fixes #9506
      
      @TarantoolBot document
      Title: config.context: define cluster config parts in env/file
      
      Example:
      
      ```yaml
      config:
        context:
          replicator_password:
            from: file
            file: secrets/replicator_password.txt
            rstrip: true
          client_password:
            from: file
            file: secrets/client_password.txt
            rstrip: true
      
      credentials:
        users:
          replicator:
            password: '{{ context.replicator_password }}'
            roles: [replication]
          client:
            password: '{{ context.client_password }}'
            roles: [super]
      ```
      
      The new `config.context` section allows a user to define its own
      variables, whose content resides in an environment variable or a file.
      
      The primary usage is to extract passwords from the configuration.
      
      All the variables are defined in `config.context` section as keys. Each
      key is a record with the following fields.
      
      * `from`: either `env` or `file`
      * `file`: a file path
      * `env`: an environment variable name
      * `rstrip`: whether to strip whitespace characters from the end of the
         data (it strips newlines too)
      
      A relative file path is interpreted as relative to `process.work_dir`.
      
      `from` is mandatory, `file` is mandatory when `from` is `file`, `env` is
      mandatory when `from` is `env`, `rstrip` is optional.
      
      If there is no given file or no given environment variable, an error of
      a configuration applying is reported.
      830578c7
    • Mergen Imeev's avatar
      config: move config-storage example to examples · 50c87b7d
      Mergen Imeev authored
      This patch moves example for config of config-storage to doc/examples
      from enterprise doc/.
      
      NO_DOC=added an example
      NO_TEST=validation will be added later
      NO_CHANGELOG=added an example
      50c87b7d
    • Mergen Imeev's avatar
      config: fix example for etcd · e2a9a9b1
      Mergen Imeev authored
      This patch fixes iproto.listen and iproto.advertise.peer in local.yaml.
      
      Part of #8862
      
      NO_DOC=changes in example
      NO_TEST=will be tested in EE
      NO_CHANGELOG=changes in example
      e2a9a9b1
    • Mergen Imeev's avatar
      config: support TLS options in iproto.listen · 1247f47a
      Mergen Imeev authored
      This patch changes format of iproto.listen and introduces support for
      TLS options in the iproto.listen config option.
      
      Part of #8862
      
      @TarantoolBot document
      Title: new format of the `iproto.*` config options.
      
      The config options `iproto.listen`, `iproto.advertise.peer` and
      `iproto.advertise.sharding` now have a new format.
      
      The `iproto.listen` config option now has the following format:
      ```
      iproto:
        listen:
          - uri: <string>
            params:
              transport: <'plain' or 'ssl'>
              ssl_ca_file: <string>
              ssl_cert_file: <string>
              ssl_ciphers: <string>
              ssl_key_file: <string>
              ssl_password: <string>
              ssl_password_file: <string>
          - uri: <string>
            params:
              transport: <'plain' or 'ssl'>
              ssl_ca_file: <string>
              ssl_cert_file: <string>
              ssl_ciphers: <string>
              ssl_key_file: <string>
              ssl_password: <string>
              ssl_password_file: <string>
      ...
      ```
      The `iproto.listen` config option is now an array, and its elements are
      `records` that can only have a required `uri` field and an optional
      `params` field.
      
      The `uri` field is of type `string` and must be a single valid URI. The
      URI cannot contain parameters, login and password.
      
      The `params` field is a `record` with the fields `transport`,
      `ssl_ca_file`, `ssl_cert_file`, `ssl_ciphers`, `ssl_key_file`,
      `ssl_password`, `ssl_password_file`. The `transport` field can have one
      of two values: `plain` or `ssl`, the default is `plain`. If `transport`
      is set to `plain`, no additional fields are required. When `transport`
      is set to `ssl`, the fields `ssl_key_file` and `ssl_cert_file` are
      required, and the remaining fields are optional.
      
      The `iproto.advertise.peer` and `iproto.advertise.sharding` now have the
      following format:
      ```
      iproto:
        advertise:
          <'peer' or 'sharding'>:
            uri: <string>
            login: <string>
            password: <string>
            params:
              transport: <'plain' or 'ssl'>
              ssl_ca_file: <string>
              ssl_cert_file: <string>
              ssl_ciphers: <string>
              ssl_key_file: <string>
              ssl_password: <string>
              ssl_password_file: <string>
      ```
      
      The `iproto.advertise.peer` and `iproto.advertise.sharding` are now
      `records`. All of their fields are optional, however, if the `params`
      field can be set only if the `uri` field is set and the `password` field
      can be set only if the `login` field is set.
      
      The `uri` field is of type `string` and must be a single valid URI.
      The URI cannot contain parameters, login and password. If the `uri` and
      `params` fields are missing, the appropriate `iproto.listen` element is
      selected. An element is eligible if, after parsing its `url` field using
      `require('uri').parse()`, the `ipv4` result field is not equal to
      `'0.0.0.0'`, the `ipv6` result field is not equal to `'::'`, and the
      `service` result field is not equal to `'0'`.
      
      The `login` and `password` fields are of type `string`.
      
      For description of the `params` field see description of
      `iproto.listen`.
      1247f47a
    • Mergen Imeev's avatar
      config: support TLS options in iproto.advertise · 15d1f9f8
      Mergen Imeev authored
      This patch changes the structures of the iproto.advertise.peer and
      iproto.advertise.sharding options and introduces TLS options for these
      options.
      
      There is no proper integration test for the new TLS options as our
      iproto.listen does not currently support these options. The test will
      be added along with the addition of TLS support in iproto.listen.
      
      Part of #8862
      
      NO_DOC=will be added later.
      15d1f9f8
  3. Dec 18, 2023
    • Alexander Turenko's avatar
      config: support conditional sections · 6206f744
      Alexander Turenko authored
      Fixes #9452
      
      @TarantoolBot document
      Title: config: conditional sections for upgrading
      
      See https://github.com/tarantool/tarantool/issues/9452 for the problem
      statement. In short: some upgrade scenarios may need to configure
      tarantool instances differently depending on a tarantool version.
      
      A new top level configuration block is added for this purpose:
      `conditional`. Let's look on an example:
      
      ```yaml
      conditional:
      - if: tarantool_version >= 3.99.0 && tarantool_version < 4.0.0
        # This section shouldn't be validated and shouldn't be applied.
        replication:
          new_option: foo
      - if: tarantool_version < 3.99.0
        # This section is to be applied.
        process:
          title: '{{ instance_name }} -- in upgrade'
      ```
      
      The block contains an array of conditional sections, each accompanied by
      `if` predicate to determine, whether to apply it on particular tarantool
      version. (`if` is required.)
      
      If a section is not to be applied on the given version, it is not
      validated at all and may contain unknown options.
      
      If a section is to be applied, it must match the cluster configuration
      schema like the main config.
      
      If the same option is set by several sections with true predicate, the
      last section wins.
      
      The `if` expression supports one data type: `version`. A value may be
      referenced in two ways:
      
      1. Version literal: `1.2.3` (three components, not less, not more).
      2. Variable: `tarantool_version` (only this variable is supported).
      
      `tarantool_version` is assumed as three components version, say, 3.0.0.
      
      The operations are the following.
      
      1. Logical OR: `||`
      2. Logical AND: `&&`
      3. Compare: `>`, `<`, `>=`, `<=`, `==`, `!=`
      4. Parentheses: `(`, `)`
      
      All the comparisons assume the versions as three component ones.
      6206f744
    • Alexander Turenko's avatar
      main: hide --failover CLI option · af4bad43
      Alexander Turenko authored
      The failover agent is not ready at the moment. Let's hide the CLI option
      from the help message, but still handle it: it is useful to continue the
      development of the agent.
      
      See tarantool/tarantool-ee#564
      
      NO_DOC=The option is not present into the documentation.
      NO_CHANGELOG=No behavior changes, just help message.
      af4bad43
  4. Nov 02, 2023
    • Alexander Turenko's avatar
      main: rewrite help message · d5c874e1
      Alexander Turenko authored
      This commit aims several goals.
      
      First, we're going to recommend `tt` as a tool to run and manage
      tarantool instances. The tool is going to replace `tarantoolctl` and it
      seems valuable to sync recipes across different parts of the
      documentation (including this help message).
      
      Second, the action options and modifier options are separated now. At
      least one action option should be specified. I hope, it is more obvious
      from the help message now.
      
      Third, single line descriptions are replaced with a bit more extended
      ones to give a user basic context to understand an influence of an
      option.
      
      Updated the man page accordingly: synchronized the options, removed
      `tarantoolctl`.
      
      Part of #8862
      
      NO_TEST=the help message is not an API for a developer
      NO_CHANGELOG=nothing new here, just better wording here and there
      
      @TarantoolBot document
      Title: Update CLI options documentation
      
      https://www.tarantool.io/en/doc/latest/reference/configuration/#command-options
      seems to need an update. See the linked commit for details and updated
      `tarantool --help` message.
      d5c874e1
  5. Aug 23, 2023
    • Alexander Turenko's avatar
      test/config: fix password format in etcd example · 7aceb82b
      Alexander Turenko authored
      The instance config schema was changed in commit 4bb1eb0e ("config:
      remove hashes from credentials.password"), but an example of a config
      for etcd was not updated.
      
      The example is tested on Tarantool EE, so we should update it to fix the
      testing failure.
      
      Part of #8967
      
      NO_DOC=It is a fix of the testing problem.
      NO_CHANGELOG=see NO_DOC
      NO_TEST=It is a fix of a test in fact.
      7aceb82b
    • Mergen Imeev's avatar
      config: introduce example for sharding · 6cfb54f7
      Mergen Imeev authored
      Follow-up #9007
      
      NO_DOC=Will be described when full support for vshard is introduced.
      NO_CHANGELOG=Addition of an example.
      6cfb54f7
  6. Aug 21, 2023
    • Gleb Kashkin's avatar
      config: remove hashes from credentials.password · 4bb1eb0e
      Gleb Kashkin authored
      In the initial credentials schema, the hashes were supposed to give a
      way to have passwords out of plain-text config file.
      Later, it was decided to remove this feature, because this way of
      authorisation is inferior to the one with auth service and tokens,
      but the latter is out of scope for current config development.
      This patch removes `credentials.password.{sha1,sha256}` and moves
      plain password from `credentials.password.plain` to `credentials.password`.
      
      Part of #8967
      
      NO_DOC=tarantool/doc#3544 links the most actual schema,
             no need to update the issue.
      NO_CHANGELOG=removed feature was not released yet
      4bb1eb0e
  7. Jul 04, 2023
    • Alexander Turenko's avatar
      config: restrict iproto.advertise.client validation · ce9a6109
      Alexander Turenko authored
      The following syntax variants are fobidden now:
      
      * user@
      * user:pass@
      * user@host:port
      * user:pass@host:port
      
      Only host:port is allowed (inet URI or unix socket URI).
      
      The idea is that we shouldn't distribute login/password information
      using the configuration, so it is better to explicitly forbid such
      usage of the option.
      
      Closes #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      ce9a6109
    • Alexander Turenko's avatar
      config: add replicaset.failover = "election" · 6b3eb60c
      Alexander Turenko authored
      This failover mode enables automatic leader election on a replicaset.
      Assigning a leader manually (`leader` option) and assigning RO/RW mode
      (`database.mode` option) are forbidden in this failover mode.
      
      Configuration example:
      
      ```yaml
      replication:
        failover: election         # !!
      
      groups:
        group-001:
          replicasets:
            replicaset-001:
              instances:
                instance-001: {}
                instance-002: {}
                instance-003: {}
      ```
      
      All the replicaset instances are so called candidates by default: they
      can vote for a leader, they can be elected as a leader. However, it is
      possible to set `replicaset.election_mode` to 'voter', 'off' or
      'manual'. See more detailed description in the box_cfg applier comments
      in the code and in the box.cfg() options documentation [1].
      
      Note: Unlike box.cfg()'s option 'election_mode', the
      replication.election_mode = "off" forces the instance to be read-only
      (if failover = "election" is enabled). box.cfg() call has no cluster
      configuration and it doesn't know, whether the given replicaset is
      managed by the built-in election algorithm or an external coordinator.
      
      The election failover may be used to improve cluster's availability.
      
      [1]: https://www.tarantool.io/en/doc/latest/reference/configuration/#cfg-replication-election-mode
      
      Part of #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      6b3eb60c
    • Alexander Turenko's avatar
      config: add replicaset.failover = "manual" · 4fab39bb
      Alexander Turenko authored
      This failover mode allows to set a leader for a replicaset by its
      instance name instead of per-instance database.mode option. For example:
      
      ```yaml
      replication:
        failover: manual           # !!
      
      groups:
        group-001:
          replicasets:
            replicaset-001:
              leader: instance-001 # !!
              instances:
                instance-001: {}
                instance-002: {}
                instance-003: {}
      ```
      
      The "manual" failover mode doesn't allow several leaders in a
      replicaset. If it is desired, use the "off" failover mode.
      
      The "manual" mode doesn't perform a proper leader switching at the
      moment. An administrator should resign the old leader (by unsetting the
      leader option or setting it to `null`), wait till all the data arrives
      to the upcoming leader and then configure it as the new leader.
      
      The proper leader switching is subject of a future work. Also, the next
      commit will add replicaset.failover = "election", which handles such
      problems.
      
      Part of #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      4fab39bb
    • Alexander Turenko's avatar
      config: start singleton instance in RW by default · 8ee2b0d8
      Alexander Turenko authored
      Enabling read-write by default is unsafe for an instance in a replicaset
      with more than one instance. The only meaningful default here is
      read-only.
      
      On the other hand, a signleton instance (the only one in its replicaset)
      almost always started in the read-write mode in practice.
      
      Let's use these values as defaults for these situations.
      
      The name of the option is changed from `rw` (boolean) to `mode` (enum
      with allowed values `'ro'` and `'rw'`). We agreed on the enum after a
      long controversy whether it should be `ro` or `rw`.
      
      Part of #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      8ee2b0d8
    • Alexander Turenko's avatar
      config: split iproto.advertise to several options · 345d52b8
      Alexander Turenko authored
      In brief:
      
      * client -- for external clients
      * peer -- for connections within the cluster, in particular for replicas
      * sharding -- for routers and a rebalancer
      
      See the instance_config.lua file for the details.
      
      Part of #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      345d52b8
    • Alexander Turenko's avatar
      config: accept user[:pass]@ in iproto.advertise · b3beba61
      Alexander Turenko authored
      The following new syntax variants are introduced for `iproto.advertise`.
      
      * `user@` -- use the given user, a password from the `credentials`
        section and `host:port` from `iproto.listen`
      * `user:pass@` -- use the given user and password, use `host:port` from
        `iproto.listen`
      * `user@host:port` -- use the given user, host and port, use a password
        from the `credentials` section
      
      It allows to don't repeat the same information in different places of
      the config.
      
      The `test_no_advertise_*` test cases are generalized: now the same
      boilerplate code is used for these and new cases.
      
      The `test.luatest_helpers.server` util gains ability to parse all the
      new `iproto.advertise` variants.
      
      The replicaset and etcd configuration examples are updated to use the
      `user@` syntax.
      
      Part of #8810
      
      NO_DOC=the old behavior was not released, the documentation request will
             be registered manually
      NO_CHANGELOG=see NO_DOC
      b3beba61
  8. Jun 22, 2023
    • Mergen Imeev's avatar
      config: add configuration examples · a2ad2709
      Mergen Imeev authored
      This patch adds configuration examples. Although the configuration
      module will be introduced later, the examples can already be tested
      using the instance_config and cluster_config modules.
      
      Closes #8778
      
      NO_DOC=will be added later
      NO_CHANGELOG=will be added later
      a2ad2709
  9. Jun 19, 2023
    • Igor Munkin's avatar
      main: introduce new CLI options for config module · 9db7d6c9
      Igor Munkin authored
      
      There are two new options introduced in Tarantool CLI:
      * --name (-n) to specify instance name to be started. The option can be
        omitted in case TT_INSTANCE_NAME environment variable is set.
      * --config (-c) to specify the path to the config file. If the option
        is not set the value of TT_CONFIG environment variable is considered.
      
      Closes #8613
      
      Co-authored-by: default avatarSergey Bronnikov <sergeyb@tarantool.org>
      
      @TarantoolBot document
      Title: introduce new CLI options for conf module
      
      There are two new options introduced in Tarantool CLI:
      * --name (-n) to specify instance name to be started. The option can be
        omitted in case TT_INSTANCE_NAME environment variable is set.
      * --config (-c) to specify the path to the config file. If the option
        is not set the value of TT_CONFIG environment variable is considered.
      9db7d6c9
  10. May 03, 2023
  11. Feb 27, 2023
  12. Aug 24, 2022
  13. Aug 09, 2022
  14. Oct 11, 2021
  15. Sep 14, 2021
  16. Apr 21, 2021
  17. Mar 25, 2021
  18. Feb 12, 2021
  19. Jan 21, 2021
  20. Dec 22, 2020
  21. Mar 26, 2020
  22. Jan 10, 2020
  23. Aug 06, 2019
    • Vladimir Davydov's avatar
      rfc: vylog ups and downs · 27436b40
      Vladimir Davydov authored
      As per request by Kostja, commit an RFC document with a brief history of
      the vinyl metadata log infrastructure, issues it was intended to solve,
      problems we are facing now, and possible ways to solve them.
      27436b40
  24. Jul 11, 2019
  25. Feb 22, 2019
  26. Feb 12, 2019
Loading