Merge pull request #12440 from thalesmg/ds-fix-egress-startup-m-20240131

fix(ds): reduce egress start flakiness
This commit is contained in:
Thales Macedo Garitezi 2024-01-31 17:47:35 -03:00 committed by GitHub
commit 06f9d762cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 18 additions and 11 deletions

View File

@ -23,6 +23,7 @@
%% Management API:
-export([
base_dir/0,
open_db/2,
update_db_config/2,
add_generation/1,
@ -71,6 +72,8 @@
%% Type declarations
%%================================================================================
-define(APP, emqx_durable_storage).
-type db() :: atom().
%% Parsed topic.
@ -189,6 +192,10 @@
%% API funcions
%%================================================================================
-spec base_dir() -> file:filename().
base_dir() ->
application:get_env(?APP, db_data_dir, emqx:data_dir()).
%% @doc Different DBs are completely independent from each other. They
%% could represent something like different tenants.
-spec open_db(db(), create_db_opts()) -> ok.

View File

@ -417,7 +417,7 @@ ensure_tables() ->
ok = mria:wait_for_tables([?META_TAB, ?NODE_TAB, ?SHARD_TAB]).
ensure_site() ->
Filename = filename:join(emqx:data_dir(), "emqx_ds_builtin_site.eterm"),
Filename = filename:join(emqx_ds:base_dir(), "emqx_ds_builtin_site.eterm"),
case file:consult(Filename) of
{ok, [Site]} ->
ok;

View File

@ -52,7 +52,6 @@
-include_lib("snabbkaffe/include/snabbkaffe.hrl").
-define(APP, emqx_durable_storage).
-define(REF(ShardId), {via, gproc, {n, l, {?MODULE, ShardId}}}).
%%================================================================================
@ -608,11 +607,7 @@ rocksdb_open(Shard, Options) ->
-spec db_dir(shard_id()) -> file:filename().
db_dir({DB, ShardId}) ->
filename:join([base_dir(), atom_to_list(DB), binary_to_list(ShardId)]).
-spec base_dir() -> file:filename().
base_dir() ->
application:get_env(?APP, db_data_dir, emqx:data_dir()).
filename:join([emqx_ds:base_dir(), atom_to_list(DB), binary_to_list(ShardId)]).
-spec update_last_until(Schema, emqx_ds:time()) -> Schema when Schema :: shard_schema() | shard().
update_last_until(Schema, Until) ->

View File

@ -406,11 +406,16 @@ all() -> emqx_common_test_helpers:all(?MODULE).
suite() -> [{timetrap, {seconds, 20}}].
init_per_suite(Config) ->
{ok, _} = application:ensure_all_started(emqx_durable_storage),
Config.
Apps = emqx_cth_suite:start(
[emqx_durable_storage],
#{work_dir => emqx_cth_suite:work_dir(Config)}
),
[{apps, Apps} | Config].
end_per_suite(_Config) ->
ok = application:stop(emqx_durable_storage).
end_per_suite(Config) ->
Apps = ?config(apps, Config),
ok = emqx_cth_suite:stop(Apps),
ok.
init_per_testcase(TC, Config) ->
ok = emqx_ds:open_db(TC, ?DEFAULT_CONFIG),