0

I have a Java application that connects to MySQL on an Amazon EC2 (USA east region) instance with JDBC (using official latest Oracle drivers, location specified by IP). It also connects to S3 using Amazon's given SDK.

Problem is, while everything is fast and works great from any server, except for one server at a specific location (let's say LOC-A). Establishing connections in the application time out, or on average, are able to connect 1/10 restarts (but then are really slow). S3 connections error out at the same rate as well. MySQL Workbench hangs 9/10 times fetching results from the database.

The connection is a residential FIOS connection (hardwired from modem to PC). 50MB/s down, 25MB/s, <20ms ping. Computer and modem restarted. Firewall disabled. Latest network drivers. DNS, ARP caches cleared. All privileges for MySQL user for any hostname.

Like I said, any other server works great, this specific computer or network is terrible.

I understand I'm giving very high level information, but the code is stable and no changes were added.

Can anyone recommend next course of action, please? We are starting to suspect (tin-foil-hat-on) deep-packet inspection.

jn1kk
  • 171
  • 2
  • 10
  • 4
    According to Amazon's health dashboard: "Network connectivity We are observing an issue outside of our network that is preventing a small number of Verizon FiOS customers from reaching the US-EAST-1 Region. Connectivity within the Region as well as connectivity from other networks is not impacted." See http://status.aws.amazon.com/ – Nathan C Jan 30 '14 at 19:08
  • I don't see that? – jn1kk Jan 30 '14 at 19:08
  • 2
    It's a big green box at the top of the page... – Nathan C Jan 30 '14 at 19:09
  • Oh, my. That is unbelievable. I never seen an error like that. – jn1kk Jan 30 '14 at 19:10
  • 2
    This question appears to be off-topic because AWS are observing an issue outside of our network that is preventing a small number of Verizon FiOS customers from reaching the US-EAST-1 Region. Connectivity within the Region as well as connectivity from other networks is not impacted. – HopelessN00b Jan 30 '14 at 19:10
  • Why do you even close this when the question is solved? Just to keep up with the bureaucracy? "...minimal understanding of the problem being solved". Are you kidding me? – jn1kk Jan 31 '14 at 14:23

1 Answers1

2

The next course of action is to check with your provider (in this case Amazon) to see if they know anything about the issue.

It seems that they do:

Network connectivity

We are observing an issue outside of our network that is preventing a small number of Verizon FiOS customers from reaching the US-EAST-1 Region. Connectivity within the Region as well as connectivity from other networks is not impacted.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
  • Wow, that is quite something. I've seen degraded performance over the last few weeks and now it totally errors out. I've never seen that type of error either on AWS dashboard. Thanks guys! – jn1kk Jan 30 '14 at 19:12