(no title)
fizwhiz | 3 years ago
> Clock skew across different sensors: Sensors might be located across different datacenters, computers, and networks, so their clocks might not be synchronized to the millisecond.
And later on in their final solution
> Implementation4 cons: Producers and consumers must have synchronized clocks (up to a certain resolution)
How do they reconcile this skew in their final solution?
dikei|3 years ago
For implementations 4, I suppose it's done by reading only data point with `insert_time < NOW() - some_delays`.
I think the requirement `Producers and consumers must have synchronized clocks (up to a certain resolution)` is simply so that there's no unnecessary lag between producers and consumers.
fizwhiz|3 years ago