I'm doing some research on the topic of applications in production and I'd like to get feedback on Where and How applications fail in production. If you have any experiences here I'd love to hear about them. I'll post the results of my research.
Thanks
Michael Mattox
-
Where/How do applicatioins fail in production? (2 messages)
- Posted by: Michael Mattox
- Posted on: March 20 2003 09:33 EST
Threaded Messages (2)
- Where/How do applicatioins fail in production? by Dave C on March 20 2003 10:32 EST
- Where/How do applicatioins fail in production? by Mike Spille on March 20 2003 10:53 EST
-
Where/How do applicatioins fail in production?[ Go to top ]
- Posted by: Dave C
- Posted on: March 20 2003 10:32 EST
- in response to Michael Mattox
Running out of disk space
Losing network connectivity with external resources (e.g. database)
Someone not checking for null!
resource leaks
memory leaks
someone didn't set the runtime memory args to the JVM properly
basically anything the programmer assumes will not happen, will happen. -
Where/How do applicatioins fail in production?[ Go to top ]
- Posted by: Mike Spille
- Posted on: March 20 2003 10:53 EST
- in response to Dave C
I'll add in:
- Operator error
- Badly formatted input into a server/process/feed
- Faulty release into production
-Mike