I wonder if someone could take a minute out of their day to give some suggestion on my database structure design.
I have sensor data (e.g temperature, humidity ...) with time series format (10Hz) which are installed in different floors of different houses of different cities. So let say something like this:
*City Paris-->House A -->Floor 1 --> Sensor Humidity & temp --> csv file with time series for hours, days, years
City Paris-->House B -->Floor 3 --> Sensor Humidity --> csv file with time series for hours, days, years*
So now I would like to answer these questions: 1- What would be the most efficient method to store the data A sql database? 2- Would it make sense to have timestamp data stored in sql database but the sensor data in CSV file and then link them them to sql database? 3- What about the scalability and possibility to add new sensors?
Many thanks for your help and suggestion in advance,