Search:

Type: Posts; User: Ram Lakshmanan

Page 1 of 6 1 2 3 4

Search: Search took 0.07 seconds.

  1. How to capture Node.js Garbage Collection traces?

    https://i0.wp.com/blog.gceasy.io/wp-content/uploads/2024/04/Thumbnail.png?w=1280&ssl=1

    Garbage collection (GC) is a fundamental aspect of memory management in Node.js applications. However,...
  2. View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2024/02/Thumbnail-30.png?w=1280&ssl=1

    In this post, we would like to share our real-world experience in optimizing a Java application which was...
  3. Spring RestTemplate to WebClient causes OutOfMemoryError

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2024/01/Thumbnail-12.png?w=1280&ssl=1

    Spring Boot is a highly popular framework for Java enterprise applications. One common method of...
  4. View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2024/02/1-top-from-host.png?resize=1400%2C597&ssl=1

    “top” is a robust, lightweight command-line tool that provides real-time reports on...
  5. Replies
    0
    Views
    411

    View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2024/01/Thumbnail-13.png?w=1280&ssl=1

    Java NIO (New Input/Output) is high-performance networking and file handling API that facilitates you to...
  6. Replies
    0
    Views
    665

    Shenandoah GC Tuning

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/11/Parallelism-in-ConcurrentHashMap-48.png?w=1200&ssl=1

    Shenandoah GC aims to reduce pause times in Java applications by performing garbage...
  7. Replies
    0
    Views
    854

    Java CMS GC Tuning

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/11/Parallelism-in-ConcurrentHashMap-44.png?w=1200&ssl=1

    Java Concurrent Mark & Sweep (CMS) algorithm operates by dividing the garbage...
  8. Replies
    0
    Views
    876

    Serial GC Tuning

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/11/Parallelism-in-ConcurrentHashMap-43.png?w=1200&ssl=1

    Tailored for simplicity and effectiveness, the Serial GC operates with a...
  9. View Post

    https://i0.wp.com/blog.fastthread.io/wp-content/uploads/2023/10/Parallelism-in-ConcurrentHashMap-28.png?w=1200&ssl=1

    Have you ever wondered what happens when the Java Virtual Machine (JVM)...
  10. Replies
    0
    Views
    1,029

    View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/09/Parallelism-in-ConcurrentHashMap-3.png?w=1200&ssl=1

    Garbage Collection is a facet often disregarded and underestimated, yet beneath its...
  11. Replies
    0
    Views
    1,138

    How to aim for High GC Throughput

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/08/Parallelism-in-ConcurrentHashMap.png?w=1200&ssl=1

    3 – 4 decades back, developers were responsible for evicting (i.e., deallocating) the...
  12. Diagnose CPU spike in a non-intrusive manner!

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/07/cpu-spike.png?w=1200&ssl=1

    In this post, we are going to discuss a non-intrusive approach (i.e., approach that doesn’t add any...
  13. Simulating & troubleshooting CPU spike in Scala

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2022/10/Youtube-Thumbnail-Options-64.png?resize=1200%2C675&ssl=1

    In this series of simulating and troubleshooting performance problems in Scala...
  14. Replies
    0
    Views
    1,528

    Java ZGC algorithm Tuning

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/07/zgc-2.png?w=1200&ssl=1

    ZGC is a specialized garbage collector that focuses on managing large heaps and minimizing pauses in Java...
  15. How to reduce CPU consumption caused by Garbage Collection?

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/07/ycrash-2-1.png?w=1200&ssl=1

    All the modern programming languages such as Golang, nodejs, Java, .net, python,…. does automatic garbage...
  16. Simulating & troubleshooting Deadlock in Scala

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2022/10/Java-String-intern-Interesting-Q-A-21.png?resize=1200%2C675&ssl=1

    All multi-threaded applications are prone to Deadlock. Modern Scala...
  17. Is Garbage Collection Consuming High CPU in My Application?

    Automatic garbage collection is a prevalent feature in modern programming languages such as Golang, Node.js, Java, .NET, and Python. While it offers convenience to developers by automatically...
  18. 16 Artifacts to capture when your container application is in Trouble

    Troubleshooting the container application’s performance is tricky, if proper diagnostic information isn’t captured. In this video, I have discussed the below 16 essential artifacts which you can...
  19. Memory Patterns to predict production outages

    It’s not just stock market charts that have patterns. Your application memory also has patterns. In this video, 6 unique memory patterns have been discussed:

    1.Healthy saw-tooth pattern
    2.Heavy...
  20. Known Java APIs, Unknown Performance impact!

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/02/known-api.png?resize=1200%2C675&ssl=1
    There are certain Java APIs that we use in our everyday programming:

    UUID Generation...
  21. View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/03/images.001.png?w=960&ssl=1

    Several of us might be familiar with the ]clear () API in Java collections framework. In this post, let’s...
  22. Simulating & troubleshooting BLOCKED threads in Scala

    https://i0.wp.com/blog.fastthread.io/wp-content/uploads/2022/10/ft-blocked-threads-in-scala.png?w=1280&ssl=1

    In this series of simulating and troubleshooting performance problems in Scala, let’s...
  23. Replies
    0
    Views
    1,632

    Java synchronized block

    https://i0.wp.com/blog.fastthread.io/wp-content/uploads/2023/03/synchronized-block.001.png?w=960&ssl=1

    In the earlier post we learnt about the Java synchronized method. In this post, let’s learn...
  24. Simulating & troubleshooting Thread leak in Scala

    https://i0.wp.com/blog.fastthread.io/wp-content/uploads/2022/10/ft-thread-leak-in-scala.png?w=1280&ssl=1

    In this series of simulating and troubleshooting performance problems in Scala, let’s...
  25. View Post

    https://i0.wp.com/blog.ycrash.io/wp-content/uploads/2023/02/apis-to-create-java-virtual-threads-1-2.png?resize=1200%2C675&ssl=1

    When a method is synchronized, only one thread can enter that...
Results 1 to 25 of 144
Page 1 of 6 1 2 3 4