Is AWS S3 having an outage?
31–40 of 47 posts
Re: Is AWS S3 having an outage?
#32Re: Is AWS S3 having an outage?
#33us-east-1 gang rise up!! For once I can feel mild pleasure at seeing the tables turned… To be honest I don’t know why all my projects are always in USE1, I guess it’s just because that’s where we have always had them for my lab so I’ve stuck with it for no good reason…
US East 1 was the default region until a few years ago. If your account is older than that, then most likely all your stuff is there.
Re: Is AWS S3 having an outage?
#34Earlier quoted context omitted.
US East 1 was the default region until a few years ago. If your account is older than that, then most likely all your stuff is there.
Unless - like most people - you and your audience are not in the US.
Re: Is AWS S3 having an outage?
#35I guess I'll increase the frequency of some probes to get better aligned with the official timeline :)
Re: Is AWS S3 having an outage?
#36Earlier quoted context omitted.
I've long wished for built-in browser functionality that converts times to the user's preferred time zone, with perhaps a dotted outline indicating that a change was made by the browser to the page.
Yeah, but, I mean, the least you could do is to say UTC-7. I'm sure everybody living in PDT knows it's, well, their time, but how the fuck should everyone else know what time PDT is.
Re: Is AWS S3 having an outage?
#37us-east-1 gang rise up!! For once I can feel mild pleasure at seeing the tables turned… To be honest I don’t know why all my projects are always in USE1, I guess it’s just because that’s where we have always had them for my lab so I’ve stuck with it for no good reason…
US East 1 was the default region until a few years ago. If your account is older than that, then most likely all your stuff is there.
Re: Is AWS S3 having an outage?
#38Something related/non-related, it's still painful to read specific timezone not UTC.
My solution to inconsistent time rendering in AWS (sometimes UTC, sometimes localtime) is to run a separate browser profile for AWS (and third party status pages) that that's always running in UTC.
But seriously, status page people: there's no excuse for being vague about timezones!
Re: Is AWS S3 having an outage?
#39Earlier quoted context omitted.
This is worth proposing. A tag where fallback text is provided within which can be overridden by the browser with a formatted date string would be excellent.
It exists: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ti... As a nearby comment indicates, it's not clear any browser makes use of it.
All times on the page are in UTC and are wrapped in a element. The raw UTC time is on the datetime attribute and a fallback more easily readable time is inside the tags. Some JS on the page removes whatever text is inside the tag and replaces it with the user's locale specific format (no libraries required, it's a part of the browser standards).
User friendly times wasn't actually the reason we implemented it.
Our largest concern was our E2E testing. We needed to make sure that the dates/times displayed were always right (and since subscriptions involve money, we wanted to make sure that part of the website was the most tested.) The E2E testing simply ignores whatever is inside the tag and reads the datetime attribute instead. Then we can fastforward or rewind the simulated time inside the test to make sure everything is working as expected.
Re: Is AWS S3 having an outage?
#40us-east-1 gang rise up!! For once I can feel mild pleasure at seeing the tables turned… To be honest I don’t know why all my projects are always in USE1, I guess it’s just because that’s where we have always had them for my lab so I’ve stuck with it for no good reason…