- Aug 26, 2015
-
-
Alexandr Lyapunov authored
reverts commit 19343e71
-
- Aug 25, 2015
-
-
Alexandr Lyapunov authored
-
- Aug 19, 2015
-
-
Nick Zavaritsky authored
-
- Aug 04, 2015
-
-
Konstantin Osipov authored
Make box.slab.stats() output CALL compatible.
-
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()
-
- Jul 31, 2015
-
-
Konstantin Osipov authored
-
- Jul 29, 2015
-
-
Konstantin Osipov authored
Any function of Lua log module would first evaluate the call stack, and only then invoke the logger function -- even if the text is then sent to /dev/null because log level is too low. Short cut the log call in case the log level is low and the message is muted.
-
- Jul 28, 2015
-
-
Barabanov Anton authored
-
Barabanov Anton authored
-
- Jul 21, 2015
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
- Jul 20, 2015
-
-
Konstantin Osipov authored
-
- Jul 18, 2015
-
-
Konstantin Osipov authored
-
Konstantin Osipov authored
When selecting the next buffer to flush, take into account not just its size, but how much of it has already been flushed. This saves a couple syscalls per connection per event loop.
-
- Jul 16, 2015
-
-
Konstantin Osipov authored
Display how much memory is used by a fiber, and the total size.
-
- 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 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 08, 2015
-
-
Alexandr Lyapunov authored
*)added strnptr (str+len=>ptr) mhash instaniation into assoc lib
-
- Jul 07, 2015
-
-
Konstantin Osipov authored
Don't malloc(), this code should never be used for unbounded sizes.
-
Alexandr Lyapunov 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
-
-
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
-
Alexandr Lyapunov authored
-
- Jul 01, 2015
-
-
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 29, 2015
-
-
Konstantin Osipov authored
In case output is multiplexed, obuf_rollback_to_svp could roll back to a very early in the output buffer, since svp is taken before a possible yield. This is a regression introduced in the patch which removes iproto_port from Lua calls.
-
Konstantin Osipov authored
-
Konstantin Osipov authored
-
- Jun 26, 2015
-
-
Sulverus authored
Test case
-
- Jun 25, 2015
-
-
Roman Tsisyk authored
vclock_get() can return -1 in this case. Probably introduced by 311551f9
-
- Jun 24, 2015
-
-
Konstantin Osipov authored
Push a workaround for infinite loop in backtarce_foreach() when fiber == self: do not try to print trace of the current fiber.
-
- Jun 23, 2015
-
-
Konstantin Osipov authored
-
- Jun 15, 2015
-
-
Roman Tsisyk authored
-
Alexandr Lyapunov authored
*) fixed potentionally unsafe code: on memory fail there could be port->found > 0 and uninitialized port->svp
-
Alexandr Lyapunov authored
on memory fail there could be port->reply.found > 0 and uninitialized port->svp, that could lead to random error after svp restoration. *) possibly fixed OPENTAR-97
-
- Jun 09, 2015
-
-
Alexandr Lyapunov authored
*) added stress test for snapshotting *) moved finalizers.test.py to long_run
-
- Jun 05, 2015
-
-
bigbes authored
closes gh-856
-
- Jun 04, 2015
-
-
Mons Anderson authored
Rename global `fiber` into `fiber_ptr` (for use with gdb and avoidance of ambiguity with `struct fiber`)
-