Google Cloud Spanner recommend us to avoid putting an index onto a monotonically increasing (non-PK) column such as timestamps (https://cloud.google.com/spanner/docs/schema-design), but my specification requires to query by (monotonically increasing) timestamp column.
I'm planning to detour the limitation by binning the time axis every 1 minute (i.e. 10:00:35 -> 10:00:00). Does this work fine for Google Cloud Spanner?