We have a system where a client makes an HTTP GET request, the system does some processing on the backend, zips the results, and sends it to the client. Since the processing can take some time, we send this as a ZipOutputStream wrapping the response.getOutputStream().

However, when we have an exceptionally small amount of data in the first ZipEntry, and the second entry takes a long time, the browser the client is using times out. We've tried flushing the stream buffer, but no response seems to be sent to the browser until at least 1000 bytes have been written to the stream. Oddly, once the first 1000 bytes have been sent, subsequent flushes seem to work fine.

I tried stripping down the code to bare-bones to give an example:

protected void doGet(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
    try {
        ZipOutputStream _zos = new ZipOutputStream( response.getOutputStream());
        ZipEntry _ze = null;
        long startTime = System.currentTimeMillis();
        long _lByteCount = 0;

        response.setContentType("application/zip");

        while (_lByteCount < 2000) {
            _ze = new ZipEntry("foo");
            _zos.putNextEntry( _ze );

            //writes 100 bytes and then waits 10 seconds
            _lByteCount += StreamWriter.write( 
                    new ByteArrayInputStream(DataGenerator.getOutput().toByteArray()),
                    _zos );
            System.out.println("Zip: " + _lByteCount + " Time: " + ((System.currentTimeMillis() - startTime) / 1000));

            //trying to flush
            _zos.finish();
            _zos.flush();
            response.flushBuffer();
            response.getOutputStream().flush();
        }
    } catch (Throwable e) {
        e.printStackTrace();
    }
}

I set my browser timeout to be about 20 seconds for easy reproduction. Despite writing the 100 bytes a couple of times, nothing is sent to the browser and the browser times out. If I expand the browser timeout, nothing gets sent until 1000 bytes have been written and then the browser pops up the "Would you like to save..." dialog. Again, after the initial 1000 bytes, each addition 100 bytes sends fine, rather than buffering to 1000 byte chunks.

If I set the max byte count in the while condition to 200 or so, it works fine, sending only 200 bytes.

What can I do to force the servlet to send back really small initial amounts of data?

link|improve this question
What OS are you running under? I've seen a similar issue where a servlet for a report would not return anything unless the size of the output was > 1024 bytes. From looking at the JavaDocs, it might be related to how the OS handles its buffers. – Kelly S. French Oct 3 '11 at 16:28
Win7. We eventually decided it was not in the application side and forced the application to only accept requests with a certain amount of data. – Kane Oct 13 '11 at 13:33
feedback

4 Answers

up vote 1 down vote accepted

It turns out there is a limit on the underlying Apache/Windows IP stack that buffers data from a stream in an attempt to be efficient. Since most people have the problem of too much data, not the problem of too little data, this is right most of the time. What we ended up doing was requiring the user to request enough data that we'd hit the 1000 byte limit before timing out. Sorry for taking so long to answer the question.

link|improve this answer
feedback

My guess is that the zip output stream doesn't actually write anything before beeing able to compress stuff. Huffmann algorithm used for zipping requires all data to be known before actually beeing able to compress anything. It can't start before everything is known basically.

Zipping might be a win if the amount of data is big, but I don't think you can achieve asynchronous reponse while zipping data.

link|improve this answer
I thought that might be the case as well, but I can reproduce this with a FilterOutputStream. Also, since each write is a separate ZipEntry, and those are encoded separately, it shouldn't wait for more to zip since the stream has an entire entry. Finally, it doesn't explain why it suddenly starts sending 100 byte chunks after the first 1000 bytes – Kane Aug 8 '11 at 16:00
Because huffmann algorith needs to actually compute the "alphabet" the code used to zip. This might be why you are waiting for the first chunk. After that it can encode progressively all data. – Snicolas Aug 8 '11 at 16:06
Thanks for your response, but did you miss the part where changing the ZipOutputStream to a FilterOutputStream has the same problem? I can even reproduce this behavior with the response output stream, whether sending binary or text data. I don't think the issue is related to zipping the data, that is just where I encountered the issue. – Kane Aug 8 '11 at 17:20
@Snicolas: please read this and consider fixing all your previous answers. – BalusC Aug 8 '11 at 19:05
@BalusC, sorry I don't catch it. Signatures ? – Snicolas Aug 8 '11 at 19:53
show 1 more comment
feedback

I entirely can't reproduce your problem. Below is your code, slightly altered, running in an embedded Jetty server. I ran it in IntelliJ and requested http://localhost:8080 from Firefox. As expected, the "Save or Open" dialog popped up after 1 second. Selecting "save" and waiting for 20 seconds results in a zip file which can be opened and contains 20 separate entries, named foo<number> each containing a single line 100 characters wide and ending with <number>. This is on Windows 7 Premium 64 with JDK 1.6.0_26. Chrome acts the same way. IE, on the other hand, seems to normally wait for 5 seconds (500 bytes), though once it showed the dialog immediately, and another time it seemed to wait for 9 or 10 seconds. Try it in different browsers:

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;

import javax.servlet.ServletException;
import javax.servlet.http.*;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

public class ZippingAndStreamingServlet {
    public static void main(String[] args) throws Exception {
        Server server = new Server(8080);
        ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
        context.setContextPath("/");
        server.setHandler(context);
        context.addServlet(new ServletHolder(new BufferingServlet()), "/*");
        server.start();
        System.out.println("Listening on 8080");
        server.join();
    }

    static class BufferingServlet extends HttpServlet {
        protected void doGet(HttpServletRequest request,
                             HttpServletResponse response) throws ServletException, IOException {
            ZipOutputStream _zos = new ZipOutputStream(response.getOutputStream());
            ZipEntry _ze;
            long startTime = System.currentTimeMillis();
            long _lByteCount = 0;
            int count = 1;
            response.setContentType("application/zip");
            response.setHeader("Content-Disposition", "attachment; filename=my.zip");
            while (_lByteCount < 2000) {
                _ze = new ZipEntry("foo" + count);
                _zos.putNextEntry(_ze);
                byte[] bytes = String.format("%100d", count++).getBytes();
                System.out.println("Sending " + bytes.length + " bytes");
                _zos.write(bytes);
                _lByteCount += bytes.length;
                sleep(1000);
                System.out.println("Zip: " + _lByteCount + " Time: " + ((System.currentTimeMillis() - startTime) / 1000));
                _zos.flush();
            }
            _zos.close();
        }

        private void sleep(int millis) {
            try {
                Thread.sleep(millis);
            } catch (InterruptedException e) {
                throw new IllegalStateException("Unexpected interrupt!", e);
            }
        }
    }
}
link|improve this answer
feedback

You could be getting screwed by the Java API.

Looking through the JavaDocs of the various OutputStream family of classes (OutputStream, ServletOutputStream, FilterOutputStream, and ZipOutputStream) , they either mention that they rely on the underlying stream for flush() or they declare that flush() doesn't do anything (OutputStream).

ZipOutputStream inherits flush() and write() from FilterOutputStream.

From the FilterOutputStream JavaDoc:

The flush method of FilterOutputStream calls the flush method of its underlying output stream.

In the case of ZipOutputStream, it is being wrapped around the stream returned from ServletResponse.getOutputStream() which is a ServletOutputStream. It turns out that ServletOutputStream doesn't implement flush() either, it inherits it from OutputStream which specifically mentions in its JavaDoc:

 flush public void flush()
            throws IOExceptionFlushes 
 this output stream and forces any
 buffered output bytes to be written out. The general contract of flush
 is that calling it is an indication that, if any bytes previously
 written have been buffered by the implementation of the output stream,
 such bytes should immediately be written to their intended
 destination.  If the intended destination of this stream is an
 abstraction provided by the underlying operating system, for example a
 file, then flushing the stream guarantees only that bytes previously
 written to the stream are passed to the operating system for writing;
 it does not guarantee that they are actually written to a physical
 device such as a disk drive. 

  **The flush method of OutputStream does nothing.**

Maybe this is a special case, I don't know. I do know that flush() has been around a long time and it is unlikely that no one has noticed a hole in the functionality there.

It makes me wonder if there is an operating system component to the stream buffering that could be configured to remove the 1k buffer effect.

A related question has a similiar issue but was working directly with a file instead of from a Stream abstraction from Java and this answer points to the MSDN articles involved regarding file buffering and file caching.

A similar scenario was listed in the bug database.

Summary

The Java IO library relies on the OS implementation for Streams. If the OS has caching turned on, Java code may not be able to force a different behavior. In the case of Windows you have to open the file and send non-standard parameters to allow for write-through-cache or no-buffereing functionality. I doubt the Java SDK provides such OS-specific options since they are trying to create platform-generic APIs.

link|improve this answer
No, as Snicolas answered, zipping a stream requires the entire stream being fully in memory. It's not possible/advisable to flush out in between. – BalusC Aug 8 '11 at 19:43
1  
@BalusC - I meant for the scenario when he was using FilterOutputStream. He needs to make the small page dataset it's own test case so he can isolate the different layers (browser/server). – Kelly S. French Aug 8 '11 at 19:46
Oh, I see, you're basically commenting on a comment instead of answering the question. – BalusC Aug 8 '11 at 19:47
I have the same problem in IE9, FF5, and Chrome; it seems to be browser agnostic. I recently tried Firebug and the issue seemed to be as I described, but I will try Fiddler as well and report back. – Kane Aug 8 '11 at 20:37
Just checked with Fiddler. I am getting a single response back from the server, but it's only header data - none of the actual data is coming back, causing the browser to time out. If I extend the timeout, I get the behavior I saw before, where no data comes back from the server until some arbitrary amount it reached and it actually flushes. Tried this with a FilterOutputStream to prevent any concern with zipping being the error (although I doubt that was the error to begin with). – Kane Aug 8 '11 at 21:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.