Random Generator Connector
Generates random records with a configurable size. Ideal for testing and health checks. The resulting text is placed on a 'payload' field.
Configuration
Example configuration in a seed:
{
"seed": {
"recordSize": 128,
"records": 1000000
},
"name": "Random Record Generator",
"type": "random-generator-connector",
"pipelineId": "9901132e-5b03-415e-9131-5443282dd0dd"
}
Configuration parameters:
recordSize
(Required, Integer) Max size of the record contents in characters. For instance, if maxRecordSize is 5, it will generate payloads like 'aaaaa', 'bbb' or 'cc'. Must be bigger than zero.
records
(Required, Integer) The number of records to generate.