Round Robin was not happening for my cluster with WebLogic Proxy Plugin

          Hi,
          I configured my cluster with software load balancer, HTTPClusterServlet. By default,
          it is load balancing with Round Robin Algorithm. That means one HTTP request
          goes to server1, and the other HTTP request goes to server2. However, it is not
          what I can see no matter for the requests in one HTTP session or not.
          Say I open two browser, and log into my application with two different users,
          one is "cyang", the other is "xpression". Then the HTTP request (for servlet/jsp)
          from two browsers always go to the same server1, server2 is not invoked at all.
          I did see one time, with only one session (one browser with "xPression" user log
          in), the most requests go to server1, suddenly I am brough into log in page, then
          I noticed that the request for "xPression" moved to server2 although server1 is
          still alive. Therefore, at most, I can say it is "Random", rather than "Round
          Robin".
          What is the real meaning for HTTP servlet/jsp load balancing algorithm? Does
          Round Robin mean request go to each server in turns? Does it have to be different
          session or it can be within one session?
          

It should be sticky. If not, then bug / config error.
          Peace,
          Cameron Purdy
          Tangosol, Inc.
          http://www.tangosol.com/coherence.jsp
          Tangosol Coherence: Clustered Replicated Cache for Weblogic
          "Carole Yang" <[email protected]> wrote in message
          news:[email protected]...
          >
          > Thanks. Yeh, with two kind of browsers, I do see the request goes to
          different
          > servers.
          >
          > That goes back to the original question. Does "Round Robin" here fall
          into the
          > scope of a HTTP session. However, that is not always true for my tests.
          Sometimes,
          > HTTP request just randomly goes to another server while in the same HTTP
          session.
          > It is not sticky to one particular server during one session.
          >
          >
          >
          > --Carole
          >
          >
          > "Cameron Purdy" <[email protected]> wrote:
          > >Has to be different sessions to go to different machines.
          > >
          > >Best way to test is to run one session in IE and the other in Mozilla
          > >or
          > >Netscape.
          > >
          > >Peace,
          > >
          > >Cameron Purdy
          > >Tangosol, Inc.
          > >http://www.tangosol.com/coherence.jsp
          > >Tangosol Coherence: Clustered Replicated Cache for Weblogic
          > >
          > >
          > >"Carole Yang" <[email protected]> wrote in message
          > >news:[email protected]...
          > >>
          > >> Hi,
          > >>
          > >> I configured my cluster with software load balancer,
          HTTPClusterServlet.
          > >By default,
          > >> it is load balancing with Round Robin Algorithm. That means one HTTP
          > >request
          > >> goes to server1, and the other HTTP request goes to server2. However,
          > >it
          > >is not
          > >> what I can see no matter for the requests in one HTTP session or not.
          > >>
          > >> Say I open two browser, and log into my application with two different
          > >users,
          > >> one is "cyang", the other is "xpression". Then the HTTP request (for
          > >servlet/jsp)
          > >> from two browsers always go to the same server1, server2 is not invoked
          > >at
          > >all.
          > >>
          > >> I did see one time, with only one session (one browser with "xPression"
          > >user log
          > >> in), the most requests go to server1, suddenly I am brough into log
          > >in
          > >page, then
          > >> I noticed that the request for "xPression" moved to server2 although
          > >server1 is
          > >> still alive. Therefore, at most, I can say it is "Random", rather
          > >than
          > >"Round
          > >> Robin".
          > >>
          > >> What is the real meaning for HTTP servlet/jsp load balancing algorithm?
          > >Does
          > >> Round Robin mean request go to each server in turns? Does it have
          > >to be
          > >different
          > >> session or it can be within one session?
          > >
          > >
          >
          

