top of page
Writer's pictureIshan Deshpande

Guide to Starter Pools in Microsoft Fabric Workspace



What is a Starter Pool?


A Starter Pool in Microsoft Fabric is a pre-configured Spark cluster designed for quick deployment and ease of use. It allows users to run Spark jobs without extensive setup, making it ideal for both novice and experienced users. The Starter Pool is automatically created when a workspace is established, ensuring immediate availability.


Key Features of Starter Pools


  • Always-On Availability: Starter Pools are always active, minimizing wait times for job execution.

  • Dynamic Scaling: They can automatically adjust the number of nodes based on workload demands.

  • Predefined Configurations: Admins can customize settings according to specific project needs.


Capacity Configuration


The capacity of a Starter Pool is determined by the purchased Fabric SKU, which dictates the number of nodes and executors available. Here’s a breakdown of different configurations for the Trail SKU.

Fabric Capacity SKU

Capacity Units

Spark VCores

Node Size

Max Nodes

F64

64

384

Small

96

F64

64

384

Medium

48

F64

64

384

Large

24

F64

64

384

X-Large

12

F64

64

384

XX-Large

6

Each node size comes with its own set of resources, allowing users to select configurations that best fit their workloads. For example, a medium node can support up to 48 nodes in a Starter Pool configuration.


Key Components Affecting Job Execution Performance


  1. Capacity Units:

    • Capacity units represent the total computing power available in your Microsoft Fabric workspace. Each capacity unit corresponds to a certain number of Spark VCores.

    • For example, a Fabric capacity SKU F64 provides 64 capacity units, translating to 384 Spark VCores (64 * 2 * 3X Burst Multiplier). The more capacity units you have, the more resources are available for executing jobs.

  2. Spark VCores:

    • Spark VCores are the fundamental units of computing power allocated to your Spark jobs. They determine how many concurrent tasks can run within your cluster.

    • More VCores lead to better parallelism in job execution, which is crucial for handling larger datasets or more complex computations.

  3. Node Size:

    • Node size defines the amount of memory and CPU resources allocated to each node in the pool. Common sizes include Small, Medium, Large, X-Large, and XX-Large.

    • Choosing the right node size affects performance; larger nodes can handle more data and more complex workloads but may be overkill for simpler tasks.

  4. Max Nodes:

    • The maximum number of nodes determines how many instances of Spark can run concurrently in your Starter Pool.

    • Configuring this setting allows dynamic scaling based on job demand, enabling efficient resource utilization. More nodes can significantly reduce job execution time for large-scale data processing tasks.


Choosing the Right Configuration


Selecting the appropriate configuration involves understanding your workload requirements:


  • Small Datasets (e.g., < 100K rows):

    • Use a Single Node Custom Pool or a Starter Pool with a Small node size.

      For smaller datasets, single-node operations are often sufficient since they minimize overhead and startup time while still providing adequate performance.

  • Medium Datasets (e.g., 100K - 1M rows):

    • Opt for a Medium Node Size in a Starter Pool with up to 24 max nodes.

      This configuration balances resource allocation with performance needs, allowing for parallel processing without excessive resource consumption.

  • Large Datasets (e.g., > 1M rows):

    • Utilize Large or X-Large Node Sizes with higher max nodes (up to 12 or more).

      Larger datasets benefit from increased parallelism and memory resources to ensure efficient processing times.


Bursting and Smoothing


Two crucial concepts in managing workloads within Microsoft Fabric are bursting and smoothing:


  • Bursting: This feature allows users to temporarily exceed their allocated capacity. For instance, if your workload demands more resources than your current capacity allows, Fabric will provide additional resources (up to 12 times the normal capacity) for a limited time. This is particularly useful during peak usage times when immediate resource availability is critical.

  • Smoothing: Following a burst, Microsoft Fabric implements smoothing to manage resource consumption over time. This means that the excess capacity used during the burst will be "paid back" by reducing available resources over the next 24 hours. Smoothing helps prevent sudden spikes in resource usage from overwhelming the system and ensures smoother performance during high-demand periods.


Customizing Starter Pools


Admins have the ability to customize Starter Pools based on specific requirements. Here’s how to do it:

  1. Navigate to your workspace and select Workspace Settings.

  2. Expand the Data Engineering/Science menu.

  3. Choose the Starter Pool option.

  4. Set maximum node configurations according to your purchased capacity or reduce them for smaller workloads.

By enabling dynamic allocation of executors, the system optimizes resource management based on job-level compute needs.


Conclusion


Starter Pools in Microsoft Fabric offer an efficient way to manage Spark workloads with their always-on availability, dynamic scaling capabilities, and straightforward configurations. Understanding how to leverage bursting and smoothing can significantly enhance performance during peak workloads while managing costs effectively. By customizing Starter Pools according to specific project needs, data professionals can ensure optimal resource utilization and seamless data processing experiences in their analytics workflows.

That's all for this blog see you in the next one!

bottom of page