Mike Jr
Mike Jr

Reputation: 175

ColdFusion 8 Performance & Load Monitoring

Question: What are tips and tools you can give us to help troubleshoot & monitor performance on ColdFusion 8 & the JRE?

What we're currently doing: We currently use a combination of the following to help us, but feel like we're not really getting anywhere. I'd love to be able to have a peak into the JRE to see what's going on.

System Info: We are running multiple ColdFusion 8 Application servers. They were installed on RH Linux with ColdFusion 8,0,1,195765 Standard, using the default Sun JRE v1.6.0_04 that came with the installer. Our databases are on a dedicated database server, running MySQL 5.0.45 on RH Linux.

Problems: We are running into weird issues, such as the following:

Extra info:

Upvotes: 3

Views: 1218

Answers (2)

Adam Tuttle
Adam Tuttle

Reputation: 19804

For what it's worth (Even though I flagged your post as "should be moved to ServerFault"), I think you should start by switching client storage from Registry to Database. As pointed out in your other question, with database connection pooling the extra database hits are fairly minimal -- and use of the Registry is unsupported on Linux; which should throw up a red flag for you.

Upvotes: 0

Jayson
Jayson

Reputation: 2031

I would highly suggest that you upgrade the JRE, especially if your applications are making heavy use of cfc components. There is a bug in the older JRE version that makes object creation slow.

Using the registry will not work on linux. You can only use database or cookies, but I don't know what ColdFusion will do if registry is selected on linux. I would suggest the database for client storage. Be aware that users can modify cookies on their system if you use cookies for client storage.

Apache JMeter may be a tool worth looking at if you have further problems.

Also, have a look here for more info on performance issues and client storage.

Upvotes: 1

Related Questions