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

WIP: refactor file backend to use multiple logs per target #52

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion examples/bake-server-daemon-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"pipeline_multiplier":4,
"file_backend":{
"targets":[
"/dev/shm/file.dat"
"/dev/shm/file-target1"
],
"directio":true,
"sync":true,
Expand Down
2 changes: 1 addition & 1 deletion include/bake.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ typedef struct {
/**
* Persistent, opaque identifier for a region within a BAKE target.
*/
#define BAKE_REGION_ID_DATA_SIZE 16
#define BAKE_REGION_ID_DATA_SIZE 24
typedef struct {
uint32_t type;
char data[BAKE_REGION_ID_DATA_SIZE];
Expand Down
Loading