Open timroes opened 6 years ago
The change has to be to a fixed timezone like UTC as ETC timezones were used by customers to improve the response times for some ES queries.
Pinging @elastic/kibana-core (Team:Core)
We need to investigate if using Etc/GMT
timezones is still a problem with ES query response times.
There haven't been any more comments or links back to this issue in ~ 1 year and we'd typically close these as stale. However, anything negatively impacting ES query response times could negatively impact Kibana's performance and should be considered a bug.
The
Etc/GMT+-x
timezones are the opposite of what most people might think (also see https://github.com/moment/moment-timezone/issues/167).After some discussion around this, it seems like we should rather replace them not to confuse users with that behavior.
My suggestion would be adding
UTC-x
andUTC+x
timezones instead. That's possible via themoment.tz.add
API.I think we could even do that change in a minor version, and just convert the users setting to the new timezone (e.g.
Etc/GMT+5
→UTC-5
, etc.). That way the change would be fully backwards compatible, but we could still already remove the confusing timezones.