Currently experiencing large load times
we currently have a pipe that queries salesforce via SOSL for search results. Using a normal *non ultra) pipeline task with a bearer token. When are using json to recieve and parse information then returning (non mapped) json to the requester.
This whole process takes 10 seconds which in production is an eternity.
Sample request:
{
“content”:
{
“language”:“en_US”,
“region”:“North_America__c”,
“customer-type”:“Customer__c”,
“keyword”:“the”,
“requiredFields”:“test1,test2”
}
}
Sample result:
[
{
“Title”: “test1”,
“ID__c”: 84
},
{
“Title”: “test2”,
“ID__c”: 75
},
{
“Title”: “test3”,
“ID__c”: 132
}
]
The results are very small so is the packet being sent in. Its also worth noting the pipe has a router determining a URL parameter for path that has 9 options.