Skip to content
Snippets Groups Projects
Commit 006c2fc1 authored by bigbes's avatar bigbes
Browse files

Update example.lua

Conforming changes to gh-1334, change wal size to 5 millions, arena size to 0.5 GB and give ability for user 'guest' to read/write into 'example' space.
parent 7807ee78
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ box.cfg {
-- How much memory Tarantool allocates
-- to actually store tuples, in gigabytes
slab_alloc_arena = 1.0;
slab_alloc_arena = 0.5;
-- Size of the smallest allocation unit
-- It can be tuned up if most of the tuples are not so small
......@@ -103,7 +103,7 @@ box.cfg {
panic_on_wal_error = true;
-- How many log records to store in a single write-ahead log file
rows_per_wal = 500000;
rows_per_wal = 5000000;
-- Reduce the throttling effect of box.snapshot() on
-- INSERT/UPDATE/DELETE performance by setting a limit
......@@ -171,14 +171,13 @@ box.cfg {
local function bootstrap()
local space = box.schema.create_space('example')
space:create_index('primary')
-- -- Uncomment this if you don't need grants
-- box.schema.user.grant('guest', 'read,write,execute', 'universe')
-- Comment this if you don't need grants
box.schema.user.grant('guest', 'read,write', 'space', 'example')
-- -- Keep things safe by default
-- box.schema.user.create('example', { password = 'secret' })
-- box.schema.user.grant('example', 'replication')
-- box.schema.user.grant('example', 'read,write,execute', 'space', 'example')
--
-- Keep things safe by default
-- box.schema.user.create('example', { password = 'secret' })
-- box.schema.user.grant('example', 'replication')
-- box.schema.user.grant('example', 'read,write,execute', 'space', 'example')
end
-- for first run create a space and add set up grants
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment