-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle file refs better, add startup logic
- Loading branch information
Showing
5 changed files
with
134 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package pyramid | ||
|
||
// Params is pyramid.FS params that are identical for all file-systems | ||
// in a single lakeFS instance. | ||
type Params struct { | ||
// AllocatedSize is the disk size in bytes that lakeFS is allowed to use. | ||
AllocatedSize int64 | ||
|
||
// BaseDir is the local directory where lakeFS app is storing the files. | ||
BaseDir string | ||
|
||
// BlockStoragePrefix is the prefix prepended to lakeFS metadata files in | ||
// the blockstore. | ||
BlockStoragePrefix string | ||
} |
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