Replies: 2 comments 4 replies
-
@rsevilla87 @vishnuchalla Looks like you may have missed this idea - thoughts |
Beta Was this translation helpful? Give feedback.
4 replies
-
I see ULIDs are an attempt to solve the sortable problem. However, the cost of that migration for existing data would likely be prohibitive. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
UUIDs are defined by RFC 4122, and there are 4 variants. We currently generate a random UUID, which is variant 4.
The library we use (satori/go.uuid) does expose a V1 variant.
The benefit is that generating new UUIDs as V1, they become self-ordering. So, when I open our Grafana dashboard to a date range and want to look at the runs over a time interval, I can know which runs happened in order without the mapping overhead of locating the kube-burner output logs (if I even have access to them).
The UUIDs generated from e2e have the date in them, which is helpful. But if I am running outside of e2e-benchmarking or from a local client, this is a small quality of life improvement.
Beta Was this translation helpful? Give feedback.
All reactions