This how-to shows you how to generate data from a list of values at random data with the column histogram generator.
Tip: The random column generator can also generate all primary data type (number, date, string) at random. See How to generate random data
To generate data, you need to create a generator file that will describe the data to be generated.
The below data resource generator:
The two buckets columns (buckets_map and buckets_list) are equivalent.
They defines the buckets as being:
MaxRecordCount: 10
Columns:
- name: id
type: integer
comment: A id column to see easily the number of values generated
DataGenerator:
type: sequence
- name: bucket_map
type: varchar
comment: A column with a random color generator and a map of values with the chance factor
DataGenerator:
type: histogram
Buckets:
blue: 1
red: 1
green: 1
- name: bucket_list
type: varchar
comment: A column with a random color generator and a list of values
DataGenerator:
type: histogram
Buckets:
- blue
- red
- green
With the data print command, we can print the 30 values generated.
Because a generator is just a data resource, you can use it in every data operation.