cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
cancel
Showing results for 
Search instead for 
Did you mean: 

Sequential vs concurrency optimization questions from query!

chorongs
New Contributor III

Preparing for databricks eligibility!
Is the content below correct?

"If the queries are running sequentially then scale up (increase the size of the cluster from 2x small to 4x large)
If the queries are running concurrently or with many users then scale out (add more clusters. Increase the SQL endpoints scaling range)"

 

1 ACCEPTED SOLUTION

Accepted Solutions

Anonymous
Not applicable

Scaling in Databricks involves two aspects: vertical scaling (scale up) and horizontal scaling (scale out).

  1. Vertical Scaling (Scale Up):

    • If your queries are running sequentially, meaning one query at a time, and you want to improve performance for a single query, you can scale up the cluster by increasing the size of the nodes.
    • For example, you can upgrade from a smaller instance type (e.g., 2x small) to a larger instance type (e.g., 4x large) to allocate more resources to the query. This can improve query execution time for individual queries.
  2. Horizontal Scaling (Scale Out):

    • If your queries are running concurrently or there are multiple users running queries simultaneously, scaling out is a better approach. Scaling out involves adding more clusters to distribute the workload.
    • Instead of increasing the size of a single cluster, you can create multiple clusters and configure them to handle the workload in parallel.
    • Databricks provides features like Auto Scaling, which can automatically adjust the number of clusters based on workload demand. This helps ensure resources are efficiently allocated to handle the workload.

To summarize:

  • Sequential queries: Scale up by increasing the size of the cluster to allocate more resources for better performance.
  • Concurrent queries or multiple users: Scale out by adding more clusters to distribute the workload and enable parallel processing.

Keep in mind that the decision to scale up or scale out depends on the specific requirements of your workload, the complexity of your queries, and the concurrency level. It's essential to monitor and analyze the performance of your queries to determine the optimal scaling strategy.

Additionally, when it comes to SQL endpoints, scaling the range refers to adjusting the number of concurrent queries allowed. This can be useful when you have many users running queries simultaneously and need to ensure sufficient resources are available.

It's also worth noting that scaling alone might not be the only solution for improving performance. Optimizing your queries, leveraging query tuning techniques, and utilizing appropriate caching mechanisms can also significantly enhance query execution in Databricks.

View solution in original post

2 REPLIES 2

Anonymous
Not applicable

Scaling in Databricks involves two aspects: vertical scaling (scale up) and horizontal scaling (scale out).

  1. Vertical Scaling (Scale Up):

    • If your queries are running sequentially, meaning one query at a time, and you want to improve performance for a single query, you can scale up the cluster by increasing the size of the nodes.
    • For example, you can upgrade from a smaller instance type (e.g., 2x small) to a larger instance type (e.g., 4x large) to allocate more resources to the query. This can improve query execution time for individual queries.
  2. Horizontal Scaling (Scale Out):

    • If your queries are running concurrently or there are multiple users running queries simultaneously, scaling out is a better approach. Scaling out involves adding more clusters to distribute the workload.
    • Instead of increasing the size of a single cluster, you can create multiple clusters and configure them to handle the workload in parallel.
    • Databricks provides features like Auto Scaling, which can automatically adjust the number of clusters based on workload demand. This helps ensure resources are efficiently allocated to handle the workload.

To summarize:

  • Sequential queries: Scale up by increasing the size of the cluster to allocate more resources for better performance.
  • Concurrent queries or multiple users: Scale out by adding more clusters to distribute the workload and enable parallel processing.

Keep in mind that the decision to scale up or scale out depends on the specific requirements of your workload, the complexity of your queries, and the concurrency level. It's essential to monitor and analyze the performance of your queries to determine the optimal scaling strategy.

Additionally, when it comes to SQL endpoints, scaling the range refers to adjusting the number of concurrent queries allowed. This can be useful when you have many users running queries simultaneously and need to ensure sufficient resources are available.

It's also worth noting that scaling alone might not be the only solution for improving performance. Optimizing your queries, leveraging query tuning techniques, and utilizing appropriate caching mechanisms can also significantly enhance query execution in Databricks.

chorongs
New Contributor III

Can I use the serverless feature for SQL endpoints to troubleshoot query concurrency?

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.