Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set fullsweep_after=0 on the writer process #167

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rabbitmq-oci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
- name: Configure Erlang
uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.15
otp-version: 27.0
elixir-version: 1.17
- name: make package-generic-unix
run: |
make package-generic-unix
Expand Down
1 change: 1 addition & 0 deletions src/osiris_writer.erl
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ handle_continue(#{name := Name,
when ?IS_STRING(Name) ->
process_flag(trap_exit, true),
process_flag(message_queue_data, off_heap),
process_flag(fullsweep_after, 0),
Log = osiris_log:init(Config),
%% reader context can only be cached _after_ log init as we need to ensure
%% there is at least 1 segment/index pair and also that the log has been
Expand Down
Loading