Categories
Performance Testing

Performance testing: Profiling using YJP

What performance problems may arise?

a) Application algorithms are usually not optimal, which leads to performance bottlenecks.

b) Memory related issues: Memory-related issues can affect an application’s execution speed and stability.

c) When Java Virtual Machine cannot allocate an object (because it is out of memory, and no more memory can be freed by the garbage collector), OutOfMemoryError is thrown, which can cause an application crash or further unstable operation.

d) An application that uses a lot of memory reduces available physical memory for itself and other programs, and thus forces the operating system to swap memory pages to and from the disk more frequently. This leads to serious overall system performance degradation.

e) Java Virtual Machine spends more time to perform garbage collection when more objects exist and more temporary objects are created.

One reply on “Performance testing: Profiling using YJP”

Leave a Reply

Your email address will not be published. Required fields are marked *