Loading...

Unlocking Maximum Performance in SharePoint Online: Tips to Avoid Throttling and Boost Your Productivity

Unlocking Maximum Performance in SharePoint Online: Tips to Avoid Throttling and Boost Your Productivity

Microsoft 365 SharePoint Online is a powerful platform with various APIs and features. However, to maintain optimal performance and reliability, SharePoint Online employs throttling mechanisms to prevent the overuse of resources. Throttling limits the number of API calls and operations within a specified time window. This article will explore common scenarios where throttling occurs and provide best practices to handle throttling effectively. Additionally, I will provide sample Python code demonstrating how to make Graph API requests to SharePoint Online while incorporating these best practices.

Understanding Throttling in SharePoint Online

Throttling in SharePoint Online can occur at both the user and application levels. User throttling restricts the number of calls and operations made by applications on behalf of a user, while application throttling imposes limits on applications within a tenant based on the number of licenses purchased per organization.

When throttling occurs, SharePoint Online returns HTTP status codes, such as 429 (“Too many requests”) or 503 (“Server Too Busy”). SharePoint Online includes a Retry-After header in the response, which indicates the recommended time to wait before retrying or making a new request. It is crucial to honor the Retry-After header to avoid further throttling and handle the situation efficiently.

Best Practices to Handle Throttling

Reduce Concurrent Requests

To avoid overwhelming the SharePoint Online service, limit your application’s simultaneous requests. Consider implementing queuing mechanisms or introducing delays between requests. By reducing concurrent requests, you can minimize the likelihood of triggering throttling and improve the overall performance of your application.

Avoid Request Spikes

Sporadic and bursty requests can trigger throttling. Optimize your code to avoid sudden spikes in traffic. Spread out requests evenly over time to maintain a consistent load on the service. Consider implementing throttling mechanisms in your application to ensure that the number of requests made to SharePoint Online remains within the allowed limit. By avoiding request spikes, you can minimize the likelihood of triggering throttling and improve your application’s overall performance and reliability.

Utilize Microsoft Graph APIs

Microsoft Graph APIs offer improved performance and resource consumption compared to CSOM and REST APIs. Whenever possible, choose Microsoft Graph APIs to minimize the impact of throttling. Microsoft Graph APIs are cloud-born APIs that have the latest improvements and optimizations. Microsoft Graph APIs generally consume fewer resources than CSOM and REST to achieve the same functionality. Hence, adopting Microsoft Graph APIs can improve your application’s performance and reduce throttling.

Honor Retry-After and RateLimit Headers

When a request receives a 429 status code, SharePoint Online includes a Retry-After header indicating the recommended wait time before retrying. Honor this header to ensure the shortest delay and reduce the wastage of quotas in throttled requests. SharePoint Online may also return RateLimit headers for certain limits in specific conditions. Take advantage of these headers to proactively manage rate limiting and avoid hitting throttling thresholds. By honoring Retry-After and RateLimit headers, you can ensure efficient utilization of resources and minimize the impact of throttling on your application.

How to Handle Throttling

By following the best practices outlined above, you can maximize the performance of your SharePoint Online applications and mitigate the risk of throttling. Reducing concurrent requests, avoiding request spikes, utilizing Microsoft Graph APIs, and honoring Retry-After and RateLimit headers will help optimize your application’s performance while maintaining a reliable and responsive user experience. Incorporating these practices into your code, as demonstrated in the provided Python sample, will enhance the resilience of your SharePoint Online applications and ensure efficient utilization of resources.

Sample Python Code

import requests
import time

class GraphAPIHandler:
    def __init__(self, tenant_id, client_id, client_secret, user_agent):
        self.tenant_id = tenant_id
        self.client_id = client_id
        self.client_secret = client_secret
        self.user_agent = user_agent
        self.access_token = None

    def get_access_token(self):
        token_url = f'https://login.microsoftonline.com/{self.tenant_id}/oauth2/v2.0/token'
        payload = {
            'client_id': self.client_id,
            'client_secret': self.client_secret,
            'scope': 'https://graph.microsoft.com/.default',
            'grant_type': 'client_credentials'
        }
        headers = {
            'User-Agent': self.user_agent
        }
        response = requests.post(token_url, data=payload, headers=headers)
        response_data = response.json()
        if 'access_token' in response_data:
            self.access_token = response_data['access_token']
        else:
            raise Exception('Failed to obtain access token')

    def make_graph_api_request(self, url):
        headers = {
            'Authorization': f'Bearer {self.access_token}',
            'User-Agent': self.user_agent
        }
        response = requests.get(url, headers=headers)
        if response.status_code == 200:
            return response.json()
        elif response.status_code == 429:
            retry_after = int(response.headers.get('Retry-After', 0))
            if retry_after > 0:
                print(f'Received 429 status code. Waiting for {retry_after} seconds before retrying...')
                time.sleep(retry_after)
                return self.make_graph_api_request(url)  # Retry the request
            else:
                raise Exception('Received 429 status code, but Retry-After header was not provided.')
        else:
            raise Exception(f'Request failed with status code: {response.status_code}')

