So, about two or three hours ago, I was successful working on and able to deploy my app engine app from Eclipse to App Engine. Up until about an hour ago, however, I have been unable to do so. In Eclipse, when I attempted and failed the first time to deploy the app, the progress froze at 20-something% ("Precompiling...") for about 10 minutes returning an error telling me to disable precompiling in appengine-web.xml, which I did. Then, after another attempt, it froze for about 10 minutes on the step immediately before when precompiling would happen ("Cloning Application files"), returning a 500 server error from app engine. I tried with another app engine project I have deployed successfully today and it failed the same way.
To see what was going wrong, I attempted to login to the admin panel on appengine.google.com, but when I clicked one of my apps in "My Applications" it took about 1 minute to load and gave me a 403 error. When I went back to try again, it took 2 minutes to load and gave me a Server error (which I assume would be a 500 server error but it didn't say, just black text and a link to report). The third time I tried, I got an error page titled "Try Again (503) - My App".
Info:
Thanks in advanced!
Edit: Something that first came to mind was an outage of some sort but there appears to be no scheduled maintenance and no reported outages.
Edit: It appears that I am now able to access the Dashboard for my applications but deployment is now failing the same way (500 Server Error)
This was a temporary problem. I saw it as well, and a few other complained about it on the mailing list. The problem eventually went away.
So this is how I fixed it:
What I did just to test was create a brand new sample project and deploy it as the first application to app engine, but I got another error that told me another admin was updating this application and in order to fix this transaction, I had to run "appcfg rollback" on the app. So, I searched for appcfg in the eclipse plugins folder, opened a command window there and ran:
appcfg rollback "path_to_project_in_eclipse_workspace\war"
I then deployed successfully the new test application and then deployed the original application and everything worked smoothly.
Not exactly sure what happened. A transaction could have just failed and screwed up the app on the app engine servers but the rollback command worked (Thank God!) and now I'm not having any problems.
Hope this can help someone else!