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 moreRelated posts
Sensitivity labels available soon for Viva Engage communities
Starting late March 2026, Viva Engage communities will support Microsoft Purview sensitivity labels applied to Microsoft 365 groups and ShareP...
Microsoft 365 Copilot: Planner agent rename and rollout to premium and basic plans
Starting mid-March 2026, Microsoft Planner’s Project Manager agent will be renamed Planner agent, with expanded availability to Microsof...
Improved copy and paste support for @mentions and shared contacts in Microsoft Teams
Microsoft Teams will preserve interactive @mentions, shared contacts, and supported tags during copy and paste if valid in the destination, fa...
Introducing awards and certifications section in M365 profile card
Starting mid-March to early April 2026, Microsoft 365 profile cards will display an Awards and Certifications section showing title, issuer, a...
SharePoint: Plan and Create Pages with AI
This feature allows you to edit new and existing pages with an AI chat pane. Now, with just prompts, you can add webparts, grounding documents...
Microsoft Teams: Video recap in Teams
Intelligent meeting recap will now include video-based recaps. Video recap creates narrated video highlights from recorded meetings, featuring...
Microsoft Teams: Enhancements to Interpreter quality and support for Traditional Chinese
Interpreter now delivers more accurate real-time interpretation, with improved recognition of people’s names and common industry terms. It als...
Microsoft Purview: Data Loss Prevention – File Quarantine Action in DLP for SharePoint/OneDrive
File Quarantine action in Microsoft Purview DLP for SharePoint and OneDrive, enables stronger, immediate protection for sensitive data. When a...
Microsoft Teams: Spoken language detection is now automatic
Spoken language detection is now fully automatic. Teams will automatically detect each speaker’s spoken language and update it in real time as...
Teams Suppresses Sentiments in Meeting Chats
In December 2024, Microsoft introduced a control to block responses to sentiment-related prompts in Teams meeting chat. Now that block extends...