** Forked from https://github.com/codingconcepts/datagen **
If you need to generate a lot of random data for your database tables but don't want to spend hours configuring a custom tool for the job, then datagen
could work for you.
datagen
takes its instructions from a configuration file. These configuration files can execute any number of SQL queries, taking advantage of multi-row DML for fast inserts and Go's text/template language is used to acheive this.
go get -u github.com/ejdem86/datagen
See the examples directory for a CockroachDB example that works using the make example
command. When running the executable, use the following syntax:
datagen -script script.sql --driver postgres --conn postgres://root@localhost:26257/sandbox?sslmode=disable
datagen
accepts the following arguments:
Flag | Description |
---|---|
-conn |
The full database connection string (enclosed in quotes) |
-driver |
The name of the database driver to use [postgres, mysql] |
-script |
The full path to the script file to use (enclosed in quotes) |
-datefmt |
(optional) time.Time format string that determines the format of all database and template dates. Defaults to "2006-01-02" |
Object | Description |
---|---|
Block | A block of text within a configuration file that performs a series of operations against a database. |
Script | A script is a text file that contains a number of blocks. |
datagen
uses Go's text/template engine where possible but where it's not possible to use that, it parses and makes use of comments. The following comments provide instructions to datagen
during block parsing.
Comment | Description |
---|---|
-- REPEAT N |
Repeat the block that directly follows the comment N times. If this comment isn't provided, a block will be executed once. Consider this when using the .times_* helpers to insert a large amount of data. For example -- REPEAT 100 when used in conjunction with .times_1000 will result in 100,0000 rows being inserted using multi-row DML syntax as per the examples. |
-- NAME |
Assigns a given name to the block that directly follows the comment, allowing specific rows from blocks to be referenced and not muddled with others. If this comment isn't provided, no distinction will be made between same-name columns from different tables, so issues will likely arise (e.g. owner.id and pet.id in the examples). Only omit this for single-block configurations. |
-- EOF |
Causing block parsing to stop, essentially simulating the natural end-of-file. If this comment isn't provided, the parse will parse all blocks in the script. |
Generates a random string between a given minimum and maximum length with an optional prefix:
'{{string 5 10 "l-" "abcABC"}}'
string
the name of the function
5
the minimum string length including any prefix
10
the maximum string length including any prefix
"l-"
the prefix
"abcABC"
(optional) the set of characters to select from
Note that the apostrophes will wrap the string, turning it into a database string.
Generates a formatted string using placeholder syntax:
'{{stringf "%s.%[email protected]" 5 10 "abc" 10000 20000}}',
stringf
the name of the function
"%s.%[email protected]"
the format string
5
the minimum string length for the first string placeholder
10
the minimum string length for the first string placeholder
"abc"
the characters to use for the first string placeholder (leave blank to use defaults)
10000
the minimum value for the integer placeholder
20000
the minimum value for the integer placeholder
Note that at present only the following verbs are supported:
- %s - a string
- %d - an integer
Generates a random 64 bit integer between a minimum and maximum value.
{{int 5 10}}
int
the name of the function
5
the minimum number to generate
10
the maximum number to generate
Generates a random date between two dates.
'{{date "2018-01-02" "2019-01-02" }}'
date
the name of the function
"2018-01-02"
the minimum date to generate
"2019-01-02"
the maximum date to generate
Note that "now"
can be passed to both the minimum and maximum dates if required.
Generates a random 64 bit float between a minimum and maximum value.
{{float 1.2345678901 2.3456789012}}
float
the name of the function
1.2345678901
the minimum number to generate
2.3456789012
the maximum number to generate
Generates a random V4 UUID using Google's uuid package.
{{uuid}}
uuid
the name of the function.
Selects a random string from a set of possible options.
'{{set "alice" "bob" "carol"}}'
set
the name of the function
"alice"
|"bob"
etc. the available options to generate from.
References a random value from a previous block's returned values (cached in memory). For example, if you have two blocks, one named "owner" and another named "pet" and you insert a number of owners into the database, returning their IDs, then wish to assign pets to them, you can use the following syntax (assuming you've provided the value "owner" for the first block's -- NAME
comment):
'{{ref "owner" "id"}}',
ref
the name of the function
References a random row from a previous block's returned values and caches it so that values from the same row can be used for other column insert values. For example, if you have two blocks, one named "owner" and another named "pet" and you insert a number of owners into the database, returning their IDs and names, you can use the following syntax to get the ID and name of a random row (assuming you've provided the value "owner" for the first block's -- NAME
comment):
'{{row "owner" "id" $i}}',
'{{row "owner" "name" $i}}'
row
the name of the function
owner
the name of the block whose data we're referencing
id
the name of the owner column we'd like
$i
the group identifier for this insert statement.
Time functions can be used to generate multi-line DML. The number after the underscore denotes the number of times something will be repeated. Possible numbers are 1, 10, 100, 1000, 10000, and 100000.
{{range $i, $e := $.times_1}}
...something
{{end}}
datagen -script mysql.sql --driver mysql --conn root@/sandbox
With MySQL's lack of a returning
clause, we instead select a random record from the person
table when inserting pet records, which is less efficient but provides a workaround.
-- REPEAT 10
-- NAME pet
insert into `pet` (`pid`, `name`) values
{{range $i, $e := .times_100 }}
{{if $i}},{{end}}
(
(select `id` from `person` order by rand() limit 1),
'{{string 10 10 "a-" ""}}'
)
{{end}};