java - Amazon sesThrottling – Maximum sending rate exceeded -


as per documentation says, if reach max send rate, error. max send rate 14 emails per second , tried send 100 mails concurrenlty, emails arrived recipient.

so wonder why amazon ses didn't send "signal" complaining excess or easier, why amazon ses did deliver 100 emails when supposed send 14.

here code used:

    list<string> destinations = new arraylist<>(); //replace email addresses      (int = 0; < 100; i++) {         destinations.add("receiver address");     }     int i=0;     (string destination : destinations) {          new thread("" + i){             public void run(){                 system.out.println("thread: " + getname() + " running");                 int maxretries = 10;                 while(maxretries-->0) {                     try {                         // create subject , body of message.                         content subject = new content().withdata("asunto");                         content textbody = new content().withdata("cuerpo");                         body body = new body().withtext(textbody);                          // create message specified subject , body.                         message message = new message().withsubject(subject).withbody(body);                         destination destination2 = new destination().withtoaddresses(new string[]{destination});                         // assemble email.                         sendemailrequest request = new sendemailrequest().withsource("fromnaddres").withdestination(destination2).withmessage(message);                          //wait permit become available                         //ratelimiter.acquire();                          //call amazon ses send message                         sendemailresult result = client.sendemail(request);                         system.out.println("sent "+result.getmessageid());                         break;                     } catch (amazonserviceexception e) {                         //retries throttling errors                         system.out.println("hola");                         if ("throttling".equals(e.geterrorcode())  && "maximum sending rate exceeded.".equals(e.getmessage())) {                             system.out.println("maximum send rate exceeded when sending email "+destination+". "                                     +(maxretries>1?"will retry.":"will not retry.") );                         } else {                             system.out.println("unable send email to: "+destination+". " +e.tostring());                             break;                         }                     } catch(exception e) {                         system.out.println("unable send email to: "+destination+". " +e.tostring());                         break;                     }                 }             }         }.start();          i++;     } 

amazon ses gives room or flexibility on either daily message quota , maximum sending rate. don't disclose deviation percentage allowed, find out doing tests.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -