Merge remote-tracking branch 'origin/master' into gsb-async-nifs2
Conflicts: c_src/wterl.c src/riak_kv_wterl_backend.erl src/wterl.erl
This commit is contained in:
commit
6aa51437cc
8 changed files with 524 additions and 899 deletions
|
@ -3,6 +3,7 @@
|
|||
set -e
|
||||
|
||||
WT_BRANCH=basho
|
||||
WT_REMOTE_REPO=http://github.com/wiredtiger/wiredtiger.git
|
||||
|
||||
[ `basename $PWD` != "c_src" ] && cd c_src
|
||||
|
||||
|
@ -21,12 +22,19 @@ case "$1" in
|
|||
git fetch && \
|
||||
git merge origin/$WT_BRANCH)
|
||||
else
|
||||
git clone http://github.com/wiredtiger/wiredtiger.git -b $WT_BRANCH && \
|
||||
(cd wiredtiger && ./autogen.sh)
|
||||
git clone -b $WT_BRANCH --single-branch $WT_REMOTE_REPO && \
|
||||
(cd wiredtiger && \
|
||||
patch -p1 < ../wiredtiger-extension-link.patch && \
|
||||
./autogen.sh)
|
||||
fi
|
||||
(cd wiredtiger/build_posix && \
|
||||
../configure --with-pic \
|
||||
--enable-snappy \
|
||||
--enable-bzip2 \
|
||||
--prefix=$BASEDIR/system && \
|
||||
make -j 8 && make install)
|
||||
make -j && make install)
|
||||
[ -d $BASEDIR/../priv ] || mkdir $BASEDIR/../priv
|
||||
cp $BASEDIR/system/bin/wt $BASEDIR/../priv
|
||||
cp $BASEDIR/system/lib/*.so $BASEDIR/../priv
|
||||
;;
|
||||
esac
|
||||
|
|
22
c_src/wiredtiger-extension-link.patch
Normal file
22
c_src/wiredtiger-extension-link.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
diff --git a/ext/compressors/bzip2/Makefile.am b/ext/compressors/bzip2/Makefile.am
|
||||
index 0aedc2e..1cc4cf6 100644
|
||||
--- a/ext/compressors/bzip2/Makefile.am
|
||||
+++ b/ext/compressors/bzip2/Makefile.am
|
||||
@@ -2,5 +2,5 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)/src/include
|
||||
|
||||
lib_LTLIBRARIES = libwiredtiger_bzip2.la
|
||||
libwiredtiger_bzip2_la_SOURCES = bzip2_compress.c
|
||||
-libwiredtiger_bzip2_la_LDFLAGS = -avoid-version -module
|
||||
+libwiredtiger_bzip2_la_LDFLAGS = -avoid-version -module -Wl,-rpath,lib/wterl/priv:priv:/usr/local/lib
|
||||
libwiredtiger_bzip2_la_LIBADD = -lbz2
|
||||
diff --git a/ext/compressors/snappy/Makefile.am b/ext/compressors/snappy/Makefile.am
|
||||
index 6d78823..7d35777 100644
|
||||
--- a/ext/compressors/snappy/Makefile.am
|
||||
+++ b/ext/compressors/snappy/Makefile.am
|
||||
@@ -2,5 +2,5 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)/src/include
|
||||
|
||||
lib_LTLIBRARIES = libwiredtiger_snappy.la
|
||||
libwiredtiger_snappy_la_SOURCES = snappy_compress.c
|
||||
-libwiredtiger_snappy_la_LDFLAGS = -avoid-version -module
|
||||
+libwiredtiger_snappy_la_LDFLAGS = -avoid-version -module -Wl,-rpath,lib/wterl/priv:priv:/usr/local/lib
|
||||
libwiredtiger_snappy_la_LIBADD = -lsnappy
|
1005
c_src/wterl.c
1005
c_src/wterl.c
File diff suppressed because it is too large
Load diff
|
@ -35,7 +35,7 @@ fi
|
|||
rebar get-deps
|
||||
|
||||
file=./deps/riak_kv/src/riak_kv.app.src
|
||||
if ! grep -q hanoidb $file && ! grep -q wterl $file ; then
|
||||
if ! grep -q wterl $file ; then
|
||||
echo
|
||||
echo "Modifying $file, saving the original as ${file}.orig ..."
|
||||
perl -i.orig -pe '/\bos_mon,/ && print qq( wterl,\n)' $file
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
{port_env, [
|
||||
{"DRV_CFLAGS", "$DRV_CFLAGS -Werror -I c_src/system/include"},
|
||||
{"DRV_LDFLAGS", "$DRV_LDFLAGS c_src/system/lib/libwiredtiger.a"}
|
||||
{"DRV_LDFLAGS", "$DRV_LDFLAGS -Wl,-rpath,lib/wterl/priv:priv -Lpriv -lwiredtiger"}
|
||||
]}.
|
||||
|
||||
{pre_hooks, [{compile, "c_src/build_deps.sh"}]}.
|
||||
|
|
|
@ -85,7 +85,6 @@ capabilities(_, _) ->
|
|||
%% @doc Start the wterl backend
|
||||
-spec start(integer(), config()) -> {ok, state()} | {error, term()}.
|
||||
start(Partition, Config) ->
|
||||
lager:start(),
|
||||
AppStart =
|
||||
case application:start(wterl) of
|
||||
ok ->
|
||||
|
@ -109,7 +108,8 @@ start(Partition, Config) ->
|
|||
%% @doc Stop the wterl backend
|
||||
-spec stop(state()) -> ok.
|
||||
stop(#state{passes=Passes}) ->
|
||||
lists:foreach(fun({Session, Cursor}) ->
|
||||
lists:foreach(fun(Elem) ->
|
||||
{Session, Cursor} = Elem,
|
||||
ok = wterl:cursor_close(Cursor),
|
||||
ok = wterl:session_close(Session)
|
||||
end, Passes),
|
||||
|
@ -327,6 +327,14 @@ callback(_Ref, _Msg, State) ->
|
|||
%% Internal functions
|
||||
%% ===================================================================
|
||||
|
||||
max_sessions(Config) ->
|
||||
RingSize =
|
||||
case app_helper:get_prop_or_env(ring_creation_size, Config, riak_core) of
|
||||
undefined -> 1024;
|
||||
Size -> Size
|
||||
end,
|
||||
2 * (RingSize * erlang:system_info(schedulers)).
|
||||
|
||||
%% @private
|
||||
establish_connection(Config) ->
|
||||
%% Get the data root directory
|
||||
|
@ -336,28 +344,23 @@ establish_connection(Config) ->
|
|||
{error, data_root_unset};
|
||||
DataRoot ->
|
||||
ok = filelib:ensure_dir(filename:join(DataRoot, "x")),
|
||||
SessionMax =
|
||||
case app_helper:get_prop_or_env(ring_creation_size, Config, riak_core) of
|
||||
undefined -> 1024;
|
||||
RingSize when RingSize < 512 -> 1024;
|
||||
RingSize -> RingSize * 2
|
||||
end,
|
||||
RequestedCacheSize = app_helper:get_prop_or_env(cache_size, Config, wterl),
|
||||
Opts = orddict:from_list(
|
||||
Opts =
|
||||
orddict:from_list(
|
||||
[ wterl:config_value(create, Config, true),
|
||||
wterl:config_value(sync, Config, false),
|
||||
wterl:config_value(logging, Config, true),
|
||||
wterl:config_value(transactional, Config, true),
|
||||
wterl:config_value(session_max, Config, SessionMax),
|
||||
wterl:config_value(session_max, Config, max_sessions(Config)),
|
||||
wterl:config_value(cache_size, Config, size_cache(RequestedCacheSize)),
|
||||
wterl:config_value(statistics_log, Config, [{wait, 30}]), % sec
|
||||
%% NOTE: LSM auto-checkpoints, so we don't have too.
|
||||
%% wterl:config_value(checkpoint, Config, [{wait, 10}]), % sec
|
||||
wterl:config_value(verbose, Config, [
|
||||
%"ckpt" "block", "shared_cache", "evictserver", "fileops",
|
||||
%"hazard", "mutex", "read", "readserver", "reconcile",
|
||||
%"salvage", "verify", "write", "evict", "lsm"
|
||||
])
|
||||
] ++ proplists:get_value(wterl, Config, [])), % sec
|
||||
lager:info("WiredTiger connection:open(~s, ~s)", [DataRoot, wterl:config_to_bin(Opts)]),
|
||||
]) ] ++ proplists:get_value(wterl, Config, [])), % sec
|
||||
case wterl_conn:open(DataRoot, Opts) of
|
||||
{ok, Connection} ->
|
||||
{ok, Connection};
|
||||
|
@ -369,31 +372,26 @@ establish_connection(Config) ->
|
|||
|
||||
establish_passes(Count, Connection, Table)
|
||||
when is_number(Count), Count > 0 ->
|
||||
establish_passes(Count, Connection, Table, []).
|
||||
|
||||
establish_passes(Count, Connection, Table, Acc)
|
||||
when Count > 0 ->
|
||||
case Count > 1 of
|
||||
true ->
|
||||
lists:map(fun(_Elem) ->
|
||||
{ok, Session} = establish_session(Connection, Table),
|
||||
{ok, Cursor} = wterl:cursor_open(Session, Table),
|
||||
[{Session, Cursor} | establish_passes(Count - 1, Connection, Table, Acc)];
|
||||
false ->
|
||||
Acc
|
||||
end.
|
||||
{Session, Cursor}
|
||||
end, lists:seq(1, Count)).
|
||||
|
||||
%% @private
|
||||
establish_session(Connection, Table) ->
|
||||
case wterl:session_open(Connection, wterl:config_to_bin([{isolation, "snapshot"}])) of
|
||||
{ok, Session} ->
|
||||
SessionOpts =
|
||||
[%TODO {block_compressor, "snappy"},
|
||||
[{block_compressor, "snappy"},
|
||||
{internal_page_max, "128K"},
|
||||
{leaf_page_max, "128K"},
|
||||
{lsm_chunk_size, "200MB"},
|
||||
{lsm_chunk_size, "25MB"},
|
||||
{lsm_bloom_newest, true},
|
||||
{lsm_bloom_oldest, true} ,
|
||||
{lsm_bloom_config, [{leaf_page_max, "10MB"}]} ],
|
||||
{lsm_bloom_bit_count, 128},
|
||||
{lsm_bloom_hash_count, 64},
|
||||
{lsm_bloom_config, [{leaf_page_max, "8MB"}]} ],
|
||||
case wterl:session_create(Session, Table, wterl:config_to_bin(SessionOpts)) of
|
||||
ok ->
|
||||
{ok, Session};
|
||||
|
@ -551,7 +549,6 @@ size_cache(RequestedSize) ->
|
|||
"1GB"
|
||||
end,
|
||||
application:set_env(wterl, cache_size, FinalGuess),
|
||||
lager:info("Using cache size of ~p for WiredTiger storage backend.", [FinalGuess]),
|
||||
FinalGuess;
|
||||
Value when is_list(Value) ->
|
||||
Value;
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
%%
|
||||
%% -------------------------------------------------------------------
|
||||
-module(wterl).
|
||||
-export([conn_open/2,
|
||||
conn_close/1,
|
||||
-export([connection_open/2,
|
||||
connection_close/1,
|
||||
cursor_close/1,
|
||||
cursor_insert/3,
|
||||
cursor_next/1,
|
||||
|
@ -60,6 +60,7 @@
|
|||
session_verify/3,
|
||||
config_value/3,
|
||||
config_to_bin/1,
|
||||
priv_dir/0,
|
||||
fold_keys/3,
|
||||
fold/3]).
|
||||
|
||||
|
@ -94,15 +95,22 @@ nif_stub_error(Line) ->
|
|||
|
||||
-spec init() -> ok | {error, any()}.
|
||||
init() ->
|
||||
PrivDir = case code:priv_dir(?MODULE) of
|
||||
{error, bad_name} ->
|
||||
EbinDir = filename:dirname(code:which(?MODULE)),
|
||||
AppPath = filename:dirname(EbinDir),
|
||||
filename:join(AppPath, "priv");
|
||||
Path ->
|
||||
Path
|
||||
end,
|
||||
erlang:load_nif(filename:join(PrivDir, atom_to_list(?MODULE)), 0).
|
||||
erlang:load_nif(filename:join(priv_dir(), atom_to_list(?MODULE)), 0).
|
||||
|
||||
-spec connection_open(string(), config()) -> {ok, connection()} | {error, term()}.
|
||||
connection_open(HomeDir, Config) ->
|
||||
PrivDir = wterl:priv_dir(),
|
||||
{ok, PrivFiles} = file:list_dir(PrivDir),
|
||||
SoFiles =
|
||||
lists:filter(fun(Elem) ->
|
||||
case re:run(Elem, "^libwiredtiger_.*\.so$") of
|
||||
{match, _} -> true;
|
||||
nomatch -> false
|
||||
end
|
||||
end, PrivFiles),
|
||||
SoPaths = lists:map(fun(Elem) -> filename:join(PrivDir, Elem) end, SoFiles),
|
||||
Bin = config_to_bin([{extensions, SoPaths}], [<<",">>, Config]),
|
||||
conn_open(HomeDir, Bin).
|
||||
|
||||
-spec conn_open(string(), config()) -> {ok, connection()} | {error, term()}.
|
||||
conn_open(HomeDir, Config) ->
|
||||
|
@ -383,11 +391,21 @@ fold(_Cursor, _Fun, Acc, not_found) ->
|
|||
fold(Cursor, Fun, Acc, {ok, Key, Value}) ->
|
||||
fold(Cursor, Fun, Fun({Key, Value}, Acc), cursor_next(Cursor)).
|
||||
|
||||
priv_dir() ->
|
||||
case code:priv_dir(?MODULE) of
|
||||
{error, bad_name} ->
|
||||
EbinDir = filename:dirname(code:which(?MODULE)),
|
||||
AppPath = filename:dirname(EbinDir),
|
||||
filename:join(AppPath, "priv");
|
||||
Path ->
|
||||
Path
|
||||
end.
|
||||
|
||||
%%
|
||||
%% Configuration type information.
|
||||
%%
|
||||
config_types() ->
|
||||
[{block_compressor, string},
|
||||
[{block_compressor, {string, quoted}},
|
||||
{cache_size, string},
|
||||
{checkpoint, config},
|
||||
{create, bool},
|
||||
|
@ -396,7 +414,7 @@ config_types() ->
|
|||
{error_prefix, string},
|
||||
{eviction_target, integer},
|
||||
{eviction_trigger, integer},
|
||||
{extensions, string},
|
||||
{extensions, {list, quoted}},
|
||||
{force, bool},
|
||||
{hazard_max, integer},
|
||||
{home_environment, bool},
|
||||
|
@ -437,8 +455,13 @@ config_encode(config, Value) ->
|
|||
list_to_binary(["(", config_to_bin(Value, []), ")"]);
|
||||
config_encode(list, Value) ->
|
||||
list_to_binary(["(", string:join(Value, ","), ")"]);
|
||||
config_encode({list, quoted}, Value) ->
|
||||
Values = lists:map(fun(S) -> "\"" ++ S ++ "\"" end, Value),
|
||||
list_to_binary(["(", string:join(Values, ","), ")"]);
|
||||
config_encode(string, Value) when is_list(Value) ->
|
||||
list_to_binary(Value);
|
||||
config_encode({string, quoted}, Value) when is_list(Value) ->
|
||||
list_to_binary("\"" ++ Value ++ "\"");
|
||||
config_encode(string, Value) when is_number(Value) ->
|
||||
list_to_binary(integer_to_list(Value));
|
||||
config_encode(bool, true) ->
|
||||
|
@ -493,18 +516,18 @@ open_test_conn(DataDir) ->
|
|||
?cmd("rm -rf "++DataDir),
|
||||
?assertMatch(ok, filelib:ensure_dir(filename:join(DataDir, "x"))),
|
||||
OpenConfig = config_to_bin([{create,true},{cache_size,"100MB"}]),
|
||||
{ok, ConnRef} = conn_open(DataDir, OpenConfig),
|
||||
{ok, ConnRef} = connection_open(DataDir, OpenConfig),
|
||||
ConnRef.
|
||||
|
||||
open_test_session(ConnRef) ->
|
||||
{ok, SRef} = session_open(ConnRef),
|
||||
?assertMatch(ok, session_drop(SRef, "table:test", config_to_bin([{force,true}]))),
|
||||
?assertMatch(ok, session_create(SRef, "table:test")),
|
||||
?assertMatch(ok, session_create(SRef, "table:test", config_to_bin([{block_compressor, "snappy"}]))),
|
||||
SRef.
|
||||
|
||||
conn_test() ->
|
||||
ConnRef = open_test_conn(?TEST_DATA_DIR),
|
||||
?assertMatch(ok, conn_close(ConnRef)).
|
||||
?assertMatch(ok, connection_close(ConnRef)).
|
||||
|
||||
session_test_() ->
|
||||
{setup,
|
||||
|
@ -512,7 +535,7 @@ session_test_() ->
|
|||
open_test_conn(?TEST_DATA_DIR)
|
||||
end,
|
||||
fun(ConnRef) ->
|
||||
ok = conn_close(ConnRef)
|
||||
ok = connection_close(ConnRef)
|
||||
end,
|
||||
fun(ConnRef) ->
|
||||
{inorder,
|
||||
|
@ -537,7 +560,7 @@ insert_delete_test() ->
|
|||
?assertMatch(ok, session_delete(SRef, "table:test", <<"a">>)),
|
||||
?assertMatch(not_found, session_get(SRef, "table:test", <<"a">>)),
|
||||
ok = session_close(SRef),
|
||||
ok = conn_close(ConnRef).
|
||||
ok = connection_close(ConnRef).
|
||||
|
||||
init_test_table() ->
|
||||
ConnRef = open_test_conn(?TEST_DATA_DIR),
|
||||
|
@ -551,7 +574,7 @@ init_test_table() ->
|
|||
|
||||
stop_test_table({ConnRef, SRef}) ->
|
||||
?assertMatch(ok, session_close(SRef)),
|
||||
?assertMatch(ok, conn_close(ConnRef)).
|
||||
?assertMatch(ok, connection_close(ConnRef)).
|
||||
|
||||
various_session_test_() ->
|
||||
{setup,
|
||||
|
@ -763,7 +786,7 @@ prop_put_delete() ->
|
|||
?cmd("rm -rf "++DataDir),
|
||||
ok = filelib:ensure_dir(filename:join(DataDir, "x")),
|
||||
Cfg = wterl:config_to_bin([{create,true}]),
|
||||
{ok, Conn} = wterl:conn_open(DataDir, Cfg),
|
||||
{ok, Conn} = wterl:connection_open(DataDir, Cfg),
|
||||
{ok, SRef} = wterl:session_open(Conn),
|
||||
try
|
||||
wterl:session_create(SRef, Table),
|
||||
|
@ -779,7 +802,7 @@ prop_put_delete() ->
|
|||
true
|
||||
after
|
||||
wterl:session_close(SRef),
|
||||
wterl:conn_close(Conn)
|
||||
wterl:connection_close(Conn)
|
||||
end
|
||||
end)).
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ init([]) ->
|
|||
|
||||
handle_call({open, Dir, Config, Caller}, _From, #state{conn=undefined}=State) ->
|
||||
{Reply, NState} =
|
||||
case wterl:conn_open(Dir, wterl:config_to_bin(Config)) of
|
||||
case wterl:connection_open(Dir, wterl:config_to_bin(Config)) of
|
||||
{ok, ConnRef}=OK ->
|
||||
Monitor = erlang:monitor(process, Caller),
|
||||
true = ets:insert(wterl_ets, {Monitor, Caller}),
|
||||
|
@ -164,7 +164,7 @@ code_change(_OldVsn, State, _Extra) ->
|
|||
do_close(undefined) ->
|
||||
ok;
|
||||
do_close(ConnRef) ->
|
||||
wterl:conn_close(ConnRef).
|
||||
wterl:connection_close(ConnRef).
|
||||
|
||||
|
||||
-ifdef(TEST).
|
||||
|
|
Loading…
Reference in a new issue