Best practice to store data in Stream
I'm working on use case,
there are 20 Plants. each plant contains 100+ equipment with each equipment contain 5-6 properties.
now I want to log each property at one minute interval timestamp.
I am logging property by using stream.
shall I create 100+ stream for each equipment 1:1 ratio or 20 stream for 20 plants one stream for one plant.
database is PostgreSQL.
If I query historical data in future it should not affect on performance.
please suggest best way to do this.

