I've created a Java servlet which does the following:
final AsyncContext aContext = request.startAsync();
aContext.start(new Runnable() {
public void run() {
HttpServletResponse response = (HttpServletResponse) aContext.getResponse();
try {
performRequest(proxyRequest, response);
} catch (IOException e) {
LOGGER.debug("IO Exception: " + e.getLocalizedMessage());
} catch (ServletException e) {
jsonResponse.append("ERROR", "Servlet Exception: " + e.getLocalizedMessage());
}
aContext.complete();
responseWriter.print(jsonResponse);
}
});
This servlet is called by a front-end UI which performs an AJAX call passing on some huge dataset.
The java servlet runs the method performRequest which can take up to a few minutes (on huge dataset).
I would like the servlet to return fast (the asynch process is triggered right away) otherwise the AJAX promise fails after 30 seconds wait.
What can I do?
Related
I have a java servlet and am using jetty. On receiving a POST request, I am trying to send out another request to a different service. Upon receiving a response from the other service, I want to wake up my thread and continue sending the response. I am trying to use an object 'lock' to wait and notify. Can anyone tell why my thread doesn't wake up on lock.wait()?
#Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("application/json");
response.setStatus(HttpServletResponse.SC_OK);
Object lock = new Object();
client.newRequest("http://localhost:3699/create")
.method(HttpMethod.POST)
.content(new StringContentProvider(ServletUtils.extractRequestBody(request)))
.send(new BufferingResponseListener() {
#Override
public void onComplete(Result result) {
ServletUtils.forwardResponse(response, result, getContentAsString());
System.out.println("NOTIFY");
synchronized (lock) {
lock.notifyAll();
}
System.out.println("DONE NOTIFICATION");
}
});
try {
System.out.println("WAIT");
lock.wait();
System.out.println("DONE WAITING");
} catch (InterruptedException e) {
ServletUtils.badRequest(response);
}
}
My print statements say
WAIT
WAIT
NOTIFY
DONE NOTIFICATION
a) I'm not sure why I get 2 WAIT
b) I don't get to DONE WAITING
I'm using Jetty for the first time.
My server setup:
server = new Server(port);
ContextHandler testContext = new ContextHandler();
testContext.setContextPath("/test");
testContext.setHandler(new TestServlet());
ContextHandlerCollection contexts = new ContextHandlerCollection();
contexts.setHandlers(new Handler[]{ testContext});
HandlerCollection handlers = new HandlerCollection();
handlers.setHandlers(new Handler[]{ contexts, new DefaultHandler() });
server.setHandler(handlers);
server.setStopAtShutdown(true);
server.start();
Test code:
public class TestServlet extends AbstractHandler
{
#Override
public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
{
System.out.println("a");
try {
Thread.sleep(2500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("b");
try {
Thread.sleep(2500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("c");
try {
Thread.sleep(2500);
} catch (InterruptedException e) {
e.printStackTrace();
}
baseRequest.setHandled(true);
}
}
If I visit localhost/test on two different tabs, the 2nd request waits until first is finished, so my log looks like:
a
b
c
a
b
c
Why are they the requests not processed in parallel?
It seems that people run into this from time to time (see here for example).
But as this nicely explains - jetty is built for serving users in parallel.
So the answer is: this is not a jetty problem - but a user error; for example by running the requests from a single browser (and that browser internally serializes the requests).
I have a web page which polls data from server with long polling. My javascript code is:
function getData(){
$.ajax({
url: "graph.htm",
type:"POST",
dataType:"json",
timeout: 30000,
success: successFunc,
complete: getData
});
}
function successFunc(data, textStatus){
console.log(data);
//......
}
and I have a Controller on server,which checks every second, if database is modified and if it is - it sends the data:
#RequestMapping(value = "/graph", method = RequestMethod.POST)
public void graphPOST(HttpServletResponse response) {
while(!daoService.isModified()){
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
try {
String jsonData = daoService.getJsonData();
response.setContentType("application/json");
response.setHeader("Cache-Control", "no-cache");
response.getWriter().write(jsonData);
System.out.println("=== sent!");
} catch (IOException ex) {
ex.printStackTrace();
throw new RuntimeException("IOError writing file to output stream");
}
}
And usually it works fine. BUT sometimes (maybe, one time from ten) i have the situation:
Data is sent from server (I see the meessage "=== sent!" in console).
Client gets nothing (javasrcipt console is clear, there are no messages from console.log()).
I'm having problems understanding how asynchronous servlets work, and in general how servlets deliver their response to the client.
What I'm trying to do is upload a video to a servlet via ajax. I thought that using an async servlet, I would obtain the response immediately in my browser and then the long task would be done in another thread.
I post my initial code here, before any code is written for file process, just an initial servlet to test asynchronism.
#WebServlet(name = "VideoUploader", urlPatterns = {"/VideoUploader"},
asyncSupported = true)
#MultipartConfig
public class VideoUploader extends HttpServlet {
#Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doPost(request, response);
}
#Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
final PrintWriter pw = response.getWriter();
final AsyncContext ac = request.startAsync();
ac.setTimeout(80000);
ac.addListener(new AsyncListener() {
#Override
public void onComplete(AsyncEvent event) throws IOException {
System.out.println("On complete");
}
#Override
public void onTimeout(AsyncEvent event) throws IOException {
System.out.println("On timeout");
}
#Override
public void onError(AsyncEvent event) throws IOException {
System.out.println("On error");
}
#Override
public void onStartAsync(AsyncEvent event) throws IOException {
System.out.println("On start async");
}
});
ac.start(new Runnable() {
#Override
public void run() {
for (int i = 0; i <= 10; i++) {
System.out.println("Async task: "
+ Thread.currentThread().getName());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
ac.complete();
}
});
pw.write("end");
pw.close();
}
}
Then, the client part is:
<form id="formVideo">
<label for="videoFile">VĂdeo:</label>
<input id="videoFile" name="videoFile" type="file" /> <br/>
<input id="uploadVideoBtn" type="button" value="Subir" onClick="uploadVideo();"/>
</form>
<div id="notificaciones"/>
<script type="text/javascript">
function uploadVideo() {
var file = document.getElementById("videoFile").files[0];
var formdata = new FormData();
formdata.append("file", file);
var xhr = new XMLHttpRequest();
xhr.open("POST","/webapp/VideoUploader", true);
xhr.send(formdata);
xhr.onload = function(e) {
if (this.status == 200) {
alert(this.responseText);
}
};
}
</script>
When I didn't attach a video to the file input, the process is done as I expected, the response is immediately received in the browser. But when I attached a file of any size, my browser doesn't receive the response until the other thread is over.
I was researching on non blocking IO, but I'm not sure if it has something to do with this behaviour or not.
I'm still not sure how I want to implement this, although I'll listen to any advice, but what I would like is to understand the behaviour of this asynchronous servlets.
it is obivious, your browser will wait until the other thread completes. The following steps involved
Client Sent Request to Server
Server allocates Thread (Servlet Container) from ThreadPool
Servlet container creates Servlet instance / reuse existisng Servlet instance and invoke Servcie method in (Servlet Thread)
With in Service method by calling startAsync() will start new thread and pass the request,response instances to the new Thread to process the request note** New Thread is not blocking the http connection , it is just a thread in the jvm which is not bliocking any IO at this moment
Servlet Thread exists service method and returned to thread pool Note** here Response not yet sent to Client / Browser
Once the Process started in step 4 completed that thread will request Servlet Container to allocate to new Servlet thread to send the respond back to Client.
Only the at Step 6 the response will return back to Client. So there is no difference between the normal request and with "asyncSupported = true" from client point of view. Servlet 3.0 supports Threads per request by using "asyncSupported = true" instead of Thread per connection. Thread per connection will cause Thread Starvation.
#WebServlet(name = "VideoUploader", urlPatterns = { "/VideoUploader" }, asyncSupported = true)
#MultipartConfig
public class VideoUploader extends HttpServlet {
#Override
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
}
#Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
final AsyncContext ac = request.startAsync();
ac.setTimeout(80000);
ac.addListener(new AsyncListener() {
public void onComplete(AsyncEvent event) throws IOException {
System.out.println("On complete");
}
public void onTimeout(AsyncEvent event) throws IOException {
System.out.println("On timeout");
}
public void onError(AsyncEvent event) throws IOException {
System.out.println("On error");
}
public void onStartAsync(AsyncEvent event) throws IOException {
System.out.println("On start async");
}
});
ac.start(new Runnable() {
public void run() {
System.out.println("Async task: "
+ Thread.currentThread().getName());
try {
for (Part part : ((HttpServletRequest) ac.getRequest())
.getParts()) {
System.out.println("File received"); // You Should write
// file here
// like
// part.write("fileName");
}
} catch (IOException e1) {
e1.printStackTrace();
} catch (ServletException e1) {
e1.printStackTrace();
}
ac.complete();
PrintWriter pw = null;
try {
pw = ac.getResponse().getWriter();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
pw.write("end");
pw.close();
}
});
}
}
Asynchronous servlet hands over the long running server side job to a different server thread. Non-Blocking IO, a new feature in servlet 3.1, deals with situation when incoming data is blocking or streamed slower than the server can read. Both are solutions to avoid servlet thread starvation. They are not about returning response to client immediately.
Since you are using Ajax, not a regular browser file upload, it should be easily implemented at the Ajax side with even a synchronous servlet, if you do not care about servlet thread starvation. Ajax is asynchronous in nature. Here is an example tutorial
http://www.javabeat.net/asynchronous-file-upload-using-ajax-jquery-progress-bar-and-java/
I've used AsyncTask quite a bit - but I have come across a seemingly simple question that confused me. The question is this:
Is publishProgress(Progress... values) supposed to return
immediately? In other words, is this method asynchronous?
Some Context:
I'm trying to determine whether the following code
Fires an HTTP request every three seconds, regardless of the response OR
Fires an HTTP request, waits for the response, and then sleeps for three seconds before firing the next request.
public class MyAsyncTask {
#Override
protected void doInBackground(String... params) {
while (mRunning) {
// Call publishProgress
this.publishProgress(makeHttpRequest());
// Sleep for 3 seconds
synchronized (lock) {
try {
lock.wait(3 * 1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
return null;
}
private HttpResponse makeHttpRequest() {
HttpResponse ajaxResponse = null;
Throwable throwable = null;
try {
ajaxResponse = mHttpClient.execute(mHttpGet);
} catch (ClientProtocolException e) {
// Handle exception
} catch (IOException e) {
// Handle exception
} catch (Exception e) {
// Handle exception
}
return ajaxResponse;
}
#Override
protected void onProgressUpdate(HttpResponse... values) {
// Do something with the response
}
}
You're asking two different things here:
publishProgress() does indeed return instantly, it just posts a message to some Handler
Unrelated to how publishProgress() behaves, your code would always execute the HTTP request, wait for the response, then sleep three seconds. Just inlining method calls like publishProgress(makeHttpRequest()) doesn't mean that makeHttpRequest() isn't executed right where it's called, in your doInBackground() method.
this.publishProgress(makeHttpRequest());
is equals to (Java can't pass methods. Just the results)
HttpResponse resp = makeHttpRequest();
this.publishProgess(resp);
so makeHttpReqest is done in the background.
You than pass the HttpResponse Object to publishProgress which returns immediately. The progress Object is then asynchronously send to onProgressUpdate() in the UI thread.
-> it's the then sleeps way.