Skip to content
Snippets Groups Projects
  1. Sep 22, 2017
    • Vladimir Davydov's avatar
      vinyl: rework cache iterator restore · 073c8d07
      Vladimir Davydov authored
      The cache iterator restoration function is muddy and suboptimal:
      
       - If last_stmt equals NULL, it doesn't attempt to change the iterator
         position although it should restart the iterator. Moreover, it
         doesn't even check EQ condition in this case, i.e. it may return a
         statement that doesn't satisfy the search criteria.
      
       - It may restore iterator position to last_stmt, but the restoration
         semantics mandates that the returned statement must be strictly
         greater than last_stmt if the iterator was restored.
      
       - If the iterator was invalidated, it first positions the iterator to
         the last known position (curr_stmt) and then steps back to the
         statement closest to last_stmt although it could jump to last_stmt
         immediately.
      
      Let's rewrite it.
      073c8d07
    • Vladimir Davydov's avatar
      vinyl: clean up upsert squashing procedure of read iterator · 98ac5be8
      Vladimir Davydov authored
      vy_merge_iterator_squash_upserts() returns an UPSERT, which is then
      converted to a REPLACE by vy_read_iterator_next(). Fold the latter into
      the former to make the workflow easier to follow. Also, remove useless
      suppress_error argument.
      98ac5be8
    • Vladimir Davydov's avatar
      vinyl: do not handle restore in next_key/next_lsn callbacks · 6fb87432
      Vladimir Davydov authored
      Not only restore() callback can restore the iterator position after the
      source changed - next_key() and next_lsn() can do that too, which brings
      additional complexity. Do we really need it? Not really:
      
       - We can avoid handling restoration in next_key() by simply calling
         restore() before it. This is cheap as restore() is a no-op if the
         source was not changed.
      
       - Regarding next_lsn() - when it comes to calling it, we iterate over
         sources from the most recent one to the oldest, which means that the
         only sources out there that may yield, on-disk runs, are guaranteed
         to be iterated last, after all mutable sources (txw, cache, mems), so
         none of the mutable sources needs to be restored in this case.
      
      Simplify the read iterator as per above.
      6fb87432
    • Vladimir Davydov's avatar
      vinyl: make sure next_lsn callback is only called after next_key · e5229867
      Vladimir Davydov authored
      Currently, ->next_lsn() may be (and actually is) called right after
      opening the iterator, which means that apart from advancing the iterator
      to the next version of the same statement it has to handle the case of
      starting iteration. This complicates the callback semantics so let's
      require ->next_key() to be called first.
      e5229867
  2. Sep 21, 2017
  3. Sep 20, 2017
  4. Sep 19, 2017
    • Vladimir Davydov's avatar
      box: implement persistent sequences · f797eec4
      Vladimir Davydov authored
      This patch implements a new object type, persistent sequences. Sequences
      are created with function box.schema.sequence.create(name, options).
      Options include min/max, start value, increment, cache size, just like
      in Postgresql, although 'cache' is ignored for now. All sequences can be
      accessed via box.sequence.<name>, similarly to spaces. To generate a
      sequence value, use seq:next() method. To retrieve the last generated
      value, use seq:get(). A sequence value can also be reset to the start
      value or to any other value using seq:reset() and seq:set() methods.
      
      Needed for #389
      f797eec4
    • Vladimir Davydov's avatar
      box: use trigger to push space data to Lua · 1f736583
      Vladimir Davydov authored
      Currently, it is done by space_cache_replace/delete which violates
      incapsulation. Let's introduce a trigger that is fired after a change in
      a space definition is committed and use it to propagate changes to Lua.
      Patch by @kostja.
      1f736583
    • lenkis's avatar
      Update man file for tarantool · fca3d686
      lenkis authored
      fca3d686
    • Vladimir Davydov's avatar
      box: add boolean field type · 702bcac2
      Vladimir Davydov authored
      702bcac2
  5. Sep 18, 2017
  6. Sep 15, 2017
Loading