- To bulk-insert data into an existing table, batch multiple rows in one statement and do not include the
INSERTstatements within a transaction. Experimentally determine the optimal batch size for your application by monitoring the performance for different batch sizes (10 rows, 100 rows, 1000 rows).
You can also use the statement to bulk-insert CSV data into an existing
table.
-
Use
gen_random_uuid(): Generates a UUIDv4 withUUIDdata type. -
Use
uuid_v4(): Generates a UUIDv4 withBYTESdata type. -
Use
unique_rowid(): Generates a globally uniqueINTdata type For performance reasons, if you are going to use UUIDs, Cockroach Labs strongly recommends using UUIDv4 as defined by RFC 4122. This is the format generated by the . Other types of UUID are largely untested with CockroachDB and will require performance testing to avoid .
Use gen_random_uuid()
To use the column with the gen_random_uuid() as the :
Use uuid_v4()
Alternatively, you can use the column with the uuid_v4() function as the default value:
Use unique_rowid()
If it is important for generated IDs to be stored in the same key-value range, you can use an with the unique_rowid() as the default value, either explicitly or via the :
unique_rowid() function generates a default value from the timestamp and ID of the node executing the insert. Such time-ordered values are likely to be globally unique except in cases where a very large number of IDs (100,000+) are generated per node per second. Also, there can be gaps and the order is not completely guaranteed.
To understand the differences between the UUID and unique_rowid() options, see the . For further background on UUIDs, see What is a UUID, and Why Should You Care?.
Sequential numbers can be generated in CockroachDB using the unique_rowid() built-in function or using . However, note the following considerations:
- Unless you need roughly-ordered numbers, use values instead. See the previous FAQ for details.
- produce unique values. However, not all values are guaranteed to be produced (e.g., when a transaction is canceled after it consumes a value) and the values may be slightly reordered (e.g., when a transaction that consumes a lower sequence number commits after a transaction that consumes a higher number).
- For maximum performance, avoid using sequences or
unique_rowid()to generate row IDs or indexed columns. Values generated in these ways are logically close to each other and can cause on a few data ranges during inserts. Instead, prefer identifiers. - We . If a table must be indexed on sequential keys, use . Hash-sharded indexes distribute sequential traffic uniformly across ranges, eliminating single-range and improving write performance on sequentially-keyed indexes at a small cost to read performance.
| Property | generated with uuid\_v4() | INT generated with unique\_rowid() | Sequences |
|---|---|---|---|
| Size | 16 bytes | 8 bytes | 1 to 8 bytes |
| Ordering properties | Unordered | Highly time-ordered | Highly time-ordered |
| Performance cost at generation | Small, scalable | Small, scalable | Variable, can cause |
| Value distribution | Uniformly distributed (128 bits) | Contains time and space (node ID) components | Dense, small values |
| Data locality | Maximally distributed | Values generated close in time are co-located | Highly local |
INSERT latency when used as key | Small, insensitive to concurrency | Small, but increases with concurrent INSERTs | Higher |
INSERT throughput when used as key | Highest | Limited by max throughput on 1 node | Limited by max throughput on 1 node |
| Read throughput when used as key | Highest (maximal parallelism) | Limited | Limited |
AS OF SYSTEM TIME) support the following:
- Paginating through all the changes to a table or dataset
- Determining the order of changes to data over time
- Determining the state of data at some point in the past
- Determining the changes to data between two points of time
unique_rowid(), described in the previous FAQ entries, also provide an approximate time ordering.
However, if your application absolutely requires strong time-based write ordering, it is possible to create a strictly monotonic counter in CockroachDB that increases over time as follows:
- Initially:
CREATE TABLE cnt(val INT PRIMARY KEY); INSERT INTO cnt(val) VALUES(1); - In each transaction:
INSERT INTO cnt(val) SELECT max(val)+1 FROM cnt RETURNING val;
INSERT statement.
For example, this is how you’d use RETURNING to return a value auto-generated via unique_rowid() or :
INTs are represented with 64 bits of precision, but JavaScript numbers only have 53 bits of precision. This means that large integers stored in CockroachDB are not exactly representable as JavaScript numbers. For example, JavaScript will round the integer 235191684988928001 to the nearest representable value, 235191684988928000. Notice that the last digit is different. This is particularly problematic when using the unique_rowid() , since unique_rowid() nearly always returns integers that require more than 53 bits of precision to represent.
To avoid this loss of precision, Node’s pg driver will, by default, return all CockroachDB INTs as strings.
idString, you can simply use idString directly, even where an INT type is expected. The string will automatically be coerced into a CockroachDB INT.
INTs in JavaScript, you will need to use a big integer library like Long.js. Do not use the built-in parseInt function.
UPSERT to add or replace a row in the table would translate into a single key-value Put operation:

