How do I bulk insert data into CockroachDB?
- 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.
How do I auto-generate unique row IDs in CockroachDB?
To auto-generate unique row identifiers, you can use the following :- 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
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?.
How do I generate unique, slowly increasing sequential numbers in CockroachDB?
Sequential numbers can be generated in CockroachDB using theunique_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 contention 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.
What are the differences between UUID, sequences, and unique_rowid()?
| 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 contention |
| 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 |
How do I order writes to a table to closely follow time in CockroachDB?
Most use cases that ask for a strong time-based write ordering can be solved with other, more distribution-friendly solutions instead. For example, CockroachDB’s time travel queries (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;
How do I get the last ID/SERIAL value inserted into a table?
There’s no function in CockroachDB for returning last inserted values, but you can use the of theINSERT statement.
For example, this is how you’d use RETURNING to return a value auto-generated via unique_rowid() or :
What is transaction contention?
Transaction contention occurs when transactions issued from multiple clients at the same time operate on the same data. This can cause transactions to wait on each other and decrease performance, like when many people try to check out with the same cashier at a store. For more information about contention, see .Does CockroachDB support JOIN?
.
Does CockroachDB support JSON or Protobuf datatypes?
Yes, the data type is supported.How do I know which index CockroachDB will select for a query?
To see which indexes CockroachDB is using for a given query, you can use the statement, which will print out the query plan, including any indexes that are being used:How do I log SQL queries?
You can enable the CockroachDB that record SQL events.Does CockroachDB support a UUID type?
Yes. For more details, see .How does CockroachDB sort results when ORDER BY is not used?
When an clause is not used in a query, rows are processed or returned in a
non-deterministic order. “Non-deterministic” means that the actual order
can depend on the logical plan, the order of data on disk, the topology
of the CockroachDB cluster, and is generally variable over time.
Why are my INT columns returned as strings in JavaScript?
In CockroachDB, all 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.
Can I use CockroachDB as a key-value store?
CockroachDB is a distributed SQL database built on a transactional and strongly-consistent key-value store. Although it is not possible to access the key-value store directly, you can mirror direct access using a “simple” table of two columns, with one set as the primary key:UPSERT to add or replace a row in the table would translate into a single key-value Put operation:

