throttling Questions

1

Solved

I'm using https://github.com/kickstarter/rack-attack/#throttles to throttle request to certain url's. Rack-attack docs show how to throttle by request IP or request parameters, but what I'd like t...
Misreport asked 30/7, 2015 at 8:52

7

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 Wi...
Roane asked 19/1, 2009 at 13:33

3

I need to design a rate limiter service for throttling requests. For every incoming request a method will check if the requests per second has exceeded its limit or not. If it has exceeded then it...
Gratulant asked 30/10, 2014 at 7:19

2

Solved

I want to limit the number of items posted in a Dataflow pipeline. The number of items depends of the production environment. These objects consume a large amount of memory (images) so I would like...
Batholomew asked 3/3, 2015 at 17:17

2

Solved

I and a few other developers are having a an AI competition. Basically, we have a simple board game and we've each written AIs that will be hosted on our own webservices to play against each other....
Cromagnon asked 16/10, 2014 at 13:30

2

I asked a question about how to throttle a python upload, which sent me to this answer, where I was informed of a little helper library called socket-throttle. That's all fine and dandy for regular...
Krasnoyarsk asked 30/1, 2015 at 15:26

3

Solved

In my WPF application, I have an event handler that gets called on the MouseEnter event of my UI element: myUiElement.MouseEnter += myEventHandler I would like to throttle myEventHandler so it d...
Changeless asked 19/1, 2015 at 3:18

8

Solved

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: ...
Uird asked 7/5, 2009 at 4:21

5

Solved

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 .toObservable("...
Passkey asked 4/3, 2011 at 17:18

1

Solved

I have a SOAP api that I would like to throttle access to on a User basis after "x" many calls have been received in "y" amount of time. After searching around, the #1 consideration (obviously) is...
Osteitis asked 19/7, 2013 at 17:54

6

Solved

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 ap...
Jordonjorey asked 24/2, 2010 at 21:16

1

Solved

So I've already written a function that works (based on underscores throttle) for functions that don't take in a parameter, but I'd like to make it generic enough to pass in a function with a varia...
Lawrenson asked 21/8, 2014 at 4:17

3

Solved

I am creating an app that makes constant use of push notifications as means of communicating between users (messaging of sorts). This whole ordeal seems to drive me a bit nuts, so here are few ques...
Devil asked 30/9, 2013 at 13:43

8

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 h...
Segal asked 23/5, 2009 at 1:23

3

Solved

I would like to run a bunch of async tasks, with a limit on how many tasks may be pending completion at any given time. Say you have 1000 URLs, and you only want to have 50 requests open at a time...
Vitovitoria asked 18/3, 2014 at 22:28

1

Solved

Let us say we have a Oozie workflow that has a copy action node then a Shell action node. Can I start multiple instances of such a OOzie workflow and run them in parallel? How about the concurrency...
Borkowski asked 6/2, 2014 at 19:27

4

Solved

Is it possible to test WCF throttling behaviour through Wcftest client? If Yes then How? I have a code below for ServiceHost ServiceThrottlingBehavior stb = _servicehost.Description.Behaviors.F...
Tersanctus asked 24/1, 2014 at 8:37

0

I'm implementing a throttling mechanism to limit the amount of web requests sent to a server. If there are too many submissions for a request then the extra requests are queued until the reso...
Mcmillian asked 14/1, 2014 at 15:46

1

Solved

i have an async Task like this: public async Task DoWork() { } And i have at the moment a: List<Task> tmp = new List<Task>(); where i add the tasks. I start the tasks like this:...
Closing asked 3/1, 2014 at 13:3

2

I'm using rack-throttle as a rate-limiting engine in my rails 3 application. I've created my own class based on the Rack::Throttle::Interval to define custom rate limiting logic. I'm checking if th...
Originally asked 12/3, 2012 at 6:48

10

Solved

I've written some applications than heavily use network, and I would like to test it over a slow network. I'm looking for a tool to simulate these kind of connections. I'm only interested in...
Mulcahy asked 2/9, 2008 at 9:41

2

Solved

Scenario: I am building a UI application that gets notifcations from a backend service every few milliseconds. Once I get a new notification i want to update the UI as soon as possible. As I can ...
Penniepenniless asked 17/11, 2013 at 18:25

1

I have a client process which attempts to issue multiple concurrent requests to a server using 'BasicHttpBinding'. The client is attempting to issue 10 or more concurrent requests to the server, bu...
Agathy asked 30/7, 2010 at 8:54

1

My Java web application pulls some data from external systems (JSON over HTTP) both live whenever the users of my application request it and batch (nightly updates for cases where no user has reque...
Ersatz asked 23/8, 2013 at 8:2

3

Solved

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 establ...
Monet asked 20/10, 2011 at 7:29

© 2022 - 2024 — McMap. All rights reserved.