Skip to content
Snippets Groups Projects
  1. Jul 13, 2018
  2. Jul 09, 2018
  3. Jul 05, 2018
    • Ilya Markov's avatar
      tarantoolctl: Add new options for rocks · 9d315ce4
      Ilya Markov authored
      Add propagation to luarocks of --only-server, --server keys.
      
      Closes #2640
      9d315ce4
    • Serge Petrenko's avatar
      Detect when instance is run or restarted by tarantoolctl. · b11e595a
      Serge Petrenko authored
      There are some hacks to know the instance was run by tarantoolctl,
      none of them are too reliable, though. This patch introduces 2
      environment variables set by tarantoolctl for the instance to
      know when it's being run or restarted.
      
      Closes: #3215
      
      @TarantoolBot document
      Title: tarantoolctl: document setting environment variables
      tarantoolctl sets the `TARANTOOLCTL` environment variable when starting
      an instance, and sets the `TARANTOOL_RESTARTED' environment variable
      when restarting.
      b11e595a
  4. Jun 28, 2018
  5. Apr 04, 2018
  6. Jan 18, 2018
    • Vladimir Davydov's avatar
      Make struct port abstract · d5e479ee
      Vladimir Davydov authored
      So that it can be used not only for serializing a list of tuples, but
      also for serializing a Lua stack that stores output of CALL/EVAL.
      
      Needed for #946
      d5e479ee
  7. Dec 21, 2017
    • Ilya's avatar
      say: Add several loggers support · 6d7437da
      Ilya authored
      * Add struct log
      * Add possibility to add logger configuration to global scope
      * Refactor functions in say to use them with specified config,
       not only global variable
      
       This patch was inspired by need of additional logger in audit log
       Relates #2912
      6d7437da
  8. Oct 26, 2017
  9. Oct 19, 2017
    • Konstantin Nazarov's avatar
      Add support for tarantoolctl rocks make · 2427c360
      Konstantin Nazarov authored
      luarocks make <rockspec> allows one to build a rock from local
      directory.
      
      In addition to the "rocks make" argument, one additional option is
      needed in tarantoolctl: --chdir. This is because we need to build
      inside the rock directory, but output the result to
      <project_root>/.rocks.
      
      Implements #2846
      2427c360
  10. Oct 12, 2017
    • Ilya's avatar
      log: add json format logging · 33be084e
      Ilya authored
      * Add log_format option to box.cfg{}
      * Add json format in logging
      * Add table converting to json in lua logging
      
      Closes #2795
      33be084e
  11. Oct 09, 2017
  12. Oct 04, 2017
  13. Sep 22, 2017
  14. Sep 15, 2017
  15. Sep 13, 2017
  16. Sep 12, 2017
  17. Sep 05, 2017
    • Vladislav Shpilevoy's avatar
      Implement box.savepoint · ff0ff603
      Vladislav Shpilevoy authored
      Savepoint allows to partialy rollback a transaction. After
      savepoint creation a transaction owner can rollback all changes applied
      after the savepoint without rolling back the entire transaction.
      
      Multiple savepoints can be created in each transaction. Rollback to
      a savepoint cancels changes made after the savepoint, and deletes all
      newer savepoints.
      
      It is impossible to rollback to a savepoint from a substatements level,
      different from the savepoint's one. For example, a transaction can not
      rollback to a savepoint, created outside of a trigger, from a trigger body.
      
      Closes #2025
      ff0ff603
  18. Aug 22, 2017
  19. Aug 16, 2017
  20. Aug 14, 2017
  21. Aug 01, 2017
  22. Jul 20, 2017
  23. Jul 18, 2017
  24. Jul 14, 2017
    • Roman Tsisyk's avatar
      Add minimal viable package manager based on LuaRocks · 9e7c4217
      Roman Tsisyk authored
      Usage:
      
          tarantoolctl rocks install ROCK - install a rock
          tarantoolctl rocks remove ROCK - remove a rock
          tarantoolctl rocks show ROCK - show information about an installed rock
          tarantoolctl rocks search PATTERN - search repository for rocks
          tarantoolctl rocks list - list all installed rocks
      
      There are no other commands, options, configuration files. Our official
      repository (http://rocks.tarantool.org) works out of the box. All rocks
      are installed to ${PWD}/.rocks directory to support separate rocks trees
      per project, as proposed by #2067. Rockspec can use "tarantool >= 1.7.x"
      inside dependencies = {} block to depend on a specific Tarantool version.
      
      LuaRocks has been slightly hacked to support custom configuration
      via site_config.lua. There are no other changes in the upstream code.
      It is not a fork and it isn't going to be a fork. All formats, layouts
      and rockspecs are 100% compatible with the upstream LuaRocks 2017-07-10.
      
      This feature intentionally doesn't have CMake option to disable it,
      because it should be provided on all available platforms out of the box.
      
      Other changes:
      
       * Add ${PWD}/.rocks to default package.path/package.cpath
       * Hack tarantoolctl to display subcommands in --help.
         Currently command line arguments handling are not perfect, but
         it can be fixed only by a new argparse implementation.
      
      Closes #2067
      9e7c4217
    • Roman Tsisyk's avatar
      Export fiber_cond to public C API · 64934db8
      Roman Tsisyk authored
      A part of #1451
      64934db8
  25. Jun 10, 2017
  26. Jun 09, 2017
  27. Jun 01, 2017
  28. May 25, 2017
    • Roman Tsisyk's avatar
      systemd: increase default LimitNOFILE for Vinyl · 7f8712a2
      Roman Tsisyk authored
      Set LimitNOFILE to 65535 to provide the best Vinyl experience
      out of the box.
      
      Closes #2465
      7f8712a2
    • Georgy Kirichenko's avatar
      Add fiber attributes · 19cda0fc
      Georgy Kirichenko authored
      Fiber attributes are a way to specify parameters that is different
      from the default. When a fiber is created using fiber_new_ex(),
      an attribute object can be specified to configure custom values for
      some options. Attributes are specified only at fiber creation time;
      they cannot be altered while the fiber is being used.
      
      Currently only stack_size attribute is supported. Fibers with
      non-default stack size won't be recycled via fiber pool.
      
      API overview:
      
      * fiber_new_ex() creates a fiber with custom attributes.
      * fiber_attr_new()/fiber_attr_delete() creates/destroys attributes.
      * fiber_attr_setstacksize()/fiber_attr_getstacksize() sets/gets
        the fiber stack size.
      * fiber_self() returns current running fiber.
      
      All new functions are available from public C API for modules.
      
      See #2438
      19cda0fc
  29. May 23, 2017
  30. May 12, 2017
  31. May 11, 2017
    • bigbes's avatar
      systemd notify related bug fix · f2d1b295
      bigbes authored
      On older version of systemd (systemd 219) 0 means infinity on newer
      version. To make one script compatible with both versions we'll replace
      infinity with 86400
      
      error message:
      ```
      May 11 10:09:42 jessie systemd[1]:
      [/lib/systemd/system/tarantool@.service:57] Failed to parse usec_t
      value, ignoring: infinity
      ```
      f2d1b295
Loading