Skip to content
Snippets Groups Projects
  1. Aug 18, 2017
  2. Aug 17, 2017
  3. Aug 16, 2017
    • Roman Tsisyk's avatar
      Update LuaRocks · 0905310e
      Roman Tsisyk authored
      Closes #2609
      Closes #2633
      Closes #2616
      0905310e
    • Georgy Kirichenko's avatar
      ac39d4b8
    • Alexandr Lyapunov's avatar
      vinyl: fix assertion in cache add · 10e54768
      Alexandr Lyapunov authored
      vinyl_cache_add takes pair of statements - current and previous.
      By design, there must be no statements in cache between them.
      
      Some time ago a check was made that the previous statement is in
      cache and lays right next to current statement; if that was not
      true, the function exited without building a cache chain.
      The was wrong because there are some cases when the statement
      could be removed by TX finalize/rollback after prepare or even by
      cache garbage collector.
      
      Later in this check 'return' was replaced by 'assert' and that
      caused rare test crash.
      
      Fix this check. Check only two things 1) absence of entries between
      current and previous statements 2) presence of previous statement
      if current is already in chain.
      
      Add a test case.
      
      See code comments for details.
      
      Fixes #2685
      10e54768
    • Roman Tsisyk's avatar
      Fix flaky box/tuple.test.lua · 3be799de
      Roman Tsisyk authored
      Discard xlogs with large tuples after decreasing memtx_max_tuple_size.
      
      Follow up #2667
      3be799de
    • Alexandr Lyapunov's avatar
      Add errinj for point iterator test · 1083b128
      Alexandr Lyapunov authored
      Add a special dump-waiting error injection to vy_point_iterator_get
      that will wait for a dump completion. Use it in test and make code
      coverage complete.
      
      In the point iterator test
      1083b128
    • Alexandr Lyapunov's avatar
      Fix errors in point_iterator and enable it back · 2ed561af
      Alexandr Lyapunov authored
      Fix a couple of mistakes in point_iterator and enable it back.
      
      Disable 'could be serializable' suggestion in tx_conflic test
      since new point iterator adds its key to read set before reading
      from disk and that leads to unnecessary conflicts sometimes.
      
      Fix #2662
      2ed561af
  4. Aug 15, 2017
    • Roman Tsisyk's avatar
      tuple: move box_tuple methods to tuple.c · 1a85df72
      Roman Tsisyk authored
      No semantic changes.
      
      Follow up #2047
      1a85df72
    • Roman Tsisyk's avatar
      Enable box.tuple.new() to work without box.cfg() · d5970d6f
      Roman Tsisyk authored
      * Remove dependency on memtx from tuple_format_default
      * Add tuple_new() to create standalone tuples
      * Allow box.tuple.new() without box.cfg()
      
      Closes #2047
      d5970d6f
    • Roman Tsisyk's avatar
      test: tweak tests after increasing slab size · a9340f0e
      Roman Tsisyk authored
      Follow up the previos commit.
      
      See #2667
      a9340f0e
    • Roman Tsisyk's avatar
      memtx: allow to insert tuples bigger than slab size · 62004d6b
      Roman Tsisyk authored
      - Use slab_get() as a fallback for smalloc() for large size
      - Set MemTX slab_size to 16Mb and don't use memtx_max_tuple_size
        for calculation (Vinyl is not changed yet)
      - Allow dynamic configuration of memtx_max_tuple_size
      
      Closes #2667
      62004d6b
    • Alexander Turenko's avatar
      http: add new options for http.client · 5d9cca7b
      Alexander Turenko authored
      Added options:
      
      * verify_host - CURLOPT_SSL_VERIFYHOST;
      * verify_peer - CURLOPT_SSL_VERIFYPEER;
      * ssl_key - CURLOPT_SSLKEY;
      * ssl_cert - CURLOPT_SSLCERT.
      5d9cca7b
    • Georgy Kirichenko's avatar
      Add hot function reload for C procedures · 96938faf
      Georgy Kirichenko authored
      This patch adds ability to reload C procedures on the fly without
      downtime. To achive that, Tarantool loads a new copy of shared
      library and starts routing all new request to the new version.
      The previous version remains active until all started calls
      are finished. All shared libraries are loaded with RTLD_LOCAL,
      therefore two or more copies can co-exist without any problems.
      From now box loads all external modules via an unique symlink to
      avoid caching inside dlopen().
      
      If one of some module function is reloaded then all other functions
      from this module will be reloaded.
      
      Reviewed and heavily patched by Roman Tsisyk.
      
      Closes #910
      96938faf
    • Roman Tsisyk's avatar
      Use new rbtree iterators · 738a6afd
      Roman Tsisyk authored
      rbtree_next() has log(N) complexity to advance to the right subtree.
      The new iterators saves the iteration path during descent.
      
      Closes #1668
      738a6afd
    • Roman Tsisyk's avatar
      Ignore tarantool_free() from non-main thread · fa759718
      Roman Tsisyk authored
      panic() from non-main thread calls exit(), which fires
      at_exit triggers, which try to destroy TX data.
      
      Closes #2686
      fa759718
    • Alexandr Lyapunov's avatar
      memtx: introduce createSnapshotIterator method in index · 577dc6b4
      Alexandr Lyapunov authored
      Memtx checkpointing subsystem uses createReadViewForIterator and
      destroyReadViewForIterator methods of Index. So these methods
      are used only for ALL iterators before actual iteration starts.
      
       * no other cases of these methods using are covered by tests,
      for example EQ iteration or using in the middle of iteration.
      
       * creation of general read view iterator is an overkill for
      such a simple case as ALL iterator.
      
       * memtx read view iterators are incompatible with lazy lookup
      and restoration patterns that are necessary for implementing
      stable iterators.
      
      Introduce new createSnapshotIterator method that would create
      a special iterator for checkpointing and remove misleading
      createReadViewForIterator and destroyReadViewForIterator methods.
      577dc6b4
    • Alexandr Lyapunov's avatar
      memtx: make tree iterators stable · 2160e4cb
      Alexandr Lyapunov authored
      Make memtx tree iterator lookup lazy - in the first 'next' call.
      It makes the iterator similar to vinyl in case when a new tuple
      is inserted between a moment of iterator creation and a moment
      of first tuple retrieval. Make the inserted tuple visible to
      the iterator.
      
      Store last returned tuple in the iterator and if the tree is
      changed between iterations - search for the stored tuple and
      continue iteration from the found position. This will make the
      iteration stable and every next iteration will return proper
      (next or previous) tuple.
      
      Fix #1796
      2160e4cb
    • Alexandr Lyapunov's avatar
      Add to bps_tree lower/upper_bound_elem methods · 22d0c539
      Alexandr Lyapunov authored
      Originally bps_tree had only lower/upper_bound methods for
      retreaving iterators by given key.
      
      Sometimes it is necessary to find an iterator position by a value
      that is (can be) stored in a tree.
      
      For example memtx tree index holds a bps_tree with
      (struct tuple *) values and (const char *) key.
      lower/upper_bound methods used (const char *) as an argument,
      but for stable iterators we need to find a position in the tree
      by (struct tuple *) value.
      
      Implement bps_tree methods that will allow to find an iterator
      by a value (element) in the tree.
      
      Needed for #1796
      22d0c539
    • Alexandr Lyapunov's avatar
      memtx: optimize and simplify comparators in memtx tree index · 8d044395
      Alexandr Lyapunov authored
      Move memtx_tree_compare_key definition to header file to allow
      compiler to inline it.
      
      Get rid of memtx_tree_comprare wrapper, use tuple_compare instead.
      
      Comment the code.
      8d044395
  5. Aug 14, 2017
Loading