-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
99 changed files
with
7,473 additions
and
3,732 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
--- | ||
AccessModifierOffset: '-4' | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveBitFields: AcrossEmptyLinesAndComments | ||
AlignConsecutiveMacros: 'true' | ||
AlignConsecutiveAssignments: 'false' | ||
AlignConsecutiveDeclarations: 'false' | ||
AlignEscapedNewlines: DontAlign | ||
AlignOperands: AlignAfterOperator | ||
AlignTrailingComments: 'true' | ||
AllowAllArgumentsOnNextLine: 'true' | ||
AllowAllConstructorInitializersOnNextLine: 'false' | ||
AllowAllParametersOfDeclarationOnNextLine: 'true' | ||
AllowShortBlocksOnASingleLine: 'false' | ||
AllowShortCaseLabelsOnASingleLine: 'false' | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLambdasOnASingleLine: None | ||
AllowShortLoopsOnASingleLine: 'false' | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: 'true' | ||
AlwaysBreakTemplateDeclarations: 'Yes' | ||
BinPackArguments: 'false' | ||
BinPackParameters: 'false' | ||
BreakAfterJavaFieldAnnotations: 'true' | ||
BreakBeforeBinaryOperators: NonAssignment | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterCaseLabel: 'true' | ||
AfterClass: 'false' | ||
AfterControlStatement: Never | ||
AfterEnum: 'false' | ||
AfterFunction: 'false' | ||
AfterNamespace: 'false' | ||
AfterStruct: 'false' | ||
AfterUnion: 'false' | ||
AfterExternBlock: 'false' | ||
BeforeCatch: 'false' | ||
BeforeElse: 'false' | ||
BeforeLambdaBody: 'false' | ||
BeforeWhile: 'false' | ||
BreakBeforeTernaryOperators: 'true' | ||
BreakConstructorInitializers: BeforeComma | ||
BreakInheritanceList: BeforeComma | ||
BreakStringLiterals: 'false' | ||
ColumnLimit: '100' | ||
CompactNamespaces: 'false' | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' | ||
Cpp11BracedListStyle: 'false' | ||
EmptyLineBeforeAccessModifier: Never | ||
FixNamespaceComments: 'true' | ||
IncludeBlocks: Regroup | ||
IndentCaseLabels: 'true' | ||
IndentExternBlock: Indent | ||
IndentPPDirectives: AfterHash | ||
IndentWidth: '4' | ||
JavaScriptQuotes: Leave | ||
JavaScriptWrapImports: 'true' | ||
KeepEmptyLinesAtTheStartOfBlocks: 'false' | ||
Language: Cpp | ||
MaxEmptyLinesToKeep: '1' | ||
NamespaceIndentation: All | ||
PointerAlignment: Right | ||
ReflowComments: 'true' | ||
SortIncludes: 'true' | ||
SortUsingDeclarations: 'true' | ||
SpaceAfterCStyleCast: 'false' | ||
SpaceAfterLogicalNot: 'false' | ||
SpaceAfterTemplateKeyword: 'false' | ||
SpaceBeforeAssignmentOperators: 'true' | ||
SpaceBeforeCpp11BracedList: 'false' | ||
SpaceBeforeCtorInitializerColon: 'true' | ||
SpaceBeforeInheritanceColon: 'true' | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: 'true' | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesBeforeTrailingComments: '1' | ||
SpacesInAngles: 'false' | ||
SpacesInCStyleCastParentheses: 'false' | ||
SpacesInContainerLiterals: 'false' | ||
SpacesInParentheses: 'false' | ||
SpacesInSquareBrackets: 'false' | ||
Standard: Cpp11 | ||
TabWidth: '4' | ||
UseTab: ForContinuationAndIndentation | ||
|
||
... |
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,35 @@ | ||
name: Publish Docs | ||
|
||
# Trigger this when a pull request is merged (which implies pushing to master). | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
api-doc: | ||
runs-on: self-hosted | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v2 | ||
- name: Create clean gh-pages branch | ||
run: git checkout -b gh-pages | ||
- name: Generate autodocs | ||
run: | | ||
make clean-docs | ||
make docs | ||
- name: Copy homepage | ||
run: cp doc/index.md index.md | ||
- name: Add generated autodocs to Git repo in the gh-pages branch | ||
run: | | ||
export HOME=/root | ||
git add dev-doc index.md -f | ||
git commit -am "Generated API doc" | ||
git push -f origin gh-pages:gh-pages | ||
- name: Result URLs | ||
run: | | ||
REPO_OWNER=$(echo $GITHUB_REPOSITORY | cut -d '/' -f 1) | ||
REPO_NAME=$(echo $GITHUB_REPOSITORY | cut -d '/' -f 2) | ||
echo "Formatted dev docs: https://$REPO_OWNER.github.io/$REPO_NAME/dev-doc" | ||
echo "" | ||
echo "GitHub pages branch: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/tree/gh-pages" |
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 |
---|---|---|
|
@@ -46,3 +46,10 @@ dist | |
|
||
# tests | ||
test_db | ||
|
||
# code | ||
.vscode/ | ||
.ccls-cache/ | ||
|
||
# doxygen | ||
dev-doc/ |
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,3 @@ | ||
[submodule "src/rocksdb"] | ||
path = src/rocksdb | ||
url = https://github.com/facebook/rocksdb.git |
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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
## Autotier 1.1.6-3 | ||
## Autotier 1.2.0-1 | ||
|
||
* Add postinst script to add autotier group | ||
* Switch from unique config parser class to lib45d ConfigParser. | ||
* Use lib45d Bytes and Quota classes to clean up math while tiering. | ||
* Make CLI commands more reliable with lib45d Unix domain socket classes in place of FIFOs. | ||
* Fixed bug where statfs() improperly reported fs size and usage. | ||
* Fix deadlock issue while tiering files. | ||
* Overhauled tiering algorithm to better fill high priority tiers. | ||
* Fixed reporting in statfs() and df. | ||
* Made file creation and opening more reliable. | ||
* Tiering triggered by being over quota in release() now happens asynchronously. | ||
* Accounts for files being opened by more than one process while preventing movement across tiers. | ||
* Fix abort on unmount from rocksdb being opened in main thread by deferring opening to fuse init method. |
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.