Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

64
votes
4answers
5k views

Best way to implement request throttling in ASP.NET MVC?

We're experimenting with various ways to throttle user actions in a given time period: Limit question/answer posts Limit edits Limit feed retrievals For the time being, we're using the Cache to ...
35
votes
7answers
14k views

Simulate delayed and dropped packets on Linux

I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this?
23
votes
6answers
10k views

C# WCF: WCF stops responding after about 10 or so calls (throttling)

I have a WCF Service and an application with a Service Reference to it, and with the application I have a loop and in each iteration it's making a call to a method in this wcf web-service. The ...
15
votes
9answers
3k views

How can I throttle user login attempts in PHP

I was just reading this post http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta#477585 on Preventing Rapid-Fire Login Attempts. Best practice #1: A short ...
14
votes
6answers
293 views

is there a way to throttle the indexing of Mysql tables so overall performance is not impacted?

I need to load a large data set onto a production database. 15 files need to each be uploaded and inserted into a table. Each is about 500 Mb. I have two ID columns that need to be indexed. If I ...
10
votes
2answers
6k views

WCF Service Throttling

I have a WCF Service Deployed in a Console App with BasicHTTPBinding and SSL enabled on port using NetSH command and more over following attribute is set as well. ...
9
votes
7answers
4k views

WCF Concurrent requests piling up on the server when using WSHttpBinding

I have a WCF client/server app which is communicating over HTTP using the WSHttpBinding. Server Setup: self-hosting, using the standard WCF ServiceHost. My actual service class is attributed as: ...
8
votes
9answers
3k views

Throttling method calls to M requests in N seconds

I need a component/class that throttles execution of some method to maximum M calls in N seconds (or ms or nanos, does not matter). In other words I need to make sure that my method is executed no ...
8
votes
10answers
6k views

Throttling CPU/Memory usage of a Thread in Java?

I'm writing an application that will have multiple threads running, and want to throttle the CPU/memory usage of those threads. There is a similar question for C++, but I want to try and avoid using ...
7
votes
2answers
366 views

Stack Exchange API compliant request throttle implementation on Google App Engine Cloud infrastructure

I have been writing a Google Chrome extension for Stack Exchange. It's a simple extension that allows you to keep track of your reputation and get notified of comments on Stack Exchange sites. ...
7
votes
3answers
2k views

What is the best way to implement a rate-limiting algorithm for web requests?

Possible/partial duplicates: What’s a good rate limiting algorithm? Throttling method calls to M requests in N seconds Best way to implement request throttling in ASP.NET MVC? I am looking for the ...
6
votes
4answers
9k views

Service too busy error in WCF

I intermittently get the following exception in my .Net WCF Service. "The HTTP service located at http://MyServer/TestWCF/MyService.svc is too busy." Am I missing something here? Am using basic http ...
6
votes
6answers
1k views

How to delay / throttle login attempts in ASP.NET?

I'm trying to do some very simple request throttling on my ASP.NET web project. Currently I'm not interested in globally throttling requests against DOS attacks, but would like to artificially delay ...
6
votes
6answers
2k views

How to throttle login attemps in Java webapp?

I want to implement an efficient mechanism to throttle login attemps in my Java web application, to prevent brute-force attacks on user accounts. Jeff explained the why, but not the how. Simon ...
6
votes
1answer
3k views

Bandwidth throttling in C#

I am developing a program that continually sends a stream of data in the background and I want to allow the user to set a cap for both upload and download limit. I have read up on the token bucket ...
5
votes
2answers
871 views

What are common ways of implementing web API request throttling/rate-limiting?

What are common ways of implementing web API request throttling? Are there any libraries for common web frameworks (Rails, Django, Java, etc.) that give you this along with temporary banning? A ...
5
votes
5answers
3k views

Throttling login attempts

(This is in principal a language-agnostic question, though in my case I am using ASP.NET 3.5) I am using the standard ASP.NET login control and would like to implement the following failed login ...
5
votes
3answers
6k views

WCF Service Throttling

Lets assume that I'm dealing with a service that involves sending large amounts of data. If I implement this with WCF, will WCF throttle the service based on how much memory each request takes to ...
4
votes
2answers
130 views

How to throttle webservice calls in a Java web application

My requirement is very simple to understand. I want to call a web service from my Java web application with restriction of maximum 10 webservice calls per minute. Just after 1 minute, I can establish ...
4
votes
5answers
193 views

'Forgot Password' throttling

I have a 'forgot password' system set up that sends an email with a reset link to the user. M question is: How can I prevent abuse of this system? How can I make sure that people don't use this to ...
4
votes
4answers
300 views

How to take first occurrence and then supress events for 2 seconds (RxJS)

I think RxJS should perfectly fit to supress dublicate button clicks for 2 seconds. However, Im struggleing with the implementation. var $button = $('#myButton').button(); $button ...
4
votes
3answers
598 views

How to throttle login attempts - PHP & MySQL & CodeIgniter

I'd like to be able to throttle login attempts based on failed attempts but I got some questions. Should I use MySQL? (read that it could strain the DB) Should I throttle per user and system-wide or ...
4
votes
5answers
897 views

Can I throttle requests made by a distributed app?

My application makes Web Service requests; there is a max rate of requests the provider will handle, so I need to throttle them down. When the app ran on a single server, I used to do it at the ...
4
votes
4answers
825 views

Whose responsibility is it to throttle web requests?

