- Aug 12, 2015
-
-
Roman Tsisyk authored
-
- Aug 11, 2015
-
-
Alexandr Lyapunov authored
Conflicts: src/box/alter.cc test/app/snapshot.test.lua
-
- Aug 10, 2015
-
-
Konstantin Osipov authored
* style fixes * fix a bug in key opts decoder (alter.cc) * ensure dimension is visible in box.space * rebuild bootstrap.snap to use the new format
-
Alexandr Lyapunov authored
-
Sulverus authored
- fix net.box to satisfy strict.lua requirements - after review fixes - fix buffer:checksize() in buffer.lua
-
- Aug 04, 2015
-
-
Konstantin Osipov authored
Reflect in slab stats the quota size and index memory statistics. arena_used_ratio - how much of arena is used items_used_ratio - how much memory is actualy used for items, given that there is some fragmentation. Doesn't reflect index pages arena_used - how much of the quota is used (i.e. how much memory is used for index and tuple data) arena_size - this is the same as box.cfg.slab_alloc_arena. quota_size - how much of the quota is defined (box.cfg.slab_alloc_arena) quota_used - how much of the quota is used (reflects the memory taken by all slabs, including slabs in caches) Incompatible change: Extract detailed slab statistics to a separate call, box.slab.stats()
-
- Aug 03, 2015
-
-
Konstantin Osipov authored
- upsert semantics is update or insert, not "always update" - upsert doesn't return tuple - bind upsert as tuple method in Lua (useful for QA) - ensure upsert is properly encoded in xlog
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
- Jul 27, 2015
-
-
Sokolov Yura aka funny_falcon authored
-
- Jul 23, 2015
-
-
Konstantin Osipov authored
Implement a generic inter-cord communication bus and use it in separating network I/O and transaction processor. Split all request processing work into network thread part and transaction processor thread part, and make these parts multi-threading safe. Generalize fiber pool into an own data structure and API. Misc cleanups.
-
- Jul 19, 2015
-
-
Alexandr Lyapunov authored
*) refactoring of update operation *) added tests
-
- Jul 17, 2015
-
-
Konstantin Osipov authored
Refactor iobuf and extract ibuf/obuf into small allocators library. Fix leaking obuf_destroy() (some slabs could be leaked by destroy). Introduce rename to follow the style of small allocators library.
-
- Jul 15, 2015
-
-
Roman Tsisyk authored
-
- Jul 13, 2015
-
-
Alexandr Lyapunov authored
1)removed atfork xlog resources freeing - they could be corrupted but xlog thread 2)snapshot.test now use pcall(box.snapshot) for deterministic code flow
-
- Jul 10, 2015
-
-
Roman Tsisyk authored
-
- Jul 09, 2015
-
-
Sulverus authored
Iproto + wal permission test case Wal writer bug fix port from 1.6.6 remove unused config
-
Alexandr Lyapunov authored
fixed gh-731 : now every rtree has it's own matras instance that is destroyed with rtree, releasing all memory of tree instance
-
Alexandr Lyapunov authored
-
Sulverus authored
gh-613 replication conflict test cases gh-613 after review fixes microsleep for CRDT test case, test-run updated CRDT fix
-
- Jul 07, 2015
-
-
Konstantin Osipov authored
Update result file
-
Sulverus authored
-
Sulverus authored
- add a test case for authentication trigger - pass user name to the trigger - invoke trigger before the current user has been changed - after review fixes
-
- Jul 06, 2015
-
-
Sulverus authored
-
Sulverus authored
-
Roman Tsisyk authored
Implement rtti-like scheme to export C++ type information to FFI.
-
Konstantin Osipov authored
Implement basic support for stored functions in C/C++. - split away struct func from struct func_def (function object and function definition object). - extend box.schema.func.create() to accept 'language' argument. - move module API related cmake magic to its own file - add test/lib to gitignore - update to the new test-run - add a test
-
Veniamin Gvozdikov authored
-
Veniamin Gvozdikov authored
* FreeBSD pthread_self() does not return int by pthread_self() becuseit has changed to pthread_getthreadid_np() * Updated build information on FreeBSD 10.1
-
Alexandr Lyapunov authored
-
- Jul 02, 2015
-
-
Alexandr Lyapunov authored
added additional checks to /wal_off/snapshot_stress.test.lua
-
- Jul 01, 2015
-
-
Roman Tsisyk authored
+ Rewrite msgpackffi to use ibuf to use ibuf for temporary allocations + Rewrite socket:sysread() to use ibuf for temporary allocations + Rewrite socket:read() and socket:write() to use ibuf + Add socket:sysread(char *, size) and socket:syswrite(const char *, size)
-
Roman Tsisyk authored
Replace socket('AF_UNIX', 'SOCK_STREAM', 'ip') with socket('AF_UNIX', 'SOCK_STREAM', 0). Fixes distributions with missing "ip 0 IP" line in /etc/protocols (e.g. Arch Linux).
-
- Jun 26, 2015
-
-
Sulverus authored
Test case
-
Alexandr Lyapunov authored
*)added proper cleanup *)minor fixes and checks
-
- Jun 16, 2015
-
-
Konstantin Osipov authored
Introduce mpstream API to lua-msgpack encoder, which allows it to encode msgpack into any memory source. The streaming API should make it possible to encode even directly to network. Patch region allocator to support the new API. Patch iobuf/obuf output buffer of iproto to support the new API.
-
- Jun 15, 2015
-
-
Roman Tsisyk authored
Extract Exception::clear(), Exception::move(), fiber()->exception into struct diag methods. This refactoring makes desired logic to be more clear.
-
Roman Tsisyk authored
-
- Jun 09, 2015
-
-
Roman Tsisyk authored
A part of #863
-
Sulverus authored
-