Importance of write order

Is it important to write data points in order (as far as timestamps)? I guess that writing data points out of order will affect write performance, but it is detrimental to the database overall?

As an example - I have a service that will parse historical data from a certain data source. This data is written to my database through a WebAPI. Because of potential load balancing of the web service and even multitasking of the parsing service, I cannot guarantee that the data points will be written in order of timestamp.

I’m using 2.0 OSS.

Thank you!