Skip to content
Snippets Groups Projects
  1. Mar 29, 2018
    • Vladimir Davydov's avatar
      bloom: use malloc for bitmap allocations · 78df5acd
      Vladimir Davydov authored
      There's absolutely no point in using mmap() instead of malloc() for
      bitmap allocation - malloc() will fallback on mmap() anyway provided
      the allocation is large enough.
      
      Note about the unit test: since we don't round the bloom filter size up
      to a multiple of page size anymore, we have to use a more sophisticated
      hash function for the test to pass.
      78df5acd
    • Vladimir Davydov's avatar
      test: vinyl/layout: fix bloom filter filtering in output · 88c4c19a
      Vladimir Davydov authored
      We filter bloom filters, because they depend on ICU version and hence
      the test output may vary from one platform to another (see commit
      0a37ccad "Filter out bloom_filter in vinyl/layout.test.lua").
      However, using test_run for this is unreliable, because a bloom string
      can contain newline characters and hence be split in multiple lines in
      console output, in which case the filter won't work. Fix this by
      filtering bloom_filter manually.
      88c4c19a
    • Vladislav Shpilevoy's avatar
      Merge branch '1.9' into 1.10 · 7ee84c95
      Vladislav Shpilevoy authored
      7ee84c95
    • Kirill Shcherbatov's avatar
      netbox: show is_nullable and collation fields · cc935d24
      Kirill Shcherbatov authored
      Netbox does not need nullability or collation info, but some
      customers do. Lets fill index parts with these fields.
      
      Fixes #3256
      cc935d24
  2. Mar 28, 2018
    • Kirill Shcherbatov's avatar
      tuple: add names_only option to build true dictionary · 5ad26fe2
      Kirill Shcherbatov authored
      Now tuple:tomap() method returns a map with both field names and
      field indexes, equal to the same field values. It is done to
      1) allow to still access tomap() result like a tuple, by indexes;
      2) allow to access non-named fields.
      
      But is not useful, when a result map must be saved somewhere, for
      example, in JSON - all its keys muse be strings. So allow to
      get this behaviour using tuple:tomap({names_only = true}).
      
      Fixes #3280
      5ad26fe2
  3. Mar 27, 2018
    • Konstantin Osipov's avatar
      Merge branch '1.9' into 1.10 · 57d3188d
      Konstantin Osipov authored
      57d3188d
    • Georgy Kirichenko's avatar
      Clear session storage on session stop · cd48321d
      Georgy Kirichenko authored
      * session_run_on_disconnect_triggers is called only if there are
      corresponding triggers so move session_storage_cleanup to
      session_destroy.
      * fix session storage cleanup path: use
      "box.session.aggregate_storage[sid]" instead of
      "session.aggregate_storage[sid]" (what was wrong)
      
      Fixed #3279
      cd48321d
    • Vladimir Davydov's avatar
      vinyl: rename vy_index to vy_lsm · 093f172e
      Vladimir Davydov authored
      Vinyl assigns a unique id to each index so that it can be identified in
      vylog, see vy_index->id, but outside Vinyl index id means something
      completely different - it's the ordinal number of the index in a space.
      This creates a lot of confusion. To resolve this, let's rename vy_index
      to vy_lsm and refer to Vinyl indexes as LSM trees in comments so that
      Vinyl's index_id turns into lsm_id.
      
      Also, rename vy_log_record's index_def_id and space_def_id back to
      conventional index_id and space_id as they doesn't conflict with Vinyl
      index id anymore (which is now lsm_id).
      
      Thanks to @Gerold103 for suggesting the new name.
      093f172e
    • Vladimir Davydov's avatar
      test: box/errinj: remove space truncate WAL write error test case · 11e38593
      Vladimir Davydov authored
      Currently, DDL isn't properly rolled back if WAL write fails, leaving
      the space in an inconsistent state - see alter_space_do() that calls
      space_commit_alter() right in on_replace trigger. It isn't clear how to
      fix this properly right now. Let's disable the corresponding test case
      until we figure out how to resolve this problem, so as not to stall
      further development.
      
      See #3289
      11e38593
  4. Mar 26, 2018
  5. Mar 22, 2018
    • Vladimir Davydov's avatar
      alter: rewrite space truncation using alter infrastructure · 1c3eb95b
      Vladimir Davydov authored
      Truncation of a space is equivalent to recreation of all space indexes
      with the same definition. The reason why we use a special system space
      to trigger space truncation (_truncate) is that we don't have
      transactional DDL while space truncation has to be done atomically.
      However, apart from the new system space, implementation of truncation
      entailed a new vylog record (VY_LOG_TRUNCATE_INDEX) and quite a few
      lines of code to handle it. So why couldn't we just invoke ALTER that
      would recreate all indexes?
      
      To answer this question, one needs to recall that back then vinyl used
      LSN to identify indexes in vylog. As a result, we couldn't recreate more
      than one index in one operation - if we did that, they would all have
      the same LSN and hence wouldn't be distinguishable in vylog. So we had
      to introduce a special vylog operation (VY_LOG_TRUNCATE_INDEX) that
      bump the truncation counter of an index instead of just dropping and
      recreating it. We also had to introduce a pair of new virtual space
      methods, prepare_truncate and commit_truncate so that we could write
      this new command to vylog in vinyl. Putting it all together, it becomes
      obvious why we couldn't reuse ALTER code for space truncation.
      
      Fortunately, things have changed since then. Now, vylog identifies
      indexes by space_id/index_id. That means that now we can simplify
      space truncation implementation a great deal by
      
       - reusing alter_space_do() for space truncation,
       - dropping space_vtab::prepare_truncate and commit_truncate,
       - removing truncate_count from space, index, and vylog.
      1c3eb95b
    • Vladimir Davydov's avatar
      vinyl: do not use index lsn to identify indexes in vylog · 25fa5e21
      Vladimir Davydov authored
      vy_log_record::index_lsn serves two purposes. First, it is used as a
      unique object identifier in vylog (it is similar to range_id or slice_id
      in this regard). Second, it is the LSN of the WAL row that committed the
      index, and we use it to lookup the appropriate index incarnation during
      WAL recovery. Mixing these two functions is a bad design choice because
      as a result we can't create two vinyl indexes in one WAL row, which may
      happen on ALTER of a primary key. Besides, we can't create an index
      object before WAL write, which is also needed for ALTER, because at that
      time there's no LSN assigned to the index yet.
      
      That said, we need to split this variable in two: index_id and
      commit_lsn. To be backward compatible, we rename index_lsn to
      index_id everywhere in vylog and add a new record field commit_lsn;
      if commit_lsn is missing for a create_index record, then this must
      be a record left from an old vylog and so we initialize it with
      index_id (former index_lsn) - see vy_log_record_decode().
      25fa5e21
    • Vladimir Davydov's avatar
      vinyl: rename vy_log_record::index_id/space_id to index_def_id/space_def_id · 66d52ecb
      Vladimir Davydov authored
      I'm planning to assign a unique identifier to each vinyl index so that
      it could be used instead of lsn for identifying indexes in vylog. In
      order not to confuse it with the index ordinal number, let's rename
      vy_log_record::index_id to index_def_id and, for consistency, space_id
      to space_def_id.
      66d52ecb
    • Vladimir Davydov's avatar
      vinyl: rename vy_index::id to index_id · ee6b868c
      Vladimir Davydov authored
      Throughout Vinyl we use the term 'id' for calling members representing
      unique object identifiers: vy_slice::id, vy_run::id, vy_range::id.
      There's one exception though: vy_index::id is the ordinal number of the
      index in a space. This is confusing. Besides, I'm planning to assign a
      unique id to each vinyl index so that I could look them up in vylog.
      I'd like to call the new member 'id' for consistency. So let's rename
      vy_index::id to index_id.
      ee6b868c
    • Konstantin Osipov's avatar
    • Vladimir Davydov's avatar
      vinyl: refactor vylog recovery · a1c3e5bd
      Vladimir Davydov authored
      The vy_recovery structure was initially designed as opaque to the
      outside world - to iterate over objects stored in it, one is supposed to
      use vy_recovery_iterate(), which invokes the given callback for each
      recovered object encoded as vy_log_record that was used to create it.
      
      Such a design gets extremely difficult to use when we need to preserve
      some context between callback invocations - e.g. see how ugly backup and
      garbage collection procedures look. And it is going to become even more
      obfuscated once we introduce the notion of incomplete indexes (indexes
      that are currently being built by ALTER).
      
      So let's refactor vylog recovery procedure: let's make the vy_recovery
      structure transparent and allow to iterate over internal representations
      of recovered objects directly, without callbacks.
      a1c3e5bd
    • Roman Proskin's avatar
      box: Introduce feedback daemon · 2ae373ae
      Roman Proskin authored
      * feedback daemon sends information about instance to the
        specified host.
      * Add new options to box.cfg:
          - feedback_enabled - switch on/off daemon, default=true.
          - feedback_host - host to which feedbacks are sent,
            default="https://feedback.tarantool.io".
          - feedback_interval - time interval in seconds of feedbacks
          sending, default=3600.
      * Add possibility to generate feedback file in json format with
      function box.feedback.save
      
      Closes #2762
      2ae373ae
    • Ilya's avatar
      fiber: Introduce fiber.join() related methods · 48cad35e
      Ilya authored
      Introduce two functions
      * fiber.new() - create fiber, schedules it into the
      ready queue but doesn't call it and doesn't yield.
      Signature of the method is the same as for fiber.create
      * fiber.join() - waits until the specified fiber finishes
      its execution and returns result or error. Applicable only
      to joinable fibers.
      * fiber.set_joinable() - sets the fiber joinable flag
      
      Closes #1397
      48cad35e
    • Konstantin Osipov's avatar
      Merge branch '1.9' into 1.10 · 021ce483
      Konstantin Osipov authored
      021ce483
    • Konstantin Osipov's avatar
    • Konstantin Osipov's avatar
    • Alec Larson's avatar
      [fio] allow empty path part in pathjoin (#3260) · 49c1de8f
      Alec Larson authored
      Empty strings should be ignored, rather than throw an error.
      
      Passing only empty strings (or nothing) to `pathjoin` will return '.' which means the current directory
      
      Every path part passed to `pathjoin` is now converted to a string
      
      The `gsub('/+', '/')` call already does what the removed code does, so avoid the unnecessary work
      Simply check if the result equals '/' before removing a trailing '/'.
      
      The previous check did extra work for no gain.
      49c1de8f
  6. Mar 21, 2018
  7. Mar 20, 2018
  8. Mar 15, 2018
  9. Mar 13, 2018
  10. Mar 11, 2018
Loading