-
Thank you very much for your work on this project. I am working on migrating a big dataset of sensor data to use Sensorthings and had 2 questions. If you have any other advice / guidance on bulking loading, please let me know. Background:
Questions1. How should one disable database triggers?
2. Is there a preferred way to track down what is causing an error in an insert?Sometimes when I insert an observation, FROST says the key I am using for my
Does this sort of error slow things down? I am finding that insert still works fine, but unclear if I should be fixing this.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Disabling the triggers is done directly in PostgreSQL using
Importing different Datastreams can be done in parallel for increased performance. |
Beta Was this translation helpful? Give feedback.
Parallel HTTP requests for different Datastreams. Since writing an Observation takes a lock on the Datastream & Feature ids, only one process can write an observation for a Datastream/Feature at the same time, but different Datastreams/Features can be written to at the same time.