Skip to content
Snippets Groups Projects
  1. Nov 01, 2017
  2. Oct 31, 2017
  3. Oct 30, 2017
    • Vladimir Davydov's avatar
      replication: finish bootstrap from 1.6 only when replica id is received · c383806d
      Vladimir Davydov authored
      In 1.7 the join procedure consists of two phases: initial, during which
      we send the last snapshot, and final, when we send xlogs written after
      the snapshot. Between the two phases, the replica uuid is added to the
      cluster table on the master, so by the time join is finished, the
      replica should have received its id.
      
      However, on 1.6 there's no final join phase, instead the master expects
      the replica to receive xlogs upon subscription. As a result, the replica
      doesn't receive its id until it sends the subscribe request.  This is
      not expected by 1.7 clients - they fail with ER_UNKNOWN_REPLICA.
      
      Fix this problem by making 1.7 replicas proceed to subscription and wait
      until the id is received before completing bootstrap from 1.6 master.
      
      Closes #2702
      c383806d
  4. Oct 27, 2017
  5. Oct 26, 2017
  6. Oct 25, 2017
  7. Oct 24, 2017
  8. Oct 19, 2017
    • Konstantin Nazarov's avatar
      Add support for tarantoolctl rocks make · 2427c360
      Konstantin Nazarov authored
      luarocks make <rockspec> allows one to build a rock from local
      directory.
      
      In addition to the "rocks make" argument, one additional option is
      needed in tarantoolctl: --chdir. This is because we need to build
      inside the rock directory, but output the result to
      <project_root>/.rocks.
      
      Implements #2846
      2427c360
    • Vladimir Davydov's avatar
      Fix compilation on Mac OS · 39276fe1
      Vladimir Davydov authored
      > src/box/txn.c:454:40: error: '_Alignof' applied to an expression is a GNU extension [-Werror,-Wgnu-alignof-expression]
      >                 diag_set(OutOfMemory, sizeof(*svp) + alignof(*svp) - 1,
      >                                                      ^
      
      Do not try to be smart and guess allocation size using alignof.
      
      > src/box/memtx_tree.c:391:11: error: comparison of unsigned enum expression < 0 is always false [-Werror,-Wtautological-compare]
      >         if (type < 0 || type > ITER_GT) { /* Unsupported type */
      >             ~~~~ ^ ~
      
      > src/box/vinyl_index.c:184:29: error: comparison of unsigned enum expression < 0 is always false [-Werror,-Wtautological-compare]
      >         if (type > ITER_GT || type < 0) {
      >                               ~~~~ ^ ~
      
      Move the check for illegal params (i.e. 'type < 0') to the box API.
      In index callbacks, only check that the iterator type is supported
      by the index.
      39276fe1
    • Vladimir Davydov's avatar
      index: introduce and use internal iterator API · d4d6b613
      Vladimir Davydov authored
      Since we already have the index_create_iterator() method to create an
      iterator, the API basically consists of two functions: iterator_next()
      and iterator_delete(). While iterator_delete() is just a trivial wrapper
      around iterator::free callback, iterator_next() is more than that: it
      also checks schema version and invalidates the iterator in case there
      was a DDL that affected the index. Previously, this was done only by the
      box API, but the overhead of this check seems to be really negligible so
      it is compelling to do it from the internal API so that an internal API
      user doesn't need to care about DDL once he opened an iterator.
      
      Needed for #2776
      d4d6b613
    • Vladimir Davydov's avatar
      space: drop execute_select virtual method · f1a75fe4
      Vladimir Davydov authored
      This virtual method was added to make use of the 'position' optimization
      implemented in memtx. Since the optimization was removed recently, we
      don't need it anymore.
      f1a75fe4
    • Vladimir Davydov's avatar
      index: implement generic versions of min(), max(), and count() · 4e3bb53e
      Vladimir Davydov authored
      The primary reason for these methods to be implemented differently
      for memtx and vinyl was the 'position' optimization exploited by
      the memtx engine: since selects from memtx do not yield, we could
      use a preallocated iterator there.
      
      Now, as the 'position' optimization became redundant and was
      removed due to the switch to memory pools for iterator allocations,
      the only idiosyncrasy left in the memtx implementation is the count()
      optimization: count() falls back on size() for ITER_ALL. Since this
      optimization consists of just a few lines of code, we don't really
      need memtx_index_count() co-used by all memtx index implementations:
      we can implement it in each memtx index separately.
      
      That being said, let us:
       - implement generic versions of min(), max(), and count();
       - make vinyl, memtx, and sysview engines use generic versions of
         the above-mentioned methods if appropriate;
       - Remove memtx_index.[hc]
      
      As a side-effect, this patch enables min(), max(), and count() in
      the sysview engine, but that is not bad considering that this engine
      implements general-purpose iterator for its indexes.
      4e3bb53e
    • Vladimir Davydov's avatar
      index: simplify iterator creation API · e18acfaa
      Vladimir Davydov authored
      We don't need index_position() optimization any more as all iterators
      are allocated from memory pools. Remove it and merge iterator allocation
      and initialization procedures.
      
      Needed for #2776
      e18acfaa
    • Vladimir Davydov's avatar
      index: allocate iterators from memory pools · 3273006d
      Vladimir Davydov authored
      Currently, index iterator allocation and initialization are separated.
      This is done in order to speed up iterator creation when the caller
      does not yield: there's 'position' method, which returns a preallocated
      iterator and can be used instead of costly 'alloc'; the iterator
      returned by this method needs to be initialized just like an iterator
      allocated normally, via 'alloc'. This looks ugly, because 'position'
      is engine-dependent, e.g. it can't be used in case of vinyl, because
      vinyl yields internally.
      
      Let's allocate all index iterators from memory pools. Since allocation
      from a memory pool is very cheap, this will allow us to get rid of the
      above-mentioned 'position' hack and simplify the iterator API.
      3273006d
    • Vladimir Davydov's avatar
      index: store pointer to engine · 0cd2240c
      Vladimir Davydov authored
      Currently, index iterator allocation and initialization are separated.
      This is done in order to speed up iterator creation when the caller
      does not yield: there's 'position' method, which returns a preallocated
      iterator and can be used instead of costly 'alloc'; the iterator
      returned by this method needs to be initialized just like an iterator
      allocated normally, via 'alloc'. This looks ugly, because 'position'
      is engine-dependent, e.g. it can't be used in case of vinyl, because
      vinyl yields internally.
      
      We can get rid of the above-mentioned 'position' hack by simply using a
      mempool for allocating iterators. To do that, we need to access engine
      from index, so this patch adds a reference to struct engine to struct
      index.
      0cd2240c
    • Vladimir Davydov's avatar
      Rewrite box DML/DQL API implementation without try/catch · 05ec9dd8
      Vladimir Davydov authored
      Box functions were initially written as C wrappers around internal C++
      API so they used try/catch to propagate errors. Now we can rewrite them
      without try/catch, as we have C API for DML/DQL.
      05ec9dd8
    • Vladimir Davydov's avatar
      txn: internal API: rollback on begin/commit failure · 84b7d542
      Vladimir Davydov authored
      Current internal tnx API is not particularly user-friendly in regards to
      error handling: if txn_begin_stmt(), txn_commit_stmt(), or txn_commit()
      fails, the txn state is undefined and the caller must rollback manually.
      To make the API easier to use, let's oblige these function rollback
      automatically in case of failure.
      
      Needed for #2776
      84b7d542
    • Vladimir Davydov's avatar
      space: fold request mangling in internal API · 0788f5e9
      Vladimir Davydov authored
      Apart from executing a request, process_rw() may also:
       - replace nil with a sequence value;
       - rebind update to the primary key.
      
      Let's fold this logic in the internal space API so that it can
      be easily reused by SQL.
      
      Note, request_rebind_to_primary_key() must not fail, because
      it is called after the request was successfully executed,
      which implies that the engine performed all necessary checks,
      so replace exceptions with asserts there.
      
      Needed for #2776
      0788f5e9
  9. Oct 18, 2017
  10. Oct 15, 2017
Loading