Skip to content
Snippets Groups Projects
  1. Apr 07, 2023
    • Yaroslav Lobankov's avatar
      test: skip unstable tests of linearizable_test.lua · 442ee729
      Yaroslav Lobankov authored
      Skip unstable tests of `replication-luatest/linearizable_test.lua` due
      to tarantool-qa#277.
      
      NO_DOC=testing stuff
      NO_TEST=testing stuff
      NO_CHANGELOG=testing stuff
      442ee729
    • Yaroslav Lobankov's avatar
      test: dirty fix for some flaky replication-luatest tests · 7ac2685b
      Yaroslav Lobankov authored
      The fixed tests often failed with
      
        fail | 2023-03-01 15:54:30.550 [3724975] main/103/server_instance.lua
        F> can't initialize storage: unlink, called on fd 63,
        aka unix/:(socket), peer of unix/:(socket): Address already in use
      
      We fixed a similar issue in commit 3d3e9dea ("test: fix flaky
      box-luatest/gh_7917_log_row_on_recovery_error_test") by using unique
      instance names. Let's do the same here.
      
      NO_DOC=testing stuff
      NO_TEST=testing stuff
      NO_CHANGELOG=testing stuff
      7ac2685b
    • Oleg Chaplashkin's avatar
      test: replace clean() method with drop() of server · efa60df0
      Oleg Chaplashkin authored
      Server API from the luatest has been changed: `server:clean()` method
      has been removed. Use `server:drop()` instead.
      
      Follows up tarantool/luatest#296
      
      NO_DOC=test fix
      NO_TEST=test fix
      NO_CHANGELOG=test fix
      efa60df0
    • Oleg Chaplashkin's avatar
      test: bump test-run to version w/ updated luatest · 80238639
      Oleg Chaplashkin authored
      Bump test-run to new version with the following improvements:
      
      - Bump luatest to 0.5.7-33-g8523e5c [1]
      
      [1] tarantool/test-run@7db594d
      
      Part of tarantool/luatest#296
      
      NO_DOC=testing stuff
      NO_TEST=testing stuff
      NO_CHANGELOG=testing stuff
      80238639
    • Mergen Imeev's avatar
      sql: properly check fieldno in sql.c · 2252fa7b
      Mergen Imeev authored
      Tuples that have been inserted into system spaces after the _space
      definition has been inserted into _space have the same format as the
      space into which they were inserted. However, previously inserted tuples
      have an incomplete tuple format with parts missing. One piece that is
      missing information is the JSON token, which is used to determine the
      number of fields.
      
      The tarantoolsqlIdxKeyCompare() function contains the correct checks for
      the case when the number of fields from the format is equal to or less
      than the fieldno field, but uses tuple_format_field() before this check,
      resulting in an assertion.
      
      This patch forces tarantoolsqlIdxKeyCompare() to call
      tuple_format_field() only after checking that fieldno is less than
      field_count.
      
      Closes #8418
      
      NO_DOC=Bugfix in debug.
      2252fa7b
  2. Apr 06, 2023
    • Vladimir Davydov's avatar
      memtx: fix integer overflow in memtx index statistics · 5bffe204
      Vladimir Davydov authored
      This may result in invalid statistics if there's more than 4 GB
      allocated for index extents.
      
      Fixes commit a75f4b7e ("memtx: introduce read view statistics").
      Follow-up #8501
      Coverity report 1537026, 1537027.
      
      NO_DOC=bug fix
      NO_CHANGELOG=unreleased
      NO_TEST=complicated; checked by coverity
      5bffe204
    • Vladimir Davydov's avatar
      core: add TWEAK_DOUBLE · 81f73e7f
      Vladimir Davydov authored
      Allow to register tweaks for variables of type double. Such tweak can be
      set to any integer or double value.
      
      Follow-up #7883
      
      NO_DOC=internal
      NO_TEST=internal
      NO_CHANGELOG=internal
      81f73e7f
  3. Apr 05, 2023
    • Kirill Yukhin's avatar
      Add CODEOWNERS file · 2970bd57
      Kirill Yukhin authored
      To make changelog preparation less stressful let's pass each and every
      change to changelogs/ directly through the doc team.
      
      NO_CHANGELOG=no code changes
      NO_TEST=no code changes
      NO_DOC=no code changes
      2970bd57
    • Kseniia Antonova's avatar
      doc: proofread changelogs · 6effeec7
      Kseniia Antonova authored
      Fix grammar, punctuation, and wording
      
      NO_CHANGELOG=changelog
      NO_DOC=changelog
      NO_TEST=changelog
      6effeec7
    • Yaroslav Lobankov's avatar
      ci: fix saving artifacts to S3 for FreeBSD · 561c4f16
      Yaroslav Lobankov authored
      * Add an extra step that should be considered as a workaround for the
        runner agent (ChristopherHX/github-act-runner) that is used on FreeBSD
        machines. Without it, env.ARTIFACT_EXISTS will be undefined for some
        reason.
      
      * In the s3-upload-artifact action change `if: env.ARTIFACT_EXISTS` to
        `if: env.ARTIFACT_EXISTS == 'true'` to be compatible with the FreeBSD
        runner agent.
      
      Follows up tarantool/multivac#116
      
      NO_DOC=ci
      NO_TEST=ci
      NO_CHANGELOG=ci
      561c4f16
    • Serge Petrenko's avatar
      replication: add bootstrap_strategy "config" · c68fe033
      Serge Petrenko authored
      Add a new possible value for `bootstrap_strategy` configuration option -
      "config". When bootstrap_strategy is "config", the user may use
      `bootstrap_leader` configuration option to specify the URI or UUID of
      the desired bootstrap leader.
      
      Closes #7999
      
      @TarantoolBot document
      Title: new configuration option - `bootstrap_leader`.
      
      Configuration receives a new parameter - `bootstrap_leader`. The
      parameter specifies the desired node to bootstrap from.
      
      The parameter is valid only when another option - `bootstrap_strategy` -
      is set to `'config'`.
      The user may pass either the bootstrap leader's URI or its UUID string.
      
      If bootstrap leader is passed as a UUID, the node will bootstrap from
      the peer whose UUID matches the given one.
      
      If bootstrap leader is passed as a URI, the URI must contain the same
      host:port pair (or unix socket path) used for this node in
      `box.cfg.replication`. In this case the node will bootstrap from the
      remote peer listed in the corresponding replication entry.
      
      For example, this call will return an error:
      ```lua
      box.cfg{
          bootstrap_strategy = 'config',
          bootstrap_leader = 'localhost:3301',
          replication = {'127.0.0.1:3301'},
      }
      ```
      But this call will succeed:
      ```lua
      box.cfg{
          bootstrap_strategy = 'config',
          bootstrap_leader = 127.0.0.1:3301',
          replication = {'127.0.0.1:3301'},
      }
      ```
      In the example above, setting either or both of `bootstrap_leader` and
      `replication` to `"user:password@127.0.0.1:3301` will work just fine,
      i.e. only the bootstrap leader's host and port are matched against
      replication entries.
      
      If `bootstrap_leader` points at the instance being configured, the same
      URI entry for the instance must still be present in `replication`
      configuration parameter, like this:
      ```lua
      box.cfg{
          listen = 'localhost:1234',
          bootstrap_leader = 'localhost:1234',
          replication = {'localhost:1234', ...},
      }
      ```
      The only exception to this is setting `bootstrap_leader` to the same
      UUID as instance_uuid, like this:
      ```lua
      box.cfg{
          listen = 'something',
          bootstrap_leader = '11111111-1111-1111-1111-111111111111',
          instance_uuid = '11111111-1111-1111-1111-111111111111',
      ```
      In this case the node will bootstrap the cluster on its own.
      c68fe033
    • Serge Petrenko's avatar
      test: rename bootstrap_strategy_auto_test · b413fefb
      Serge Petrenko authored
      The test will include test cases for other possible bootstrap
      strategies, so rename it properly. Doing this in a separate commit
      helps to minimize the diff.
      
      In-scope-of #7999
      
      NO_DOC=test rename
      NO_TEST=test rename
      NO_CHANGELOG=test rename
      b413fefb
    • Serge Petrenko's avatar
      replication: refactor replicaset_connect() · 46cc3dbd
      Serge Petrenko authored
      replicaset_connect() sleeps in a loop while waiting for the connections
      to be established and checks a bunch of conditions in between the loop
      cycles to check if it can proceed (with either a success or a failure).
      
      The conditions are already quite complicated and multiple, but it's
      going to get worse with the addition of bootstrap_strategy "config" and
      "supervised": during bootstrap replicaset_connect() will proceed as soon
      as the configured bootstrap leader is connected.
      
      Factor all these checks out to a helper function for simplicity.
      
      Part-of #7999
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      46cc3dbd
    • Serge Petrenko's avatar
      uri: introduce a couple of helpers · 03e3428f
      Serge Petrenko authored
      Add uri_is_nil() and uri_addr_is_equal() helpers.
      
      In-scope-of #7999
      
      NO_DOC=not user-visible
      NO_TEST=tested implicitly in the next commit
      NO_CHANGELOG=not user-visible
      03e3428f
    • Serge Petrenko's avatar
      box: do not throw from box_check_uuid · 77fdcbe4
      Serge Petrenko authored
      Some time ago we decided that new checkers added to box_check_config()
      shouldn't throw. Instead they return -1 and box_check_config() raises an
      error.
      
      box_check_uuid() will be used in one of the upcoming checkers, so make
      it return -1 and set diag in case of error.
      
      Since it's used by box_check_instance_uuid() and
      box_check_replicaset_uuid(), fix them as well.
      
      In-scope-of #7999
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      77fdcbe4
    • Serge Petrenko's avatar
      box: extract routine checking a single uri from box_check_uri_set · 6494bc21
      Serge Petrenko authored
      Checking a single uri will be needed in upcoming commits.
      
      In-scope-of #7999
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      6494bc21
  4. Apr 03, 2023
  5. Mar 31, 2023
  6. Mar 30, 2023
    • Nikolay Shirokovskiy's avatar
      prbuf: remove dead code · 9fcafbd1
      Nikolay Shirokovskiy authored
      Remove parts that used before flightrec reader API is added.
      
      - fix test_max_record_size case of prbuf unit test to use reader from
        file
      - drop prbuf reader from buffer in memory
      - drop prbuf Lua FFI interface
      
      Follow up: https://github.com/tarantool/tarantool-ee/issues/319
      
      NO_DOC=internal
      NO_CHANGELOG=internal
      9fcafbd1
    • Nikolay Shirokovskiy's avatar
      prbuf: fix unaligned memory access in reader · 73e59094
      Nikolay Shirokovskiy authored
      Found by EE CI in release asan in flightrec test which uses prbuf.
      Change prbuf test so that the issue is tested in CE where the prbuf code
      resides.
      
      Follow-up https://github.com/tarantool/tarantool-ee/issues/319
      
      NO_DOC=bug fix
      NO_CHANGELOG=unreleased bug fix
      73e59094
    • Vladimir Davydov's avatar
      memtx: introduce read view statistics · a75f4b7e
      Vladimir Davydov authored
      Closes #8501
      
      @TarantoolBot document
      Title: Document memtx read view statistics
      
      New entries have been added to `box.stat.memtx()` output:
      
      ```
      tarantool> box.stat.memtx().data
      ---
      - garbage: 0
        total: 24986
        read_view: 0
      ...
      
      tarantool> box.stat.memtx().index
      ---
      - read_view: 0
        total: 933888
      ...
      ```
      
      `data` shows how much memory is allocated for memtx tuples:
       - `data.total` - total amount of memory allocated for data tuples.
         This includes `data.read_view` and `data.garbage` plus tuples that
         are actually stored in memtx spaces.
       - `data.read_view` - memory held for read views.
       - `data.garbage` - memory that is unused and scheduled to be freed
         (freed lazily on memory allocation).
      
      `index` shows how much memory is allocated for memtx index extents:
       - `index.total` - total amount of memory allocated for indexing data.
         This includes `index.read_view` plus memory used for indexing tuples
         that are actually stored in memtx spaces.
       - `index.read_view` - memory held for read views.
      
      All numbers are given in bytes.
      
      `data.read_view` and `index.read_view` include memory allocated both for
      system read views (snapshot, replication) and user read views (EE-only).
      They should be non-zero only if there are open read views. To list all
      open read views, use `box.read_view.list()`.
      a75f4b7e
  7. Mar 29, 2023
    • Andrey Saranchin's avatar
      read_view: introduce pagination methods · 1e02e050
      Andrey Saranchin authored
      The commit adds new read view methods needed for pagination. Also, the
      check that tuple is not nil is dropped for the sake of consistency - we
      will omit this check in read view because it is incomplete anyway and
      the error message looks fine without it.
      
      Part of tarantool/tarantool-ee#285
      
      NO_CHANGELOG=in EE
      NO_DOC=in EE
      1e02e050
    • Andrey Saranchin's avatar
      box: factor out iterator_position logics · 32fe9b17
      Andrey Saranchin authored
      Since we are going to implement pagination for read_view, we need to
      factor out iterator_position logics to avoid duplication.
      
      Part of tarantool/tarantool-ee#285
      
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      32fe9b17
    • Andrey Saranchin's avatar
      memtx: validate only cmp_def parts in pagination · 275130ff
      Andrey Saranchin authored
      Currently, we check that tuple passed as position fits space format.
      However, for pagination purposes, it's enough to validate only parts of
      tuple that are used in cmp_def. And, it allows not to use space format -
      we will need it in read view. So the patch replaces tuple validation with
      validation of its cmp_def parts only.
      
      Closes #8511
      Part of tarantool/tarantool-ee#285
      
      NO_DOC=bugfix
      275130ff
Loading