You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: software/neoppod/instance-neo-input-schema.json
+44-1Lines changed: 44 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,49 @@
28
28
"description": "Master nodes in the cluster to backup.",
29
29
"type": "string"
30
30
},
31
+
"reflink": {
32
+
"description": "Track references between OIDs of an external ZODB.",
33
+
"additionalProperties": false,
34
+
"required": [
35
+
"zurl"
36
+
],
37
+
"properties": {
38
+
"zurl": {
39
+
"description": "ZODB to track.",
40
+
"type": "string"
41
+
},
42
+
"_ca": {
43
+
"type": "string"
44
+
},
45
+
"_cert": {
46
+
"type": "string"
47
+
},
48
+
"_key": {
49
+
"type": "string"
50
+
},
51
+
"max-txn-size": {
52
+
"description": "Maximum number of OIDs to delete per transaction.",
53
+
"default": 2097151,
54
+
"type": "integer"
55
+
},
56
+
"commit-interval": {
57
+
"description": "Commit every SECONDS of work.",
58
+
"default": 10,
59
+
"type": "integer"
60
+
},
61
+
"period": {
62
+
"description": "Age of the historical revision at which a GC is performed (this can be seen as a grace period). See --period option.",
63
+
"default": 86400,
64
+
"type": "integer"
65
+
},
66
+
"no-gc": {
67
+
"description": "Only track references.",
68
+
"default": false,
69
+
"type": "boolean"
70
+
},
71
+
},
72
+
"type": "object"
73
+
},
31
74
"monitor": {
32
75
"description": "Parameters for monitoring.",
33
76
"properties": {
@@ -124,7 +167,7 @@
124
167
"type": "array"
125
168
},
126
169
"storage-type": {
127
-
"description": "Storage type. Required when several types are configured and you select which one to use via 'node!' parameter. Defaults to whatever is configured ('sqlite' or 'mysql'), else MySQL if available, else SQLite.",
170
+
"description": "Storage type. Required when several types are configured and you select which one to use via 'node!' parameter. Defaults to whatever is configured ('sqlite' or 'mysql'), else MySQL if available, else SQLite. SQLite is recommended for a reflink DB.",
0 commit comments