article thumbnail

Java Parallel GC Tuning

DZone

Parallel garbage collector (Parallel GC) is one of the oldest Garbage Collection algorithms introduced in JVM to leverage the processing power of modern multi-core systems. Parallel GC aims to reduce the impact of GC pauses by utilizing multiple threads to perform garbage collection in parallel.

Tuning 243
article thumbnail

How to Optimize CPU Performance Through Isolation and System Tuning

DZone

CPU isolation and efficient system management are critical for any application which requires low-latency and high-performance computing. To achieve this level of performance, such systems require dedicated CPU cores that are free from interruptions by other processes, together with wider system tuning.

Tuning 246
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

A Comprehensive Guide to Hyperparameter Tuning: Exploring Advanced Methods

DZone

Hyperparameter tuning is an essential practice in optimizing the performance of machine learning models. This article provides an in-depth exploration of advanced hyperparameter tuning methods, including Population-Based Training (PBT), BOHB, ASHA, TPE, Optuna, DEHB, Meta-Gradient Descent, BOSS, and SNIPER.

Tuning 141
article thumbnail

Performance Tuning Java Applications in Linux

DZone

Learn how to make your Java applications performance perfectly. You may also like: How to Properly Plan JVM Performance Tuning. While Performance Tuning an application both Code and Hardware running the code should be accounted for. Ensure there is enough RAM to hold your java process.

Java 147
article thumbnail

Why applying chaos engineering to data-intensive applications matters

Dynatrace

Stream processing One approach to such a challenging scenario is stream processing, a computing paradigm and software architectural style for data-intensive software systems that emerged to cope with requirements for near real-time processing of massive amounts of data. This significantly increases event latency.

article thumbnail

Application Performance Review Process

DZone

Application performance Review (also known as Application Performance Walkthrough or Application Performance Assessment) is the process of review of an existing application (in production) to evaluate its performance and scalability attributes. I would like to see a review of this performance!

article thumbnail

How To Use BenchmarkDotNet: 6 Simple Performance-Boosting Tips To Get Started

DZone

As software engineers, we are always striving for high performance and efficiency in our code. Whether it’s optimizing algorithms or fine-tuning data structures, every decision we make can have a significant impact on the overall performance of our applications.