Amazon Web Services status: access issues and outage reports
No problems detected
If you are having issues, please submit a report below.
Amazon Web Services (AWS) offers a suite of cloud-computing services that make up an on-demand computing platform. They include Amazon Elastic Compute Cloud, also known as "EC2", and Amazon Simple Storage Service, also known as "S3".
Problems in the last 24 hours
The graph below depicts the number of Amazon Web Services reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.
At the moment, we haven't detected any problems at Amazon Web Services. Are you experiencing issues or an outage? Leave a message in the comments section!
Most Reported Problems
The following are the most recent problems reported by Amazon Web Services users through our website.
- Website Down (78%)
- Sign in (11%)
- Errors (11%)
Live Outage Map
The most recent Amazon Web Services outage reports came from the following cities:
| City | Problem Type | Report Time |
|---|---|---|
|
|
Website Down | 11 days ago |
|
|
Website Down | 13 days ago |
|
|
Website Down | 1 month ago |
|
|
Sign in | 2 months ago |
|
|
Website Down | 3 months ago |
|
|
Website Down | 3 months ago |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
Amazon Web Services Issues Reports
Latest outage, problems and issue reports in social media:
-
The AI Therapist (@TheAIShrink) reported@MikeLongTerm @amazon @awscloud EC2 on AMD CPUs. The cloud bill goes down, the margins go up. aws is quietly fixing its cost structure while everyone watches the models. smart
-
masaki (@silenthill_x) reported@AWSSupport Could someone please take a look at my support case? I opened a case 6 days ago because my RDS Reserved Instance is showing "Payment failed", but the case is still unassigned. The automated AWS Support response confirmed that my account is in good standing, my payment method is valid, and my invoices are fully paid. It also indicated that this appears to be a reservation processing issue rather than a payment issue. I've tried both Phone and Chat but haven't been able to reach an associate. Could you please help me get this case assigned? I can provide the Case ID via DM.
-
Tseng (@TsengSR) reported@marcelocantos @awscloud I'm 100% certain you'd also crying a river when hard caps are added and the same happens again, because then your services will be shut down immediately until they resolve it and you'll cry too, how they'd dare to take your services offline when reaching the cap due to an error.
-
❤️🔥ViBe GuY_PrinCe😉 (@777PrinceFreaky) reportedAmazon has very poor service in Warranty and Claim Procedure To Customer fix this for me soon @amazonIN @awscloud @AmazonHelp
-
✨Neil Blumenthal (@MrKryptonBTC) reported@AWSSupport So you guys wont fix my issue anymore? Ghosting me? 7days gone? Dont say weekend or bla bla. Stop wasting people's time
-
billy (@Billy17979063) reported@fortniteleaksmy It’s up for some down for some @awscloud ******* decides to shut down not just PlayStation but other platforms too
-
Zyreon (@Zyreon_trading) reported@awscloud When i wake up i saw:there is another AWS Bug/Service Down. Lol cannot give up time of 24 hours/7 days/infinity uptime..
-
Ritesh Roushan (@devXritesh) reportedA good architecture starts by separating document storage, signing, identity verification, and notifications into independent services. 1. API Gateway All requests (upload, sign, download, share) pass through the API Gateway. It handles authentication, rate limiting, request validation, and routing. 2. Document Service Contracts are uploaded directly to object storage (Amazon S3/GCS/Azure Blob). Metadata such as owner, participants, document status, and version history is stored in PostgreSQL. Large files never pass through application servers. 3. Identity Verification Service Before signing, users verify their identity using email OTP, SMS OTP, OAuth, or KYC providers depending on compliance requirements. A verified identity token is issued before allowing signatures. 4. Signing Service Each signature request creates an immutable signing event. Documents are locked while applying a signature to prevent conflicts when multiple users sign simultaneously. Optimistic locking or version numbers help resolve concurrent updates. 5. Audit Log Service Every action upload, view, download, sign, reject, revoke is published to Kafka. Events are stored in an append-only audit database with timestamps, signer identity, IP address, and device information, creating a tamper-resistant audit trail. 6. Notification Service Kafka events trigger email, SMS, and push notifications asynchronously so users are notified instantly without slowing down API responses. 7. Security • Encrypt files at rest (AES-256) • TLS for data in transit • Short-lived signed URLs for downloads • RBAC for document access • Hash every signed document (SHA-256) to detect tampering • Store digital certificates securely using a KMS/HSM 8. Scalability Deploy services independently behind load balancers. Use Redis for caching document metadata and sessions. Object storage handles millions of documents, while Kafka decouples services and absorbs traffic spikes. Read replicas improve download performance, and multi-region replication ensures disaster recovery. This architecture provides secure storage, concurrent signing, legal compliance, high availability, and scales to millions of contracts worldwide.
-
Clem ent (@clement___10) reportedSelf hosting your email server is something that Is very tricky and I still can't grasp till today. The craziest part is not the setup but managing the email server reputation. I rather pay @Cloudflare or @awscloud.
-
Joy | 🔥 (@JoyKingdomx) reportedAs we all know, cloud outages are not a new topic here. But what is changed is how many products now depend on the same infrastructure. A few years ago, an AWS outage mostly affected AWS customers. Where today one infrastructure issue can ripple across AI apps, APIs, developer tools, streaming platforms and payment services. That is the downside of concentration. We have seen @awscloud outages impact millions. We have also seen @OpenAI outages pause production apps because entire inference pipelines depended on a single provider. It is not the outage that matters - it is the dependency behind it. That is the reason why decentralized compute makes sense. Instead of relying on a single cloud or region, @ionet distributes compute across a global network of GPUs in 138+ countries. No infrastructure is immune to failure, the goal is to ensure one failure does not become everyone's failure.
-
Payal (@payal_codes) reportedDay 1 : "How to Scale an App to 10 Million Users on AWS" If I have to design a system for 10 million users, I won't build everything on Day 1 because it will add unnecessary complexity and cost. I'll start simple with one application server and one database. As traffic grows, if the server starts reaching its CPU, memory, or storage limits, I'll first scale vertically by moving to a bigger instance. Once that is not enough, I'll separate the backend and database so both can scale independently. To avoid a single point of failure, I'll deploy the application across multiple Availability Zones and put a Load Balancer in front so if one server or AZ goes down, traffic is automatically routed to healthy servers. As the number of users keeps increasing, I'll make my application stateless by storing sessions in Redis. This allows me to add multiple application servers behind the Load Balancer and scale horizontally. If my database starts getting overloaded with reads, I'll use Redis to cache frequently accessed data and add read replicas to distribute read traffic. For static assets like images, CSS, and JavaScript, I'll store them in Amazon S3 and serve them through CloudFront so requests don't keep hitting my application servers. If traffic suddenly spikes during sales or events, I'll enable Auto Scaling with CloudWatch metrics so AWS automatically adds or removes servers based on demand. As the application becomes larger, I'll split the monolith into microservices. This allows each service, like authentication, payments, or notifications, to scale independently instead of scaling the entire application. If the database becomes the bottleneck, especially for write operations, I'll use sharding or federation depending on the data and business requirements. Finally, when users are spread across the world, I'll deploy the application in multiple AWS Regions to reduce latency and improve availability. My approach is always the same: find the bottleneck, solve that bottleneck, and only introduce more complexity when the current architecture can no longer handle the traffic.
-
metis (@metis00001) reported@AWSSupport Looks like it has been resolved. But it definitely took like 5 days to resolve a payment configuration issue! Thanks for reaching out.
-
TAPE Vector (@Tape_Vector) reportedJPP-KY $5284.TW is not an AI chip company. It makes the precision metal infrastructure that surrounds the chips, power systems and cooling hardware inside modern AI servers. That distinction matters. JPP Holding designs and manufactures precision metal mechanical parts, enclosures, cabinets and structural components. Its products are used across: AI server racks Server chassis Power supply housings Battery backup unit enclosures Liquid cooling components CDU and manifold structures Telecom equipment Aerospace avionics Aircraft structural and cabin parts Medical equipment Industrial systems The company is headquartered through a Cayman holding structure and listed in Taiwan, but much of the manufacturing engine sits in Thailand through Jinpao Precision Industry. That Thailand base is important. JPP is positioning itself between Taiwanese and global technology customers that increasingly want manufacturing capacity outside China. The operating model is high mix precision manufacturing rather than mass production of one standardized component. A customer brings JPP a mechanical design or performance requirement. JPP can then handle several steps internally: Engineering and design support Metal cutting Stamping CNC machining Sheet metal forming Welding Surface treatment Painting Assembly Inspection Final integration That means the company can take a customer from drawing to finished enclosure instead of supplying only one small step. For AI servers, this can include the physical rack or chassis holding compute hardware, power equipment and cooling systems. For aerospace, it can include avionics housings, structural parts and cabin components that require much tighter certification and process control. This combination is unusual. AI infrastructure gives JPP growth. Aerospace gives it another technically demanding end market with different cycles. The company describes this model as a mix of European engineering capability and Thai manufacturing. The phrase used by management has been: French brain. Thai heart. That comes from the European aerospace companies JPP acquired and integrated with its Thailand manufacturing base. The aerospace side matters because the qualification barriers are much higher than ordinary sheet metal fabrication. JPP has Nadcap certified processes and has worked within the European aerospace supply chain. Company materials and industry reporting have referenced customers and programs connected to Airbus, Thales and Safran. Those relationships do not automatically mean every JPP aerospace product goes directly into those companies. But they show that the manufacturing system has passed qualification standards far above normal commodity metal fabrication. Then AI arrived. This has changed the financial profile of the company very quickly. FY2024 revenue was approximately NT$2.39 billion. FY2025 revenue jumped to about NT$3.73 billion. That is roughly 56% growth. Net income reached approximately NT$618 million. EPS reached NT$12.05. Gross margin stayed around 37.8%. That margin is one of the numbers I find most interesting. JPP did not double its business by becoming a low margin commodity manufacturer. The company expanded rapidly while keeping gross margin in the high 30% range. That suggests the current product mix still carries meaningful engineering and manufacturing value. Q1 2026 continued the trend. Revenue reached approximately NT$1.17 billion. That was about 45% higher year over year. Gross margin remained around 37.5%. So the 2025 acceleration did not immediately reverse once the calendar changed. This is now a real operating ramp. The AI server side has become the main growth engine. JPP manufactures server racks, chassis, power enclosures and increasingly components associated with liquid cooling. That last category matters. AI servers are becoming more difficult to cool. Higher power GPUs produce more heat. More compute density means more thermal load inside each rack. That is pushing the data center industry toward larger cooling distribution systems, manifolds, cold plates and liquid cooling infrastructure. JPP does not manufacture the GPU or the cooling technology itself. It manufactures some of the metal structures and precision components that allow those systems to be installed inside the rack. That places the company several layers beneath the visible AI names. $NVDA and $AMD create demand for increasingly powerful accelerators. Those accelerators require more complex server systems. $DELL and $SMCI integrate servers and racks around those accelerators. $VRT and $ETN operate in the power and cooling infrastructure around the data center. JPP sits further inside the physical manufacturing chain. It produces some of the metal cabinets, chassis, housings and structural components required by this infrastructure. These are ecosystem comparisons. They are not all disclosed customer relationships. The most interesting potential US connection is the company's major cloud customer. Management commentary and Taiwan reporting have repeatedly described a major US cloud service provider as one of JPP's largest AI customers. That customer has widely been reported as Amazon AWS. If correct, that creates an indirect connection to $AMZN. But I would keep the wording disciplined. JPP has not provided enough English primary disclosure for me to treat the identity and exact revenue contribution as completely settled. The important hard fact is that a major US CSP has become a very large customer. Recent commentary has indicated that this customer may account for roughly 30% of revenue during parts of the AI ramp. That is both the opportunity and the risk. A customer that large can transform a small supplier. It can also transform the income statement in the opposite direction if orders slow. Another major relationship is in Thailand. JPP has been expanding production around a large power and server customer widely identified as Delta Electronics Thailand. That customer makes power supplies, thermal systems, data center equipment and related electronics. The geographical relationship matters because both companies operate major production facilities in Thailand. Shorter logistics. Faster delivery. Closer engineering cooperation. Just in time production. Dedicated manufacturing capacity. Those factors can make a supplier harder to replace once a large program is running. But they also deepen customer concentration. JPP is effectively investing ahead of these customers. The company has been adding production capacity in Thailand. One important bottleneck has been painting and surface treatment. JPP is expanding automated paint capacity. It is also investing in larger stamping capacity and dedicated production areas for AI server and power related products. The logic is simple. More AI server racks require more metal structures. More power density requires more sophisticated power housings. Liquid cooling adds additional structural parts. If JPP remains qualified inside those programs, each generation of AI infrastructure can increase the content opportunity per rack. That is the bull side. The risk is that the company adds capacity for demand that later slows. AI infrastructure spending is strong now. It will not grow in a straight line forever. A hyperscaler can change server architecture. An ODM can move a program. A customer can dual source. A competitor can cut price. If one large customer represents 25% to 30% or more of revenue, those decisions matter immediately. That is why I want the exact customer concentration table from the latest annual report. The aerospace business gives JPP some diversification. Before the AI acceleration, aerospace represented a much larger part of the company. That business went through a difficult period around the pandemic and the following aerospace supply chain disruption. It has been recovering. The company has continued obtaining certifications and expanding its European aerospace capabilities. That creates a useful second engine. AI server demand is fast and capital intensive. Aerospace is slower, qualification heavy and built around longer product cycles. The two businesses have different risks. Together they can potentially produce a more balanced manufacturing platform. But right now AI is clearly driving the growth rate. The financial question from here is not whether revenue can grow. It already has. The question is whether the current margins survive the next stage of scale. High 30% gross margins are strong for a precision metal manufacturer. I want to know how much of that comes from: AI server racks Power enclosures Liquid cooling components Aerospace Specialty low volume work New customer programs I also want the operating cash flow behind the reported earnings. Fast manufacturing growth consumes working capital. More orders require more raw material. More capacity requires more equipment. More inventory sits between production and customer delivery. Receivables rise. So a company can report excellent earnings while cash is being absorbed into expansion. That is not automatically bad. But the return on that capital has to remain high. JPP ended 2025 with roughly NT$7.4 billion in assets and around NT$3.7 billion in equity. The balance sheet does not currently look distressed. There is no obvious heavy dilution story. The primary capital allocation issue is expansion. Paint lines. Stamping equipment. Factory capacity. Dedicated customer production. Those investments are being made because demand already exists. Now they need to earn acceptable returns. For US market context, I see several useful layers. $NVDA and $AMD are demand drivers. More accelerator shipments can mean more server racks, more power density and more cooling hardware. $DELL and $SMCI represent the server integration layer. They assemble computing systems around GPUs, networking, storage and power. $VRT and $ETN represent the data center power and thermal infrastructure layer. $ANET sits in the networking layer connecting increasingly large AI clusters. $AMZN is relevant because AWS is widely reported as the major US CSP associated with JPP's AI server business. Again, I would treat that specific customer identity as reported rather than fully disclosed until the primary customer note confirms it. The aerospace familiarity is different. $BA is the obvious US listed aerospace reference. JPP is not primarily a Boeing supplier story. Its known aerospace footprint is more European. But the same qualification logic applies. Aircraft components require traceability, process control and long certification cycles. That experience can strengthen the overall manufacturing discipline of the company even when the fastest growth is coming from AI infrastructure. This is what makes $5284.TW more interesting than a generic sheet metal company. The metal itself is not scarce. The capability stack can be. A customer needs a supplier that can: Meet tolerances. Pass qualification. Build tooling. Handle design changes. Scale capacity. Deliver consistently. Maintain surface quality. Control welding and assembly. Locate production close to the customer. And do it without disrupting a multibillion dollar server or aerospace program. That creates switching friction. It does not create an unbreakable moat. Large customers still have enormous negotiating power. The company remains small relative to the customers it serves. That means the power relationship still favors the customer. The current strengths are clear. 2025 revenue grew about 56%. EPS reached NT$12.05. Gross margin remained near 38%. Q1 2026 revenue grew another 45%. AI server exposure is already producing real revenue. Liquid cooling adds another content opportunity. Thailand capacity is expanding. Aerospace is recovering. The balance sheet is supporting expansion without obvious distressed financing. The risks are also clear. Customer concentration is high. The largest AI programs are project driven. Formal long term volume commitments are not well disclosed. The company is investing heavily into capacity during an AI spending boom. Margins could compress as volume rises. Aerospace recovery could stall. And the current growth rate depends heavily on continued data center capital spending. For me, the next proof is not another monthly revenue record. I want to see: Exact top customer concentration. How much revenue now comes from AI server products. How much comes from liquid cooling. Whether the major CSP relationship is widening into additional products. Whether the large Thai power customer is gaining share of revenue. Utilization of the new painting and stamping capacity. Operating cash flow after expansion capex. Return on invested capital from the Thailand buildout. Aerospace revenue and margin recovery. Whether gross margin can remain above the mid 30% range as the company scales. Real manufacturing. Real AI infrastructure exposure. Real earnings growth. Real high margin execution so far. But also real concentration risk. jpp-KY $5284.TW does not need to invent the next GPU. It needs to remain the qualified company manufacturing the physical structures around the companies that do. If AI racks become larger, hotter and more complex while JPP keeps winning more content per system, the opportunity can grow much faster than the underlying server unit count. The question now is whether that position is durable enough to survive the inevitable cooling of the AI capital spending cycle. That is what I want to understand next. My investing journal, not financial advice.
-
Jacklyn Taylor (@Ronindrake2) reported@awscloud hey, got a simple question When your moderation refuses to post a review of a book, can you do everyone a favor and instead of saying "one of these things" Say "here is the specific part that violates our guidelines. Pls fix it" It would be, so much more helpful
-
Gopal Goti (@gopal_goti) reported@AWSSupport @AWSSupport Thank you for the update, but 'high volume' cannot justify a support case sitting completely 'Unassigned' for over 4 days for a basic account verification issue. This is not a complex technical issue. it is a backend system error on the AWS verification form.
-
AntDracula (@ant_dracula) reported@_LeadPoisoning_ @awscloud That’s because it’s never up long enough to generate an error
-
Matthew (@OneShotCaller) reported@CalebChamberla6 It’s an AWS billing error (see @awscloud)
-
Corey Quinn (@QuinnyPig) reportedI want to hear the inside story of the largest @awscloud project. Not bill run, nor S3. I’m talking about what it took to fix all the hardcoded “jeff@“ userID stuff when @ajassy rose. Not kidding: it woulda been orders of magnitude easier for him to change his name to “Jeff.”
-
M (@mdw864) reported@AWSSupport Tells me to login when I keep telling you I cannot login because I don’t have the capability to do so.
-
Ashmit Dutta (@ashmit105) reported@awscloud keeps charging me $60 a month. I can’t login to my account due to a deprecated email. Making support tickets goes nowhere. Anyone got advice on what to do?
-
Edward Donner (@edwarddonner) reported@darkosubotica @awscloud @AWSSupport Thanks Darko. I'm keen to be involved. I'm aware there are challenges. A billing bug shouldn't cause a global outage or delete backups. I believe these are solvable. I don't want the possibility of financial ruin from a mistake or hack. Will DM.
-
PolyPup (@PolyPup) reportedI think I have a problem. - 3 @ChatGPT subscriptions - 2 @AnthropicAI subscriptions - $8,200 @awscloud bill coming this month I have so many protocols built, ready for deployment. Really cool innovative, revenue generating projects but I'm hesitant to launch on anything. Maybe someday.
-
Matthew (@OneShotCaller) reported@ZZiata15569 @awscloud I have billing and budget alerts set up with AWS already. Main problem with a lot of tools I’ve used is too much noise in the alerts vs AWS option. Still, I think every AWS customer gets at least 1 surprise lol… part of initiation (onboarding?)
-
That Other Hecate (@HecateKeys) reported@OwenGregorian 1) Forgets how DNS works. AWS goes down for days. 2) Forgets how arithmetic & metering works. Trillion-dollar bills for scant usage. @awscloud Regretting all those mass layoffs of your veteran engineers yet?
-
Ikenna Iheanaetu (@Ikenna_dev) reported@awscloud Runtime request flow User → HTTPS → ALB → ECS Fargate → Container The ALB handles HTTPS using ACM and routes traffic to the ECS service. The service runs multiple tasks across Availability Zones, giving the application redundancy instead of relying on one server.
-
Harikrishna KP (@harikp2002) reported@AWSSupport Two days into migrating to AWS and both new accounts I created are locked out of every single service. S3, EC2, Lambda, DynamoDB, all of it. The accounts show as ACTIVE. Support confirmed it needs a manual fix from an internal team, then went quiet for 28 hours. Three open cases, one phone call, still completely blocked. Sitting on AWS credits I literally cannot spend. Do better please!
-
Ignacio Cassinelli (@igncass) reported@awscloud What a terrible response
-
AntDracula (@ant_dracula) reported@kankerhoerrrrrr @marcelocantos @awscloud "skill issue" is a term only unironically used by losers and AI bots. I can take a guess at which one you are.
-
Edward Donner (@edwarddonner) reported@okko @awscloud @AWSSupport That's why it's opt in. Netflix would likely not opt in and be fine with the risk. You could join them if you wish. I would prefer to face an outage if AWS has another billing disaster than have unbounded exposure.
-
Prof. D. Kumar (@DrDKumar_NRI) reported@AmazonHelp @amazonIN @awscloud Amazon pay UPI is blocked and can not verify device while other UPIs r working on porting the number. Been 03 days and the issue is still not resolved. LOOK INTO TICKET # V2289236874 and resolve at its earliest. Already cleared data, reboot!