# Usage example
tenant_id = '<your_tenant_id>'
client_id = '<your_client_id>'
client_secret = '<your_client_secret>'
user_agent = 'ISV|YourCompanyName|YourAppName/1.0'

graph_handler = GraphAPIHandler(tenant_id, client_id, client_secret, user_agent)

try:
    graph_handler.get_access_token()

    graph_api_url = 'https://graph.microsoft.com/v1.0/me'
    user_data = graph_handler.make_graph_api_request(graph_api_url)
    print('User data:', user_data)

except Exception as e:
    print('An error occurred:', str(e))

The above Python code demonstrates how to define the API endpoint and access token, define the retry mechanism, define the HTTP adapter, define the headers, define the request, and handle the response. Incorporating these best practices into your code will help optimize the performance of your SharePoint Online applications and ensure efficient utilization of resources.

Conclusion

In conclusion, Microsoft 365 SharePoint Online offers a range of powerful features and APIs, but to maintain optimal performance and reliability, SharePoint Online employs throttling mechanisms to prevent the overuse of resources. Throttling limits the number of API calls and operations within a specified time window. By following the best practices outlined in this article, you can maximize the performance of your SharePoint Online applications and mitigate the risk of throttling. Reducing concurrent requests, avoiding request spikes, utilizing Microsoft Graph APIs, and honoring Retry-After and RateLimit headers will help optimize your application’s performance while maintaining a reliable and responsive user experience. Incorporating these practices into your code, as demonstrated in the provided Python sample, will enhance the resilience of your SharePoint Online applications and ensure efficient utilization of resources.

Although the best practice for avoiding SharePoint Online throttling is to optimize your code to minimize the impact of service-related limits, SharePoint Online provides a number of tools to manage and troubleshoot throttling in your tenant. For example, you can use the SharePoint Online Component-based Scalable Logical Architecture(CSLA) tool, monitor the health of your environment, and identify potential throttling issues. The tool, accessed through an elevated command prompt, enables you to configure throttling policies, restrict access to specific endpoints and resources, and monitor the health of your SharePoint Online deployments. Additionally, the SharePoint Online Knowledge Base contains information regarding the most common throttling scenarios and possible solutions.

Even with all the available tools, it can be difficult to detect and address throttling issues in your SharePoint Online environment. To manage and troubleshoot potential throttling issues, perform continuous monitoring of your environment. Monitor the health of your SharePoint Online deployments and identify potential misuse. Also, keep in mind that throttling can occur for any number of reasons—from network bottlenecks to limited server resources and performance degradation.

Published on:

Learn more
Home | Joseph Velliah
Home | Joseph Velliah

Fulfilling God’s purpose for my life

Share post:

Related posts

Microsoft 365 Admin Center: Pin agents in M365 Copilot Chat

This feature enables AI administrators to pin specific agents in M365 Copilot Chat for all users in the tenant or defined users and groups, im...

17 hours ago

Microsoft Viva: Viva Glint – Include missing survey takers

This feature enables a Glint Admin to create surveys for participants who were not originally included in a live survey. With this update, the...

17 hours ago

Microsoft Copilot (Microsoft 365): Overview of recent comments and changes in Word, Excel, PowerPoint

Use Copilot to see a summary of the latest comments and changes made to your Word, Excel and PowerPoint files using the Copilot chat pane. Pro...

17 hours ago

Microsoft Copilot (Microsoft 365): Add images to your Copilot prompts in M365 applications chat in government clouds

Add images now to Copilot chat in applications of Word, PowerPoint, Excel, OneNote and Outlook. Available to government cloud (GCC) environmen...

17 hours ago

Microsoft 365 Admin Center: Admin Copilot available in GCC

Microsoft Copilot in the Microsoft 365 admin center will soon be available in government clouds (GCC). Tenants that have at least one Microsof...

17 hours ago

Microsoft Copilot (Microsoft 365): Realtime voice interactions in Word and PowerPoint

Use your voice to talk with Copilot, interact in-real time, and understand the content within your document or presentation. Product PowerPoin...

17 hours ago

Microsoft Viva: Viva Glint – User Schema Enhancements- Create and Edit Hierarchies

This feature enables Viva Glint admins to create and edit hierarchies directly within the platform. It empowers admins to easily update and ma...

17 hours ago

Microsoft Copilot (Microsoft 365): Copilot in Excel with Python for GCC High

Copilot in Excel gains powerful new insights and visualizations with Advanced Analysis. Explore your data in a natural, conversational way, wh...

17 hours ago

Microsoft Viva: Allow/disable reactions in Engage events

Organizers can now disable reactions in Engage events. When this setting is turned off, attendees won’t see or be able to use reactions on que...

17 hours ago

AI-First Future with Microsoft 365 Copilot

Work is changing. Imagine a workday where AI seamlessly integrates into every task, transforming the way we operate. This is not a distant fut...

18 hours ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy