Skip to content
Snippets Groups Projects
  1. Jul 19, 2018
  2. Jul 18, 2018
    • Vladimir Davydov's avatar
      xrow: factor out function for decoding vclock · fdb1e715
      Vladimir Davydov authored
      We will need it in other places.
      fdb1e715
    • Vladimir Davydov's avatar
      recovery: clean up WAL dir scan code · 9f1e0f44
      Vladimir Davydov authored
       - Remove extra scan of the WAL directory from local_recovery() - we
         scan the directory in recovery_end_vclock() hence we can skip scan in
         recover_remaining_wals() by passing scan_dir = false.
      
       - Rename recovery_end_vclock() to recovery_scan() to emphasize the fact
         that this function scans the WAL directory. Write a comment to this
         function.
      
       - Add comments to wal.c explaining why we scan the WAL directory there.
      
      Follow-up 0695fbbb ("box: retrieve end vclock before starting local
      recovery").
      9f1e0f44
    • Vladimir Davydov's avatar
      Update test-run · c9bb2492
      Vladimir Davydov authored
      To bring crash_expected option of "start server" command.
      c9bb2492
    • Serge Petrenko's avatar
      Add errors for non-existent privileges and entities. · aecbbfd7
      Serge Petrenko authored
      There were no checks for granting and revoking a non-existent
      privilege or a privilege to a non-existent entity.
      Added the checks, and a test case.
      
      Closes #3417
      aecbbfd7
  3. Jul 17, 2018
  4. Jul 16, 2018
  5. Jul 13, 2018
  6. Jul 12, 2018
  7. Jul 11, 2018
    • Vladimir Davydov's avatar
      box: factor out local recovery function · ab5c8a22
      Vladimir Davydov authored
       - Factor out local_recovery() from box_cfg_xc(). Make it setup
         replication and handle local recovery and hot standby cases.
       - Move replication setup in case of initial bootstrap from box_cfg_xc()
         to bootstrap() to make bootstrap() consistent with local_recovery().
       - Move initial snapshot creation from bootstrap() to bootsrap_master()
         and bootstrap_from_master().
      
      Needed for #461
      ab5c8a22
    • Vladimir Davydov's avatar
      box: connect to remote peers before starting local recovery · 2c32252b
      Vladimir Davydov authored
      box_sync_replication() can now be called before recovery, right after
      box_listen(). This is a step toward detecting if the instance fell too
      much behind its peers in the cluster and so needs to be rebootstrapped.
      
      Needed for #461
      2c32252b
    • Vladimir Davydov's avatar
      box: open the port before starting local recovery · 601bb92a
      Vladimir Davydov authored
      In order to find out if the current instance fell too much behind its
      peers in the cluster and so needs to be re-bootstrapped we need to
      connect it to remote peers before proceeding to local recovery. The
      problem is box.cfg.replication may have an entry corresponding to the
      instance itself so before connecting we have to start listening to
      incoming connections. So this patch moves the call to box_listen()
      before recoery is started unless the instance in hot standby mode.
      It also folds box_bind() into box_listen() as it is no longer needed
      as a separate function.
      
      Needed for #461
      601bb92a
    • Vladimir Davydov's avatar
      box: retrieve end vclock before starting local recovery · 0695fbbb
      Vladimir Davydov authored
      In order to find out if the current instance fell too much behind its
      peers in the cluster and so needs to be rebootstrapped, we need to know
      its vclock before we start local recovery. To do that, let's scan the
      most recent xlog. In future, we can optimize that by either storing end
      vclock in xlog eof marker or by making a new xlog on server stop.
      
      Needed for #461
      0695fbbb
    • Vladimir Davydov's avatar
      xlog: get rid of xlog_meta::has_prev_vclock · fa46ed59
      Vladimir Davydov authored
      Introduce vclock_is_set() helper and use it on xlog_meta::prev_vclock
      instead.
      
      Follow-up ac90b498 ("xlog: store prev vclock in xlog header").
      fa46ed59
  8. Jul 10, 2018
    • Konstantin Osipov's avatar
    • Konstantin Osipov's avatar
    • Vladimir Davydov's avatar
      vinyl: implement support of replica local spaces · bcb21b00
      Vladimir Davydov authored
      Store replication group id in vylog and ignore spaces whose group_id
      equals GROUP_LOCAL when relaying initial join rows.
      
      Folow-up #3443
      bcb21b00
    • Vladimir Davydov's avatar
      bd43a797
    • Vladimir Davydov's avatar
      box: ignore read-only mode for replica local spaces · 9a421e70
      Vladimir Davydov authored
      Replica local spaces can't cause replication conflicts so we don't
      really need to respect box.cfg.read_only for them (they are similar
      to temporary spaces in this regard).
      
      Follow-up #3443
      9a421e70
    • Konstantin Belyavskiy's avatar
      recovery: recount offset on checkpoint_interval change · 94ced96b
      Konstantin Belyavskiy authored
      Next checkpoint time is set by the formula:
       period = self.checkpoint_interval + offset,
      where offset is defined as follow:
       offset = random % self.checkpoint_interval
      
      So offset must be calculated again if at least the new
      interval is less than the old one.
      
      Closes #3370
      94ced96b
    • Vladimir Davydov's avatar
      vinyl: use vy_mem_iterator for point lookup · 35fc5e69
      Vladimir Davydov authored
      vy_mem_iterator_next is as effecient as the current implementation of
      vy_point_lookup_scan_mem, because it doesn't copy statements anymore
      (see commit 1e1c1fdb vinyl: make read iterator always return newest
      tuple version). Let's use it instead of open-coding vy_mem tree lookup.
      35fc5e69
    • Kirill Yukhin's avatar
      Merge branch '1.9' into 1.10 · 1ca0e2e8
      Kirill Yukhin authored
      1ca0e2e8
    • Kirill Shcherbatov's avatar
      app: fix parsing integers with exponent in json · f9f89acb
      Kirill Shcherbatov authored
      Now it is possible to specify a number in exponential
      form via all formats allowed by json standard.
      json.decode('{"remained_amount":2.0e+3}')
      json.decode('{"remained_amount":2.0E+3}')
      json.decode('{"remained_amount":2e+3}')
      json.decode('{"remained_amount":2E+3}')     <-- fixed
      
      Closes #3514.
      f9f89acb
    • Vladimir Davydov's avatar
      Introduce replica local spaces · f64f4619
      Vladimir Davydov authored
      This patch introduces a new space option, group_id, which defines how
      the space is replicated. If it is 0 (default), the space is replicated
      throughout the entire cluster. If it is 1, the space is replica local,
      i.e. all changes made to it are invisible to other replicas in the
      cluster. Currently, no other value is permitted, but in future we will
      use this option for setting up arbitrary replication groups in a
      cluster. The option can only be set on space creation and cannot be
      altered.
      
      Since the concept of replication groups hasn't been established yet,
      group_id isn't exposed to Lua. Instead, we use is_local flag, both in
      box.schema.space.create arguments and in box.space output.
      
      Technically, to support this feature, we introduce a new header key,
      IPROTO_GROUP_ID, which is set to the space group id for all rows
      corresponding to a space, both in xlog and in snap. Relay won't send
      snapshot rows whose group_id is 1. As for xlog rows, they are
      transformed to IPROTO_NOP so as to promote vclock on replicas without
      any actual data modification.
      
      The feature is currently supported for memtx spaces only, but it should
      be easy to implement it for vinyl spaces as well.
      
      Closes #3443
      
      @TarantoolBot document
      Title: Document new space option - is_local
      If a space is created with is_local flag set in options, changes made to
      the space will be persisted, but won't be replicated.
      f64f4619
    • Vladimir Davydov's avatar
      vinyl: disallow passing iterator to another fiber · 857bd04e
      Vladimir Davydov authored
      If a vinyl iterator is passed to another fiber, it may trigger a
      use-after-free bug, because the tx it's using may be destroyed
      while it's reading the disk. So let's explicitly ban that.
      
      Closes #3394
      857bd04e
    • Vladimir Davydov's avatar
      test: fix a typo in replication/gc.test · a870c05c
      Vladimir Davydov authored
      Fixes commit a09c04bf ("test: fix a sporadic failure of
      replication/gc.test").
      a870c05c
Loading