© 2015-2024. MindStreamAnalytics.com

OneStream Business Rule Performance Tips:

Multithreading For Loops in C# and VB.NET

With today's multi-core processor servers, using concurrent programming can significantly boost the performance of your Business Rule Code. One common scenario where concurrency shines is looping through large datasets or performing repetitive tasks. By multithreading these loops, we can divide and conquer, processing chunks of data in parallel. In this post, we'll discuss the "how" and "why" of multithreading for loops in both C# and VB.NET business rules.

Why Use Multithreading?

  • 1. Performance: In applications that require extensive CPU-bound operations, like calculations in a loop, multithreading can exploit multiple cores of a CPU, executing processes concurrently and improving overall execution speed.
  • 2. Responsiveness: In UI applications, offloading time-consuming loops to a separate thread keeps the user interface responsive. This ensures the application remains user-friendly, even during heavy processing.
  • 3. Resource Utilization: Multithreading can optimize resource utilization. It ensures that while one thread is waiting for resources (e.g., I/O operations), another can continue executing, ensuring the CPU isn't idling.

How to Multithread For Loops?

.NET offers several tools for parallelism, but for the sake of simplicity, we’ll focus on the Parallel.For method provided by the System.Threading.Tasks namespace.

VB.NET Example:

Let's take a simple for loop that does some synchronous, one at a time, CPU-bound operation:

To multithread this loop using Parallel.For, the code becomes:

C# Example:

Things to Keep in Mind:

  • 1. Not Always Faster: Introducing parallelism adds overhead. For small loops or tasks, the overhead might negate the benefits, even slowing down the execution. Always profile/time your application to see if multithreading offers real benefits.
  • 2. Thread Safety: When multiple threads can access shared data simultaneously, race conditions can occur. Ensure that your operations within the loop are thread-safe. If needed, use locks, but be wary of potential deadlocks.
  • 3. Max Degree of Parallelism: By default, Parallel.For utilizes as many system cores as available. However, you might not want to utilize all cores, especially in a shared system. Control this by setting MaxDegreeOfParallelism:

Ordering: Parallel execution doesn't guarantee that the iterations will execute in order. If ordering is crucial, reconsider if parallelism is the right choice for your loop.

In conclusion, multithreading for loops in both C# and VB.NET can be a powerful tool to improve performance, especially in CPU-bound scenarios. However, like all tools, it should be used judiciously and appropriately, considering thread safety and the specific needs of the application. Try using a parallel for loop in your rule and note the change in performance.

Partner SpotLight

OneStream aligns to your business needs and changes more quickly and easily than any other product by offering one platform and one model for all financial CPM solutions. OneStream employs Guided Workflows, validations and flexible mapping to deliver data quality confidence for all collections and analysis while reducing risk throughout the entire auditable financial process.

OneStream Profile

Case Studies

Accumen

Thanks to the intervention of MindStream Analytics, Accumen's Finance department can now model their business with a new, more organized structure that isn't conventionally available in NetSuite.

Acme Brick

Acme Brick turned to MindStream Analytics for help implementing OneStream to replace their outdated TM1 solution.

Alterra

Alterra sought the expertise of MindStream to address the challenges they faced in their Capital Planning process.

ATCO Group

Energy conglomerate ATCO operates worldwide in utilities, power generation, and related services.

Avalon

Working with MindStream Analytics, Avalon Healthcare Solutions adopts NetSuite Planning and Budgeting to accelerate budgeting and forecasting processes.

Bayer Health Care

Bayer Healthcare implemented Hyperion Planning and Workforce Planning in 10 weeks to dramatically streamline their Income Statement budget and Workforce Planning process..

BluEarth

MindStream Analytics' partnership with BluEarth Renewables epitomizes the power of technology and collaboration.

Celgene

An Oracle Hyperion Planning Upgrade provides multi-national organization Hyperion Application optimization and stabilization.

Cleaver Brooks

OneStream XF was chosen as the platform that would transform Cleaver-Brooks' Finance processes.

CoorsTek

The collaboration between CoorsTek and MindStream resulted in significant improvements in CoorsTek's financial consolidation and reporting processes.

Elite Body Sculpture

MindStream Analytics' collaboration with Elite Body Sculpture encapsulates the transformative potential of targeted tech solutions in streamlining administrative processes.

Enlyte

Enlyte, a merger of Mitchell, Genex, and Coventry, faced challenges with disparate financial solutions and the need for combined reporting.

Flanders

MindStream Analytics collaborated with Flanders to implement OneStream Consolidation and Reporting solution.

Foley Products

Foley Products was facing a significant challenge with its Excel-based actual management reporting system.

Harte Hanks

The collaboration between MindStream Analytics and Harte Hanks culminated in a highly customized, user-friendly NetSuite implementation.

Interface

Interface used a complex, manual, excel-based FP&A process for monthly review, and the summary data was loaded in OneStream.

Kymera International

Thanks to Mindstream Analytics' assistance, Kymera was able to load all of their data into OneStream and validate it successfully.

MacLean Fogg

MacLean-Fogg partnered with MindStream, a leading implementor specializing in modernizing and optimizing enterprise systems.

MEPPI

MindStream's expertise and experience were sought to conduct a vendor selection initiative focusing on MEPPI's F2023 planning process.

OUAI

MindStream Analytics and OUAI's collaboration showcases the transformative power of strategic technological intervention.

Plaskolite

By migrating to OneStream, Plaskolite has achieved a material reduction in consolidation time and overall Financial Close cycle, eliminated the hours spent compiling and verifying data in Excel, streamlined its Planning, Budgeting and Forecasting model and delivered flexible and timely reporting that enables more strategic analysis of their financial data.

Redwire

Understanding the nuances of Redwire's challenges, MindStream Analytics devised a holistic approach to overcome them. The implementation of NetSuite was just the beginning.

Simon

Simon's existing corporate Hyperion Financial Management (HFM) production application was consolidating at a rate of seven hours, a performance issue causing great headache to corporate Accounting.

Source Code

The successful transition to OneStream revolutionized Source Code's financial reporting.

Subway

Subway collaborated with MindStream Analytics for the NetSuite Analytics Warehouse implementation.

UPenn

MindStream Consulting and AppCare team members are proud be working side by side with UPenn university in accomplishing this implementation and along with continuing our AppCare services after go-live.

USG

USG was an Oracle Hyperion customer realizing that it needed more specialized support for its various Oracle Hyperion applications.

Vantiv

Dividing a hyperion planning application, expanding the hyperion footprint to forecast on the business? Customer categories.

Versant Health

Versant Health engaged MindStream to help resolve the challenges they were experiencing with their consolidation, close, and financial reporting processes.

Virginia Spaceport Authority

The MindStream team implemented the Standard + Workforce NetSuite Planning & Budgeting.

WeWork

MindStream Analytics determined that the best solution was to implement Oracle Essbase Cloud as part of the Oracle Analytics Cloud (OAC) platform-as-a-service

WindStream

Innovative use of essbase to streamline and connect hyperion financial management for enhanced financial analysis.

XY Planning

MindStream Analytics, well-versed in addressing such challenges, presented a comprehensive Netsuite solution for XY Planning.

Related Links