Response time Extremely slow on MS Translator API

Hi,
I am now using Translator API to translate input data from users in real time.
But I found that the response time from the API is sometimes extremely slow.
--- It takes 1 to 2 minute to translate only 5 to 6 characters and it certainly slow down my application
     (it normally takes only a few seconds)
--- I am sure that I have enough quota.
I wonder if there is request limit in a minute and if so, how can I upgrade the limit so 
I can keep my service work perfectly? 
Thanks

Hi,
This is totally unsusual. For strings in the two to three thousands characters it should not take more than a few 100ms. Can you try again and tell us if you still see this behavior?
Our service is up and running (just go to bing.com/translator and you'll be able to test for yourself the speed of translation for a several hundreds characters sentence) so I'm not sure how to help you out here if it is still the case and your internet
connection is working fine.
Olivier
Microsoft Translator team - www.microsoft.com/Translator

Similar Messages

  • Response time Extremely slow on Translator API

    Hi,
    I am now using Translator API to translate input data from users in real time on our web application.
    But I found that the response time from the server is sometimes extremely slow.
    --- It takes 1 to 2 minute to translate only 5 to 6 characters and it certainly slow down my application
         (it normally takes only a few seconds)
    --- I am sure that I have enough quota.
    I wonder if there is request limit in a minute and if so, how can I upgrade the limit so 
    I can keep my service work perfectly? 
    Thanks

    Hi,
    This is totally unsusual. For strings in the two to three thousands characters it should not take more than a few 100ms. Can you try again and tell us if you still see this behavior?
    Our service is up and running (just go to bing.com/translator and you'll be able to test for yourself the speed of translation for a several hundreds characters sentence) so I'm not sure how to help you out here if it is still the case and your internet
    connection is working fine.
    Olivier
    Microsoft Translator team - www.microsoft.com/Translator

  • Touch screen response time terribly slow.

    My iPod Touch screen response time terribly slow.
    touch screen miserably slow. resetting / restoring factory settings didnt work.

    Time for an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Response time too slow when there is competition in the same connector PCo

    Dear all, I'm having a problem with using PCo 2.1.
    I created all the conections in PCo with OSIsoft PI and when I create a TagQuery
    on MII to get the values of a tag is not occur problem in response time.
    But when I have another TagQuery or Transaction, which is collecting data at the same
    time, sharing the same connector, the time response is very slow.
    Using the UDS this problem does not happen.
    So problem is that when there is competition in the same connector, the response time is extremely slow.
    Has anyone experienced this?
    Regards!

    Hi Udayan,
    Thanks again for attention,
    I found this problem on the two MII versions, 12.0 and 12.1.
    The UDS and PCo are on different servers and using different ports too.
    I didn't find errors on netweaver about this, but I'll verify one more time.
    On true, on version 12.0 of MII there is two connections with PI, one PCo and another UDS, that are using the same port. But this does not happen on the MII version 12.1, there I'm using different ports.
    Thank you very much!

  • Acrobat 9 Professional extremely slow due to weblink.api plugin

    Hello everybody,
    my Acrobat opens extremely slow and is also extremely slow when adding comments to PDF files. By temporarily removing some files from the plugins directory, I found out that this is caused by the weblink.api file. However, I need the functionality provided by that plugin, in particualr the comments. How can I get a reasonable performance and the comments functionality?
    Additional question: I noticed that quite a few plugin that are available in the plugins directory are not loaded on startup. Is this the expected behaviour?
    Thanks for any help
    Susanne

    Same problem on Apple machines (I have Windows Vista Ultimate 64 bit):
    http://forums.appleinsider.com/showthread.php?t=102766

  • Why is Oracle Response time getting slow with time.

    Hi,
         I have DB which was very fast initially with the response time for one of the query < 5 sec.
         I have been using the DB for the last 15 days. Now the same query is taking 10 minutes. In the DB there are lot of operations of additions and deletions been done on the table where the query is being made. The no. of records in the table is constant at around 3 million records from the first day.
         If I import the DB into a new setup then again the response time becomes very good in the new setup.
         What should be the problem of the DB getting slow with the time.
    Thanks,
    Tuhin

    It all depends on several factors.
    Are your tables,indexes have upto-date statistics?
    I have DB which was very fast initially with the response time for one of the query < 5 sec. Initially there might be small amount of data later data might have increased,you dont have proper indexes.
    It could be that your indexes got fragmented to due to heavey deletes? It might need reorg.
    My suggestion would to look into your execution plan of the quries and see where your kernals are waiting.
    As other suggested you, use explain plan, event 10046 and tkprof.
    Jaffar

  • Response time too slow.. 9i database

    Hi friends,
    well we have installed 9i database on our server. It was running fine for about two months. But now suddenly from yesterday the response time is toooooooooo slow. it takes a long time even to connect.
    when we check the processes in task manager oracle.exe is consuing 99% cpu resources which slows down the system and response time is very slow.
    how can we identify and resolve our problem. please help in details and thru commands.
    Best regards,
    Imran Baig
    [email protected]

    In my opinion it is good that you check immediately the SGA.
    do the following:
    SQL>show parameters shared_
    and see the parameter SHARED_POOL_SIZE
    and contrast it with the result of this SQL:
    select * from v$sgastat where name='free memory';
    if the free memory is very low regarding the value
    of the SHARED_POOL_SIZE parameter you can do this
    to fix it without to shutdown the database:
    ALTER SYSTEM FLUSH SHARED_POOL;
    The others gave are good too.
    Joel P�rez

  • Java Webserver - Tomcat / Axis2 - Response time very slow!!

    Hi all,
    I'm developing a Java Web Server using Axis2 inside Tomcat 7, but i'm having a big problem with the response time for each request made.
    The purpose of this application is to fetch data from a database and return it to a client (also developed in Java)
    For example: If i make a request from the database for 4000 objects, the database returns the data rather quickly (about 100ms), but then it takes about 30 seconds to generate the soap response, the xml containing the response has about 3mb size. The class in the webservice that represents the information from the database is quite simple, it has a string array, and about 3 Integers and 2 Strings..
    Is this normal for the response time? Is there any way to optimize (Tomcat definition, etc)?
    Thanks in advance :)

    Here's a method from the webserver that returns the information from the database:
    * The method receives a SQL Query to execute, and return a list with all the objects from the database
    public MyObject[] getMyObject(String querySQL) throws SQLException, ConfigurationException, AxisFault  {
         try {
              ArrayList<MyObject> myObjectList = new ArrayList<MyObject>();
              //Executes the query on the database
              Statement stmt = RdbmsDAOFactory.connection.createStatement();
              ResultSet rs = stmt.executeQuery(querySQL.toString());
              //Fetching the results
              while (rs.next()) {
                   List<AttributesFromMyObject> attributeList = new ArrayList<AttributesFromMyObject>();
                   int columnCount = rs.getMetaData().getColumnCount();
                   for(int i = 1; i <= columnCount; i++){
                        //This class saves the column name/value for each object from the database
                        AttributesFromMyObject attribute = new AttributesFromMyObject();
                        attribute.setName(rs.getMetaData().getColumnName(i));
                        attribute.setValue(rs.getString(i));
                        attributeList.add(attribute);
                   //Creates the object and saves the corresponding attributes list
                   MyObject r = new MyObject();
                   r.setAttributeValues((AttributeValue[])attributeList.toArray(new AttributeValue[0]));
                   //Add each object to the arraylist that will be returned at the end
                   myObjectList.add(r);
              //UNTILL HERE IT TAKES ABOUT 125 ms
              return (MyObject[])myObjectList.toArray(new MyObject[0]);
         } catch (Exception e) {
              throw new AxisFault ("Unknown error: " + e.getMessage() + " - " + e.getStackTrace());
    }And here's a method from the client that saves the resuts from the Web Server
    * The method sends a query sql to the Web Server and save the results
    public void getMyObject(){
         //This is from a library that i'm using to generate SQL
         Table dbTable = new Table(tableName);
         select = new SelectQuery(dbTable);
         select.addColumn(dbTable, "*");
         select.addCriteria(new InCriteria(new Column(dbTable, "[idObject]"), ids));
         //Create request object to the Web Server
         GetMyObject getMyObject = new GetMyObject();
         getMyObject.setQuerySQL(select.toString());
         //FROM HERE
         MyObject[] rList = this.webService.getMyObject(getMyObject).get_return(); //Response from the Web Server
         //TO HERE -> IT TAKES ABOUT 36 seconds IF I'M GETTING THE 4000 OBJECTS
    }And here's a bit of the soap response that i'm getting (from a total of 82600 lines generated):
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
      <soapenv:Body>
        <ns:getMyObjectResponse xmlns:ns="http://xx.xxx.xxx.com" xmlns:ax21="http://xx.xxx.xxx.com/xsd"
    xmlns:ax27="http://exception.lang.commons.apache.org/xsd" xmlns:ax26="http://configuration.commons.apache.org/xsd" xmlns:ax23="http://sql.java/xsd">
          <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ax21:MyObject">
            <ax21:attributeValues xsi:type="ax21:AttributeValue">
              <ax21:name>idMyObject</ax21:name>
              <ax21:value>2290</ax21:value>
            </ax21:attributeValues>
            <ax21:attributeValues xsi:type="ax21:AttributeValue">
              <ax21:name>Calldate</ax21:name>
              <ax21:value>2003-12-22 00:00:00.000</ax21:value>
            </ax21:attributeValues>
            <ax21:attributeValues xsi:type="ax21:AttributeValue">
              <ax21:name>Call_duration</ax21:name>
              <ax21:value>10</ax21:value>
            </ax21:attributeValues>
            <ax21:attributeValues xsi:type="ax21:AttributeValue">
              <ax21:name>Gross_amnt</ax21:name>
              <ax21:value>2.1000000000000001</ax21:value>
            </ax21:attributeValues>
            <ax21:id>0</ax21:id>
            <ax21:idSourceEntity>0</ax21:idSourceEntity>
            <ax21:idTargetEntity>0</ax21:idTargetEntity>
            <ax21:subtype xsi:nil="true" />
            <ax21:type xsi:nil="true" />
          </ns:return>
        </ns:getMyObjectResponse>
      </soapenv:Body>
    </soapenv:Envelope>Thanks!
    Edited by: user9257993 on 19/Abr/2011 2:46

  • Response time problems, slow excel execution with new ibook

    Hello: I'm a first time ibook user (long time pc user). I have had my ibook for less than 1 month. It's sometimes very slow. I can understand a slow response when I'm accessing a website, but I don't understand why I often experience a 5-15 second delay when I'm in excel and I click on "file" or "format". (I very often get the whirly multicolored pinwheel.)
    I have also had to do a "force quit" a number of times to stop an unresponsive excel model or firefox application.
    I'm also very disappointed in the excel performance. I run very large excel models some of which take a minute or more to recalc on our hp pavillion pc. My new ibook, however, doesn't run these modes any faster than my 2-3 year old pc. I haven't upgraded from the standard memory and I don't know how much that would help.
    Anyone have any suggestions to offer?
    Mikecupertino

    Welcome to the Apple Discussions!
    I have had my ibook for less than 1 month.
    If this is the case, then you qualify to get the next version of Microsoft Office, version 2008 for free (besides shipping). Check out this Microsoft site:
    http://www.microsoft.com/mac/go/promotions/supersuitedeal/
    Next week there are bound to be several new announcements from all sorts of Mac-related companies at the Macworld Expo in San Francisco. Microsoft is releasing their next version of Office for the Mac next week too. This version will run natively on an Intel-based Mac. Right now, Office is running in Apple's "Rosetta" technology which emulates the older, PowerPC processors. This allows you to run applications that haven't been updated yet, but it does slow down performance and increase hardware requirements. I think you should see better performance with the updated version. (Although, there may be a few bugs to work out with the brand new version, so keep check on updates!)
    -Doug

  • Forum load time extremely slow

    Hi,
    One of my biggest concerns with the forum is that it takes really long time to load a web page!!! I visit various forums everyday, and even with a lot more ads and scripts and applets, they load much faster than this forum. It puzzles me what is so complex about this forum that it requires so much time to load a page. I've tried browsing here on Internet Explorer 6, Opera 9.62 and Google Chrome and it is slow on ALL of them! This is a serious concern, and should be taken care of ASAP.
    Also, the graphical editor of posts is a little buggy on Opera, which i mainly use. So hopefully it can be taken care of in the future. and the addition of a 'Quick Reply' option like in other forums will be much appreciated.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.
    This question was solved.
    View Solution.

    We are aware of the slowness issues.  HP is working to resolve the issue.
    Like you, I'm looking forward to that being solved. =)
    Message Edited by DaniW on 11-21-2008 07:16 AM

  • Keystroke response time very slow

    This problem seems to be getting worse.
    It is not application dependent.
    I'll start typing and no on screen response. I'll continue to type and it will "catch up."
    I do use a wireless keyboard.
    Any suggestions appreciated.

    Hi Norm,
    I know it can be annoying to have your Mac's keyboard be unresponsive for intervals such as you describe. I would suggest that you troubleshoot using the steps in this article -
    Troubleshooting wireless mouse and keyboard issues
    In particular the section labeled Keyboard or mouse intermittently stops responding.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Build/Complie times extremely slow Sun WorkShopTM 6 C++ Update 1

    Hi,
    We've moved code from WIN32 (NT/2000) to Soalris 8. We are using Sun WorkShopTM 6 C++ Update 1 to build. The problem is that the same code base takes twice as long to build.
    The WIN2K box config:
    863 Mhz, 512MB, P-III
    Solaris 8:
    Processor: Netra t 1400/1405 (4 X UltraSPARC-II 440MHz)
    CPU Frequency: 4 x 440MHz
    I looked at the various performance counters and figured that the process is CPU bound.
    The compile flags that we are using:
    FW_CXXFLAGS = -g \
    -features=%all,no%iddollar,no%altspell \
    -xildoff \
    -i \
    -library=iostream,no%Cstd \
    -R. \
    -KPIC \
    -mt
    1. Is there a concept of pre-compiled headers?
    2. Anything we can do to speed up the compile?
    3. Product uses ORBIX2000, 2.0 - ORB.
    Thanks in advance
    Aman

    I looked at the various performance counters and
    figured that the process is CPU bound.
    Is there a possibility of a memory crunch? How much RAM is on the
    machine?
    >
    1. Is there a concept of pre-compiled headers?No, not at this time.
    2. Anything we can do to speed up the compile?A couple of possibilities if you have not tried them already. Are you
    using parallel make? (dmake or GNU make w/-j flag) If you are CPU
    bound, I assume you have already tried this.
    You may want to upgrade to the 6.0 Update 2 compilers. There have
    been a number of enhancements to compiler performance.
    3. Product uses ORBIX2000, 2.0 - ORB.
    Thanks in advance
    AmanAlan
    Sun Developer Technical Support
    http://www.sun.com/developers/support

  • JDEVELOPER TP Reponse Time - extremely slow

    I am new to Jdeveloper and my first install is TP 4 (4.11.1.1.0.0) and it is basically unusable. When I click on New Application it takes at least 3 minutes to bring up the New Application window. If I highlight the name it takes another 3 minutes to allow me to enter one character. I have a high powered windows XP box with 4 Gig of memory and the app is only using 180Meg.
    All I did to install it was unzip the download and execute the jdeveloper.exe.
    Thanks

    Shay Shmeltzer blogged about making JDev faster sometime ago which you may find useful.
    In addition I also blogged that McAfee's disk-hog, ah, I mean Virus-Scanner also kills JDeveloper performance thanks to McAfee's lousy JAR file scanning. I can confirm this is still an issue for McAfee with the latest release as we've hit it at our current client's site.
    Both these articles are indexed at the Oracle Wiki.
    Hope this helps.
    CM.

  • Weblogic 12c Admin Console Extremely Slow Response in "Servers" only

    Hi,
    I have downloaded and installed weblogic 12c today on IBM p702 blade centre running AIX 7.1 & IBM Java 7. Everything is working fine; Admin Server, Node Manager, etc.
    I am facing a strange kind of problem and need your kind suggestions.
    When i login to Admin Console 12c and i click on the "servers" link under the domain -> environment; the server response is extremely slow. However, the rest is fine. There is no application deployed and no warning + exception/error is in logs (node manager, admin server out etc.)
    Please advice!
    Good Day.
    Atti
    Edited by: user1659354 on 11-Jan-2013 01:07
    Edited by: user1659354 on 11-Jan-2013 03:07

    This happens when node managers are not running (or not reachable), as it tries to obtain the status of the servers that are deployed on different machines.
    What you can check is; are the node managers running on the machines you have configured (in the admin console, click environment, machines, your_machine, monitoring)

  • Zend AMF extremely slow first request

    Hi all,
    I'm having a weird problem with Zend AMF and was wondering if anyone else has seen this before.
    I've got a very simple PHP/MySQL backend that returns multidimensional arrays to Flex via Zend AMF.
    Now this all worked fine up to the point that I started testing my app with a remote server instead of my local test server.
    With the remote server I noticed that sometimes, but always the first time, some PHP function is called it takes forever to call the callback function with a result. I'm talking about around 1 to 2 minutes!
    Now, when I call that same php function via a normal url every time it returns the right results in a couple of milliseconds.
    When the function has been called once it seems to be ok and next time it's called it returns results within milliseconds.
    I've had a look with a network sniffer to see if the transfer of data takes long, but that's all fine...
    So it looks to me as if it just takes forever before the RemoteObject calls it's callback function.
    I'll be testing with some stripped down code later tonight and will also set it up on a different server, but I was hoping someone else has seen this and knows a workaround...
    Thanks
    Skip

    Hmm, i just did some more tests, but the results do update so it doesn't look like it's a cached result.
    I'm not entirely sure but it looks like when multiple AMF methods are called too close to each other they are combined into one HTTP POST request to the AMF gateway. When this happens the response is extremely slow, whereas when I have make the second call after the first one has finished completely the response is ok (around 200 milliseconds).
    You wouldn't happen to know how RemoteObject handles multiple calls to an AMF backend, right?

Maybe you are looking for

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge. I am using  the edge commons JS library to load multiple compositions into a main composition. You can see how this works here: Edge Commons - Extension

  • How can I open pdf files in safari browser without installing Adobe reader?

    I do not wish to use adobe reader. I just uninstalled it and now I can't view pdf files in preview when attempting to open the file in safari browser.  How can set safari to open any pdf files using preview application?

  • Microsoft HD Photo Plug-ins for Photoshop are Released

    http://en.wikipedia.org/wiki/Hd_Photo "HD Photo has been announced by Microsoft and the Joint Photographic Experts Group to be under consideration for a JPEG standard, tentatively titled JPEG XR. "The HD Photo bitstream specification claims that "HD

  • Photoshop CS 6 - can't "SAVE AS"

    When I hit "Save As" - nothing happens ap all...no error message - NOTHING I've checked my mode, resolution, using hte shortcut doesn't do anything either. HELP!

  • Hp 530 black screen

    don't know what the prob is with my HP 530. a friend of mine was playing a game on it and suddenly it brought a blue screen saying that i should uninstall any hardware or software install or I should do something to my bios and went off. later tried