vote up 3 vote down star
2

If you had to audit a Java application for worst-practices when it comes to high-availability and disaster recovery, you would probably look for hardcoded IP addresses and suboptimal caching of bind handles. What else should be considered?

flag

37% accept rate
Logging doesn't help as this is a runtime characteristic that is useful only after code has been written. I guess audit should include a checklist of things to look for while doing a code review. – jm04469 May 27 at 10:40

5 Answers

vote up 0 vote down

The best thing to do is to schedule some down time and test it. You will find many more problems doing this. Once you have everything documented, get someone else to do it without your help. ;)

link|flag
vote up 3 vote down

Since proper monitoring is already mentioned, I would add having a contingency plan in place. It can be something as simple as: if this happens then we do this, if this other thing happens then we do that. Then when problems occur you just follow the (previously tested) plan instead of having everyone panic and taking quick decisions.

link|flag
vote up 3 vote down

Lack of action/state logging.

A Java application should be able to resume where it was when it crashed.
That means there should be a mechanism able to record what has already done (in order to not do everything all over again at the next run).

That also means such a Java program should always achieve the same state after the same set of actions. (Doing something twice would result in the same result, and the actions already done should not be done again, but simply skipped)

That record can take many form (file, database, metadata in a repository of sort, ...), but the point is: a Java application willing to recover as fast as possible should know what it has already done.

link|flag
vote up 1 vote down

Lack of logging. If you can't find what killed your app, it's really hard to fix it. This is particularly nasty when you have very intermittent failures that have hard-to-repro cases.

link|flag
vote up 2 vote down

Lack of monitoring facilities. Sooner or later, all applications will fail. When that happens, you'll want to know about it before anyone else does.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.