Skip to content
Snippets Groups Projects
  1. Aug 10, 2017
  2. Aug 09, 2017
  3. Aug 08, 2017
  4. Aug 07, 2017
  5. Aug 04, 2017
  6. Aug 03, 2017
  7. Aug 02, 2017
  8. Aug 01, 2017
  9. Jul 31, 2017
    • Vladimir Davydov's avatar
      recovery: do not stall replication on unfinished xlog · da85fd2a
      Vladimir Davydov authored
      recover_remaining_wals() doesn't proceed to the next xlog until the
      current one is finalized (EOF marker is written). As a result, if an
      xlog wasn't finalized for some reason (IO error occurred or tarantool
      was killed in cold blood with SIGKILL), replication will stall on the
      unfinished xlog forever.
      
      To preclude that, let's differentiate WAL write and rotation in WAL
      watcher and force recover_remaining_wals() rescan the WAL directory on
      any WAL rotation so that it will continue to the next WAL even if the
      current one wasn't properly finalized. In case of hot standby, we can't
      reliably detect WAL rotation (e.g. on Mac OS inotify may not work) so
      also rescan the WAL directory every wal_dir_rescan_delay seconds.
      
      Closes #2294
      da85fd2a
    • Vladimir Davydov's avatar
      relay: cleanup error handling · b51b7a0f
      Vladimir Davydov authored
       - Handle cord_costart() errors properly.
       - Don't use scoped_guard as we don't actually need it there.
       - Drop relay_destroy() and rename relay_create() to relay_init().
      b51b7a0f
    • Vladimir Davydov's avatar
      Use cbus for delivering notifications from WAL to relay · 2b5aa3fc
      Vladimir Davydov authored
      Instead of notifying relay about new WALs with ev_async, establish a
      cbus connection between WAL and each relay and send cbus messages after
      wal_write. This is more flexible, because unlike ev_async we can pass
      extra information along with cbus messages, e.g. LSN or event mask.
      
      Closes #2275
      2b5aa3fc
Loading