Similar Messages

  • My phone was not worked for last two days  it happen after the instalation of new os,this is happen one of my friiends also plssssss find some solution

    my phone was  not worked for last two days  it happen after the instalation of new os,this is happen one of my friiends also plssssss find some solution

    We are all just phone users here, and no-one can hope to provide any advice with so little information to go on as to what exactly has happened.  You need to provide some detail.

  • For some reason, when my Macbook Pro starts up, all of the MS Office applications open.  This was not happening when I first purchased the laptop, and I never added these apps to the startup menu.  How do I remove these apps from startup?

    For some reason, when my Macbook Pro starts up now, all of the MS Office applications open.  This was not happening when I first purchased the laptop, and I never added these apps to the startup menu.  How do I remove these apps from startup?

    By default Mac apps do not close when you close the window you were working in. Unlike in Windows when you click the top right X icon in any program is closes the window and the program shuts down. On Mac OS X clicking the X in the top left hand corner only closes that windows and leave the program running in the background. If they are left open and you reboot they will restart with the system and load a window for them.

  • Why cant i download itunes on my windows 7 pc? i used to have it once but it was not updated for a while and got deleted...i have tried to download it on other web browser but all i got was "thanks for downloaing itunes" and nothing happened

    why cant i download itunes on my windows 7 pc? i used to have itunes on my pc once but it was not uploded for a while and got deleted...and now i have tried to download it and all i got was "thanks for download itunes"...after that i have tired to dwnload it from another web browser and ive got the same thing.....!!

    Perhaps try downloading and saving a copy of the installer to a different PC. (If you're on a 32-bit Windows system, try to download on a different 32-bit Windows system.) Copy the iTunesSetup.exe installer to an external hard-drive, or a large-enough thumb drive or burn it to a CD-R. Carry the installer back to your PC, copy the installer to your hard drive. (Don't run the install from the ExHD, thumb or CD-R.) Start the install by doubleclicking the iTunesSetup.exe file.

  • Using a Variable in SSIS - Error - "Command text was not set for the command object.".

    Hi All,
    I am using a OLE DB Source in my dataflow component and want to select SQL Query from the master table  I have created variables v_Archivequery
    String packageLevel (to store the query).
    <Variable Name="V_Archivequery" DataType="String">
         SELECT a.*, b.BBxKey as Archive_BBxKey, b.RowChecksum as Archive_RowChecksum
         FROM dbo.ImportBBxFbcci a LEFT OUTER JOIN Archive.dbo.ArchiveBBxFbcci b
         ON (SUBSTRING(a.Col001,1,4) + SUBSTRING(a.Col002,1,10)) = b.BBxKey
         Where (b.LatestVersion = 1 OR b.LatestVersion IS NULL)
        </Variable>
    I am assigning this query to the v_Archivequery variable, "SELECT a.*, b.BBxKey as Archive_BBxKey, b.RowChecksum as Archive_RowChecksum
    FROM dbo.ImportBBxFbcci a LEFT OUTER JOIN Archive.dbo.ArchiveBBxFbcci b
     ON (SUBSTRING(a.Col001,1,4) + SUBSTRING(a.Col002,1,10)) = b.BBxKey
    Where (b.LatestVersion = 1 OR b.LatestVersion IS NULL)"
    Now in the OLE Db source, I have selected as Sql Command from Variable, and I am getting the variable, v_Archivequery .
    But when I am generating the package and when running I am getting bewlo errror
     Error at Data Flow Task [OLE DB Source [1]]: An OLE DB error has occurred. Error code: 0x80040E0C.
    An OLE DB record is available.  Source: "Microsoft SQL Native Client"  Hresult: 0x80040E0C  Description: "Command text was not set for the command object.".
    Can Someone guide me whr am going wrong?
    Please let me know where am going wrong?
    Thanks in advance.
    Thankx & regards, Vipin jha MCP

    What happens if you hit Preview button in OLE DB Source Editor? Also you can use the same query by selecting SQL Command option and test.
    Could you try set the Delay Validation = True at Package and re-run ?
    If set the query in variable expression (not in value), then Set Evaluate As Expression = True.
    -Vaibhav Chaudhari

  • Table T000 was not relevant for conversion in BDLS log

    Hi All,
    I am getting the below message in BDLS log  while doing logical system system conversion with BDLS.
    "Table T000 was not relevant for conversion"
    Due to this I could see old logical system entry in SCC4 instead of New converted logical entry.
    (I've gone through the forums ,but didn't find solution)
    Any Idea why I am getting this message and I triggered BDLS from client 000.
    Regards,
    Srinivas Chapa.

    Already SCC4  entry for the client has old Logical system name.
    Ex:
    Client 500
    Logical System : <PRD>CLNT500
    I need this to be change to <QAS>CLNT500 after BDLS,but it is not happening after BDLs.
    Regards,
    Srinivas Chapa.

  • Interval 01 was not created for number range object HRTEM_REFN

    Dear expert!
    Now, I'm getting some issues in Training and event management module.
    - The first, I created business event
    - Second, I process to book for business event by tcode: PSV1 --> book --> book/payment info --> activity allocation.
    But when I was booking, the system displayed error: "Interval 01 was not created for number range object HRTEM_REFN"
    Help me, please!
    Best regards, Huy!

    Go to the customization as below
    Training and event mgt>Basic settings>Number range maintanence>Define number ranges for External operation
    and maintain number ranges as 01 Internal
    Hope ur problem will solve
    with regards
    partha

  • Temp folder was not set for RTFStringbuffer Error

    Hi,
    We are using CR XI 11.0.0.895 and CR XI JRC is been used to generate the reports in PDF and RTF format.
    While generating report of more than 1000 pages in RTF format throws the below mentioned exception
    temp folder was not set for RTFStringbuffer
    However, Generating reports in PDF format generates the report.
    Find below the environment details which would helpful for the analysis.
    CR XI 11.0.0.895
    IE 6.0
    MS-office 2003
    Windows XP SP2
    Reports JRC application deployed on Weblogic 8.1.4
    Please suggest us a solution for this problem.
    Thanks in advance.

    If you run [Process Monitor|http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx], do you see any file access errors when the JRC tries creating a temp RTF file?
    I think I've recommended this before, but have you tried the newest version of the JRC?
    [https://boc.sdn.sap.com/node/19020]
    The XI Release 1 keycode will work with it.
    Sincerely,
    Ted Ueda

  • LIBOVD ERROR  - "validateContextToken: workflow session was not found for given context. Create a new workflow session with token"

    Hello everyone,
    I have the following scenario:
    We're using "Oracle SOA Suite 11g 11.1.1.7.0" (Patched w/ 17893896) mainly for a BPM/Human workflow composite. Former, we were having the error bellow:
    <Mar 16, 2015 1:13:03 PM BRT> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Verification Service cannot resolve user identity. User weblogic cannot be found in the identity repository. Workflow Context token cannot be null in request.
    ORABPEL-30511
    When that error ocurred, no one was able to use the system (BPM/Human Workflow).
    I opened an SR, and after some analysis from the support, it recommended me to set up "virtualize=true" in EM, and restarting the domain. Then it started logging the following:
    connection to ldap://[10.200.10.57]:7001 as cn=Admin.
    javax.naming.NamingException: No LDAP connection available to process request for DN: cn=Admin.
    Looking up on support KB, I found this note Doc ID 1545680.1 and increased from Max size of Connection Pool 10 to 200. That did work successfully! Problem now is that the <SERVER>_diagnostic.log is being filled up with the following error:
    [2015-03-31T16:03:46.421-03:00] [soa_server2] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: e0194e38aa6c9a2f:39fc1ff9:14c5def5247:-8000-00000000000a5653,0] [APP: soa-infra] <.>    validateContextToken: workflow session was not found for given context. Create a new workflow session with token=51490173-e3d0-41dd-ae99-983915aa8454;;G;;Z+P7Oe9ABnoTUQD9ECryEW2l0/8yRcqPDyZsOWBCuzMmRgA3Qsj601TxmWQ87z2MjuwW5AH+KzgjIwkPmhJFdpc1FrE6Y/MrN1bxIDHJWu2/zP3iSNwKD07hRrh/U37Ea0TvaQyuaHJIog9y3Ptmzw==
    One important point is that we're using only the embedded WLS ldap. So I am not 100% sure if we should be using the virtualize flag=true, once all docs I read point out that this should be done when using multi-ldap providers.
    Also, I only got this error in the "diagnostic.log".
    Although, no user has complained about using the system, I really want to work it out. Anyone has any suggestions?
    Thanks in advance!

    I have moved your thread from Certification to SOA Suite to get proper assistance.
    Thanks,
    Lisa

  • Project with profit center was not created for entire period

    Hi everybody,
    I need a help with a problem here.
    The alert mesage "project with profit center was not created for entire period" was displayed.
    Then I searched for the creation dates and the profit center was created before the project gets its firsts postings. Therefore, some line itens don't exist in profit center (ledgers).
    My two questions:
    The first one, is it possible to input line itens in a retroactive way?
    Everytime I need to use the project master data this alert is displayed. How can I fix avoid this message?
    Thanks,

    Hi,
    Regarding your issue, it is theoretically possible to reverse all settlements up to the start of the project and then to settle again it
    is a must to check in standard if the profit center is valid from the project start date onwards.
    Check the attached note 1048945.
    The system generates error message KM700 ('Profit center <PRCTR> does not exist for <date>') when you enter a profit center on a project definition if the profit center is not valid in the entire period between the basic start and the basic finish date of the project definition . However, only one warning message should only be generated in this case.
    regards
    Waman

  • Itunes writes off $ 1 each time they connect to the Internet. Shopping at the time was not. For what? How do I know?

    Itunes writes off $ 1 each time they connect to the internet. Shopping at the time was not. For what? How do I know?

    Itunes writes off $ 1 each time they connect to the internet. Shopping at the time was not. For what? How do I know?

  • BDLS : Table T000 was not relevant for conversion

    Hello,
    After a system refresh ( homogeneous system copy in ECC6), we performed the post copy procedure.
    I ran the BDLS transaction, all the tables were converted fine, exept the table 000.
    I still have in transaction SCC4 the former logical systeank you in dam defined.
    I checked the BDLS job log and found the message :
    "Table T000 was not relevant for conversion"
    I don't underdtand why ? Is it the normal behaviour ?
    Table T000 is not excluded in BDLSC ...
    Thank you in advance for your help.
    Best Regards.

    I just found out that I launched the BDLS from the client 000.

  • Contract Terms-Document sequence was not found for generating clause number

    Hi All,
    I am in very strange situation and not able to find out the solution for below problem.
    when i am trying to create clause number from Contracts Terms --> Contract Terms Library : Clauses , i found below error.
    " Document sequence was not found for generating clause number. Check the document sequence setup."
    where i have setup the document sequence setup? Please help me how to resolve this issue.
    Thanks in advance.
    Edited by: user627525 on Feb 8, 2011 7:25 AM

    Hi,
    I have the same error when trying to create clause number from Contracts Terms --> Contract Terms Library : " Document sequence was not found for generating clause number. Check the document sequence setup."
    Would you like to tell me how did you solve it, please?
    Regards,
    tinar

  • Some times firefox does not opens facebook and google pages and this does not happen for other sites. Iam Currently using windows xp and using 3.6.3 Firefox version.Please help.

    Some times the fire fox does not open google and facebook pages but it does not happen for other sites. Iam currently using Windows xp and iam using Mozilla Fire fox 3.6.3 .Please help
    == URL of affected sites ==
    http://www.facebook.com,www.google.com

    You can try a direct connection and select No Proxy in the connection settings.
    You can find the connection settings in "Tools > Options > Advanced : Network : Connection"
    Also do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Automatic Batch Determination is not happening for New Sales Order Type

    Dear Experts,
      I have created a new sales order type ZBPY - For Free Sales, but automatic batch detrmination and batch pick up is not happening for new sales order type,  but it is activated for all the other sales order types in Production Server, can any body let me know the steps how to map this new order type to batch management and let it behave like other order types.
    Thanks in Advance.
    Saravanan(EKS).

    Hi Saravanan,
    Kindly check the following steps for automatic batch determination.
    1. First check the material is maintained with batch in the warehouse management.
    2. Maintain new entry for search procedure for batch determination with the new created doc type.
    3. Maintain new entry for automatic batch determination for sales order or automatic batch determination for delivery ( This depends on the business process of our client, whether they want to determine the batch with sales order or at the delivery level. check this and make new entry)
    4. Create Batch using T.code MSC1N with proper date of manuf. and SLED.
    5. Create Batch Search Strategy using T.code VCH1 with proper strategy type.
    6. Maintain stock with active batch. check this with t.code LS26 or LS24.
    regards
    Ravishankar M

Maybe you are looking for

  • I can not find Turbo Tax files on my Mac

    My files have disappeared:( I am trying to do my taxes on my IMac, as I did last year, but all the Data files have misteriously disappeared.  I have performed several spotlight searches.  I have searched for files ending .tax, I have searched my appl

  • Error message when transferring purchases

    When I try to transfer my ringtone purchases to itunes from my 3GS I get a error message..." Attempting to copy to the disk 'Macintosh HD' Failed. The Disk could not be read to or written from". My ringtones were purchased directly from the iTunes st

  • Smart collection with time of day

    I want to create a smart collection with pictures from a specific time of day, like Night, (18.00-24.00). Does anyone know if this is possible?

  • How do you change the project calender

    How do you change the project calender without changing the individual existing activities?

  • Newbie Question on Exported Photos

    I moved from 20 years of Windows use to an iMAC a couple of weeks ago. Love it so far. However, I am stuck with an iPHOTO issue. It goes like this: I download images from my camera to iPHOTO into an event, say Pets. I then edit a photo in Pets, say d