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: docs/docs/References/Glossary.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,9 @@ For example, a MySQL plugin might provide an operation called "stop" which knows
78
78
## Provisioning
79
79
The process of making a virtual copy of a dataset and making it available for use on a target environment.
80
80
81
+
## Record Size
82
+
Delphix allows plugins to override the default record size for the linked source and virtual source datafiles. If the “recordSizeInKB” parameter is passed, it will be used to override the default record size and set the new record size for the respective dSources and empty VDBs. VDBs with parent will be inheriting the record size from their parent dSource or VDB. If the parameter is not passed, then default 8K record size will be set for the datafiles.
83
+
81
84
## Replication
82
85
Delphix allows end users to replicate data objects between Delphix Engines by creating a replication profile. Data objects that belong to a plugin can also be part of the replication profile. Refer to the [Delphix Engine Documentation](https://cd.delphix.com/docs/latest/) for more details.
Copy file name to clipboardExpand all lines: docs/docs/References/Schemas_and_Autogenerated_Classes.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,6 +122,20 @@ Defines properties used to identify [linked sources](Glossary.md#linked-source).
122
122
}
123
123
```
124
124
125
+
To set [record size](Glossary.md#record-size) for the datafiles of the linked source, pass the property "recordSizeInKB" in the [LinkedSourceDefinition Schema](#linkedsourcedefinition-schema). The value of the recordSizeInKB property must be an integer and power of 2 ranging from 1 to 16384. It will set the value of record size in KB. If this parameter is not passed, then default 8K record size will be set.
126
+
```json
127
+
{
128
+
"type": "object",
129
+
"required": ["name", "port"],
130
+
"additionalProperties": false,
131
+
"properties": {
132
+
"name": { "type": "string" },
133
+
"port": { "type": "integer" },
134
+
"recordSizeInKB": {"type": "integer"}
135
+
}
136
+
}
137
+
```
138
+
125
139
### LinkedSourceDefinition Class
126
140
127
141
Autogenerated based on the [LinkedSourceDefinition Schema](#linkedsourcedefinition-schema).
@@ -164,6 +178,20 @@ Defines properties used to identify [virtual sources](Glossary.md#virtual-source
164
178
}
165
179
```
166
180
181
+
To set [record size](Glossary.md#record-size) for the datafiles of the empty VDB, pass the property "recordSizeInKB" in the [VirtualSourceDefinition Schema](#virtualsourcedefinition-schema). The value of the recordSizeInKB property must be an integer and power of 2 ranging from 1 to 16384. It will set the value of record size in KB. If this parameter is not passed, then default 8K record size will be set. VDB with parent source will inherit the record size value from its parent dSource or VDB.
182
+
```json
183
+
{
184
+
"type": "object",
185
+
"required": ["name", "port"],
186
+
"additionalProperties": false,
187
+
"properties": {
188
+
"name": { "type": "string" },
189
+
"port": { "type": "integer" },
190
+
"recordSizeInKB": {"type": "integer"}
191
+
}
192
+
}
193
+
```
194
+
167
195
### VirtualSourceDefinition Class
168
196
169
197
Autogenerated based on the [VirtualSourceDefinition Schema](#virtualsourcedefinition-schema).
0 commit comments