-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new log effects type:
log_ext
that only reads any entries…
… that exists in the mem table and returns an opaque "read plan" that can be executed by any process on the same node by using the `ra_log_read_plan:execute/2` function. This PR also refactors follower effect filtering to be done in the ra_server_proc only in order to keep this logic in one place. Other minor refactorings and fixes and some improvements to effect documentation.
- Loading branch information
Showing
17 changed files
with
383 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
%% This Source Code Form is subject to the terms of the Mozilla Public | ||
%% License, v. 2.0. If a copy of the MPL was not distributed with this | ||
%% file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
%% | ||
%% Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries. | ||
%% | ||
-module(ra_log_read_plan). | ||
|
||
|
||
-export([execute/2, | ||
info/1]). | ||
|
||
-spec execute(ra_log:read_plan(), undefined | ra_flru:state()) -> | ||
{#{ra:index() => Command :: ra_server:command()}, ra_flru:state()}. | ||
execute(Plan, Flru) -> | ||
ra_log:execute_read_plan(Plan, Flru, fun ra_server:transform_for_partial_read/3). | ||
|
||
-spec info(ra_log:read_plan()) -> map(). | ||
info(Plan) -> | ||
ra_log:read_plan_info(Plan). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.