Type alias TableInsertManyOptions

TableInsertManyOptions: GenericInsertManyOptions

Options for an insertMany command on a table.

The parameters depend on the ordered option. If ordered is true, the parallel option is not allowed.

Field

ordered - If true, the rows are inserted sequentially; else, they're arbitrary inserted in parallel.

Field

concurrency - The maximum number of concurrent requests to make at once.

Field

chunkSize - The number of rows to upload per request. Defaults to 50.

Field

timeout - The timeout override for this method

See

Table.insertMany