Is there an article/algorithm on how I can read a long file at a certain rate?
Say I do not want to pass 10 KB/sec while issuing reads.
|
Is there an article/algorithm on how I can read a long file at a certain rate? Say I do not want to pass 10 KB/sec while issuing reads. |
|||||||
|
|
The crude solution is just to read a chunk at a time and then sleep eg 10k then sleep a second. But the first question I have to ask is: why? There are a couple of likely answers:
My suggestion is not to control it at the read level. That's kind of messy and inaccurate. Instead control it at the work end. Java has lots of great concurrency tools to deal with this. There are a few alternative ways of doing this. I tend to like using a producer consumer pattern for soling this kind of problem. It gives you great options on being able to monitor progress by having a reporting thread and so on and it can be a really clean solution. Something like an ArrayBlockingQueue can be used for the kind of throttling needed for both (1) and (2). With a limited capacity the reader will eventually block when the queue is full so won't fill up too fast. The workers (consumers) can be controlled to only work so fast to also throttle the rate covering (2). |
||||
|
|
|
A simple solution, by creating a ThrottledInputStream. This should be used like this:
300 is the number of kilobytes per second. 8000 is the block size for BufferedInputStream. This should of course be generalized by implementing read(byte b[], int off, int len), which will spare you a ton of System.currentTimeMillis() calls. System.currentTimeMillis() is called once for each byte read, which can cause a bit of an overhead. It should also be possible to store the number of bytes that can savely be read without calling System.currentTimeMillis(). Be sure to put a BufferedInputStream in between, otherwise the FileInputStream will be polled in single bytes rather than blocks. This will reduce the CPU load form 10% to almost 0. You will risk to exceed the data rate by the number of bytes in the block size.
|
||||
|
|
Creating ThrottledInputStream that takes another InputStream as suggested would be a nice solution. |
|||
|
|
|
It depends a little on whether you mean "don't exceed a certain rate" or "stay close to a certain rate." If you mean "don't exceed", you can guarantee that with a simple loop:
The amount of time to wait is a simple function of the size of the buffer; if the buffer size is 10K bytes, you want to wait a second between reads. If you want to get closer than that, you probably need to use a timer.
If you're concerned about the speed at which you're passing the data on to something else, instead of controlling the read, put the data into a data structure like a queue or circular buffer, and control the other end; send data periodically. You need to be careful with that, though, depending on the data set size and such, because you can run into memory limitations if the reader is very much faster than the writer. |
|||
|
|
|
If you have used Java I/O then you should be familiar with decorating streams. I suggest an Your exact implementation will depend upon your exact requirements. Generally you will want to note the time your last read returned ( |
|||
|
|