Skip to content

Table Observations partitioning? #1121

Answered by hylkevds
ndevilleBE asked this question in Q&A
Discussion options

You must be logged in to vote

Partitioning the table is certainly possible. I don't expect it to make much difference when it comes to the write-speed, but it will depend a bit on what the bottleneck is when importing your data.
Partitioning helps by distributing read/write load on different physical disks, and possibly reducing the size of indexes required for queries, but I doubt those are a problem in your case.

I suspect a substantial increase in efficiency can be had by using batch processing for the import, reducing the many separate POST actions required.

The most important limitation for PostgreSQL is the speed of the disks. Network disks are usually very slow. Using SSDs close to the PostgreSQL server I can u…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ndevilleBE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants