Throttling is a mechanism to regulate the rate at which processing is performed
Questions tagged [throttling]
1092 questions
4
votes
5 answers
BizTalk: how to limit number of connections to a wcf service?
I developed a BizTalk application that receives as input a file that contains a bunch of messages. I use the BizTalk XML disassembler component to 'debatch' the file in sepereate messages. Each of those messages is picked up from the MessageBox by…

rvdginste
- 852
- 7
- 11
4
votes
1 answer
Is there something like ThrottleOrMax in rx?
Use case:
I'm writing a thing that monitors changes and saves automatically.
I want to Throttle so that I don't save more often than every five seconds.
I want to save every 30 seconds if there is a continuous stream of changes.
Could not find…

Johan Larsson
- 17,112
- 9
- 74
- 88
4
votes
1 answer
Getting Throttling Exception on AWS CLI calls as ThrottlingException error
I was trying to explore a new AWS service named Workspaces through AWS CLI and it seems to have the ability to cater 1 request/sec. When I try to hit multiple times simultaneously, it throws ThrottlingException error. Since workspaces is not in boto…

user3089927
- 3,575
- 8
- 25
- 33
4
votes
3 answers
Limit the cpu usage of a windows .NET service
is there any way to throttle the cpu usage of a windows service that is written in .NET, either inside the service code or outside. Setting the current thread to the lowest priority is not an option but as soon as exceptions start to occur the cpu…

Tim Mahy
- 1,319
- 12
- 28
4
votes
6 answers
Powershell Throttle Multi thread jobs via job completion
All the tuts I have found use a pre defined sleep time to throttle jobs.
I need the throttle to wait until a job is completed before starting a new one.
Only 4 jobs can be running at one time.
So The script will run up 4 and currently pauses for 10…

Samuel Meddows
- 36,162
- 12
- 38
- 36
4
votes
2 answers
WCF MaxConcurrentSessions exceeded
I am hitting into a problem with my company application.
I am going to summarize the system key elements:
My company's system is running since few years on Windows XP and 7 (Home, Pro, Basic) machines.
It has been written in .NET 4.0 and based upon…

Antonio Petricca
- 8,891
- 5
- 36
- 74
4
votes
4 answers
Forward Rx items with a cooldown, switching to sampling when they come too fast
I'm looking for the Rx method that will take an observable and put the latest item on a 'cooldown', so that when items are coming in slower than the cooldown they're just forwarded but when they're coming in faster you just get the latest value…

Craig Gidney
- 17,763
- 5
- 68
- 136
4
votes
2 answers
Amazon AWS micro instance with 100% cpu and unresponsive
I've been having a problem with my aws ec2 ubuntu instances, they always have a 100% cpu utilization over certain amount of time (around 8 hours) until i restart it.
The instance is ubuntu server 13.04 and it has a basic LAMP, that's all.
I have a…

Asfura
- 63
- 1
- 5
4
votes
2 answers
Chat Server Load Balancing
I've read the document on clustering and load balancing from Apache for Tomcat Servers, but I'm confused on how that would work for communication.
Let's say I'm creating a chat app that allows users to talk to one another through the server. If two…

Jason
- 13,563
- 15
- 74
- 125
4
votes
3 answers
LinkedIn REST API: Throttle Limit for resource 'Search People' reached at 409 of 100k
I have a program that searches LinkedIn members by their first and last names, for academic research purposes.
I have a LinkedIn developer account that is supposed to have 100k calls to the relevant 'Search People' resource per day, but at only 400+…

AHL
- 738
- 3
- 11
- 35
4
votes
1 answer
window resize event continually fires in ie7
Old Title: setTimeout throttle on window resize event in javascript continually fires in ie7
I have the following script:
jQuery(document).ready(function(){
throttleTest();
});
function throttleTest() {
var throttleTimer,
…

Dave Haigh
- 4,369
- 5
- 34
- 56
4
votes
1 answer
soundcloud api - too many requests
My soundcloud app (that makes quite a lot of requests) recently started receiving the error:
429 - Too Many Requests
for all DELETE commands (when I attempt to delete a follow relationship). This was working perfectly last week. Do throttling limits…

Timothy Beamish
- 472
- 3
- 10
4
votes
1 answer
Throttling in VBA
The Back Story
A little while back, I was asked if we could implement a mass email solution in house so that we would have better control over sensitive information. I proposed a two step plan: Develop a prototype in Excel/VBA/CDO for user…

Chad Harrison
- 2,836
- 4
- 33
- 50
4
votes
1 answer
How do I implement Request throttling in a Java EE environment?
One of our application accepts requests through a message queue and dials a telephony call for every request.
There are 2 telephony systems involved in dialing a call. One has a limitation on number of calls that can be initiated in a second but no…

Kannan
- 116
- 1
- 6
3
votes
4 answers
Reducing the CPU usage of a thread or process
There a bunch of other questions like this, but the only substantial answer I've seen is the one where you use SetPriorityClass to give priority to other processes. This is not what I want. I want to explicitly limit the CPU usage of my…
user2058002