I am working on a class library that retrieves information from a third-party web site. The web site being accessed will stop responding if too many requests are made within a set time period (~0.5 ...
4
votes
2answers
683 views

How can I implement server-side rate limiting for a Perl web service?

I have a Perl-based CGI/Fast CGI web service and want to rate-limit clients by IP address to stop aggressive clients causing too much work. I have looked around for some code and found ...
3
votes
2answers
444 views

Apache/PHP test server throttle by request

I've recently set up a test server running in a virtual machine on my computer so I can do such things as interactive debugging with XDebug. For the most part it's pretty sweet, but I've run into a ...
3
votes
1answer
339 views

How to Implement Login Throttling with Spring Security?

I'm trying to find out how to throttle logins (http://stackoverflow.com/questions/570160/throttling-login-attempts) with Spring Security. Does anybody has some idea?
3
votes
3answers
404 views

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 ...
3
votes
2answers
653 views

MSMQ - Fast producer/slow consumer

I have a problem with messaging (with MSMQ) which is a variation of fast producer/slow consumer. Is there a way to get outstanding unconsumed message count in a private MSMQ queue? I would like to ...
2
votes
2answers
187 views

Throttling requests by IP address on Apache?

I want to throttle requests to my web server so as to thwart web scraping and denial of service attacks against my site. I'm willing to be relatively lax, the key thing is that no one requests so ...
2
votes
2answers
177 views

Throttling outgoing email using PHP code

I'm in the midst of coding a throttling code in php for outgoing emails. I want to know what algo is good for throttling? Can any help to comment on the below design? Specs: The emails are stored in ...
2
votes
1answer
249 views

MSMQ WCF Throttling

I have a windows service that reads my message queue through WCF. I want the service to process one message before another message (intensive memory actions per msg). I set the throttling ...
2
votes
2answers
194 views

How to improve mailbox scan time in Scala actors

I created following example of actors in Scala: http://pastebin.com/pa3WVpKy Without throttling (reducing number of SendMoney messages) that occurs in lines: val processed = iterations - ...
2
votes
4answers
524 views

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 ...
2
votes
2answers
244 views

throttling when using Parallel.For

When using a single threadded loop I was easily able to limit my messages sent per second by putting the thread to sleep (ie Thread.Sleep(1000/MessagesPerSecond)), easy enough... but now that I have ...
2
votes
3answers
349 views

Queued WCF Service which processes every X seconds

I need to create a service which can process queued requests on a configured time interval. For example go to the web and get financial data from a site the requires we limit requests to once per ...
2
votes
1answer
3k views

How to programatically limit bandwidth usage of my c# windows forms application

I've got a backup application here which connects to various webservices and downloads/uploads files from ftp or http servers. What is the easiest way to limit the bandwidth usage of my application? ...
2
votes
2answers
2k views

WCF: How do I add a ServiceThrottlingBehavior to a WCF Service?

I have the below code for returning back an instance of my WCF Service ServiceClient: var readerQuotas = new XmlDictionaryReaderQuotas() { MaxDepth = 6000000, ...
2
votes
1answer
846 views

What limits WCF ServiceModelService.Instances?

I'm attempting to load test a WCF service with (IIS6/Server2003/BasicHttpBinding). The service is throttled as follows: <serviceThrottling maxConcurrentCalls="100" maxConcurrentSessions="100" ...
2
votes
2answers
681 views

How can I throttle a download in a Perl program?

Is there any Perl module available for download throttling? I would like to download a certain file but limit the download rate to a specific number of KB/sec .
1
vote
0answers
63 views

Throttling - Maximum method calls per second

I am consuming a web service via WCF and I want to restrict service method calls by N every second. Is there a class that will help me achieve this. Or do I need to manually update a count and reset ...
1
vote
0answers
36 views

Apache CXF Jetty configuration httpj:engine-factory ThrottlingFilter to return HTTP 503 on high load

I have the following configuration of Jetty server inside my REST layer of Apache CXF JAX-RS: <httpj:engine-factory bus="cxf"> <!-- you just need to specify the TLS Server ...
1
vote
1answer
93 views

Facebook Application limit reached when calling FQL

Possible Duplicate: Facebook OAuth Error: Application request limit reached I wrote a Facebook monitoring app that calls Facebook FQL by default every 30 seconds to determine if the user has ...
1
vote
2answers
97 views

.NET Throttle algorithm

i would like to implement a good throttle algorithm by in .net (C# or VB) but i cannot figure out how could i do that. The case is my asp.net website should post requests to another website to fetch ...
1
vote
1answer
62 views

usage of javascript closure function

I am trying to figure out how to work with a closure function. On a click event, I want to determine values of parm1 and parm2 and display them in a div, then update new values to an table with an SQL ...
1
vote
1answer
24 views

Configuring WCF Throttling Behaviors

which WCF throttling setting is the best practice in case of application with large number of requests?
1
vote
2answers
96 views

Throttling an ajax livesearch function

I would like to throttle the following ajax live search function I wrote. I made it so that requests are only sent if a minimum of 2 characters are entered. I also want to throttle the ajax for a ...
1
vote
1answer
172 views

Java Throttling

How do I use a combination of ScheduledThreadPoolExecutor, ScheduledFuture and ExecutorCompletionService to throttle Callable commands that accept a variable parameter? Upon receiving a response from ...
1
vote
0answers
150 views

boto ElasticMapReduce throttling and rate limiting

I've run into rate limting from Amazon EMR a few times via boto API with the following: boto.exception.EmrResponseError: EmrResponseError: 400 Bad Request <ErrorResponse ...
1
vote
2answers
135 views

WCF Service Throttling

I have used TCP bindings in my WCF service and at a time it is possible that many people connect to this service, my question is does i need to do service throttling in my wcf service if yes then what ...

1 2