|
|
|
|
|
by mbell
2015 days ago
|
|
I feel like the article misses most of the 'meat' of bulk loading setups. e.g. Using partitioned tables, attaching partitions with little to no locking, indexing after loading, `COPY ... FREEZE`, etc. One other note: > Goto solution for bulk loading into PostgreSQL is the native copy command. But one limitation with the copy command is that it requires the CSV file to be placed on the server. You can use `COPY ... FROM STDIN` and stream the data from the client, this is basically what `/copy` does in psql. |
|
What good do partitions do? Loading in parallel?