Not all JMS consumers are created equal

Hi,
I am experiencing a very strange problem with weblogic 9.2 JMS.
I am using JMS as flow control in an application that allows our users to import data into our application.
the data to be imported varies in size from 100's of records to many hundred thousands of records.
JMS feed a MDB that takes the request and imports the data. The DD allows to 10 concurrent MDB's to service the requests.
The problem arises when the 11'th and 12th request comes in. Instead of waiting for the first availibe MDB to service the requests they seems to be put into the queue of the MDB that was started first. If this MDB is in the process of importing a very large file request 11 and 12 will sit and wait until the large one is done even though there are other MDB's that are idle.
I am hoping that there is an easy fix for this, but for the life of me, I cant seem to find it.
The DD for the MDB looks as follows
<weblogic-enterprise-bean>
<ejb-name>RuleEngineMDB</ejb-name>
<message-driven-descriptor>
<pool>
<max-beans-in-free-pool>10</max-beans-in-free-pool>
<initial-beans-in-free-pool>10</initial-beans-in-free-pool>
</pool>
<destination-jndi-name>com.company.product.RuleEngineRequestQueue</destination-jndi-name>
</message-driven-descriptor>
</weblogic-enterprise-bean>
the queue is defined in Weblog as
<queue name="RuleEngineReque
stQueue">
<sub-deployment-name>MyJMSServer</sub-deployment-name>
<delivery-params-overrides>
<delivery-mode>Non-Persistent</delivery-mode>
</delivery-params-overrides>
<message-logging-params>
<message-logging-enabled>true</message-logging-enabled>
<message-logging-format>%header%,%properties%,%body%</message-logging-format>
</message-logging-params>
<jndi-name>com.company.product.RuleEngineRequestQueue</jndi-name>
</queue>
regards,
Lars Hansson
CTO Compost Marketing AB.

A little more detail: You will need to configure and target a custom conection factory with "message maximum" set to 1 (the default is 10), and then modify the MDB descriptor to reference the JNDI name of the custom connection factory. The connection factory should be targeted to the entire cluster, and must be targeted to the same cluster that hosts distributed queue. If the MDB is transactional, ensure that that the custom connection factory is also "xa enabled".
Edited by: TomB on Mar 2, 2010 2:44 PM

Similar Messages

  • Not all my songs are showing in itunes even though they are in the Itunes Media file directory

    Not all my songs are showing in itunes even though they are in the itunes Media Dir.  I have spent hours trying to find out why so I moved the songs out of the Music/itunes/itunes media and uninstalled itunes.  I then restarted my pc and re-installed itunes.  When I opened itunes the same songs are still there (but cannot be played as cannot find location) even though I have not put anything back in the itunes media dir.  To me there seems to be a refreshing problem as itunes is not looking at the directory even through the advanced preferences area is mapped to the correct area.
    Help please.
    Thanks

    Apple's official advice on duplicates is here: Find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership, or that sometimes the same file can be represented by multiple entries in the library and that deleting one and recycling the file will break the other.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background, this post for detailed instructions, and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and should cope sensibly when the same file has been added via multiple paths.
    See also Make a split library portable for some thoughts on best practice when it comes to organizing the library and media files.
    tt2

  • How to identify what are all the events are created in background jobs?

    Hi all,
    how to identify what are all the events are created for  background jobs. And what events gets triggered for a particular job.
    thanxs
    haritha

    Hi Haritha,
    JOB is a program which starts to a determined point of time and executes some standard programs in the system. JOBs can be planed to a determined point of time on the regular basis (every night, for example) or to some discret time moments. So, the JOB can be planed and then will be started automatically without the manual start.
    Realtime programs are understood in the most cases as actual program execution which is started by somebody to the actual moment of time.
    Typically per JOBs some special processes will be started that should be executed automatically and regularly: for example, IDOC application, some correction reports, statistic updates etc.
    Standard jobs are those background jobs that should be run regularly in a production SAP System These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    Use
    As of Release 4.6C, the Job Definition transaction ( sm36 ) provides a list of important standard jobs, which you can schedule, monitor, and edit.
    Standard jobs are those background jobs that should be run regularly in a production SAP System. These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw70/helpdata/en/24/b884388b81ea55e10000009b38f842/frameset.htm
    About Events:
    Events have meaning only in the background processing system. You can use events only to start background jobs.
    Triggering an event notifies the background processing system that a named condition has been reached. The background processing system reacts by starting any jobs that were waiting for the event.
    Types of Events:
    There are two types of events:
    1.)System events are defined by SAP. These events are triggered automatically when such system changes as the activation of a new operation mode take place.
    2.)User events are events that you define yourself. You must trigger these events yourself from ABAP or from external programs. You could, for example, signal the arrival of external data to be read into the SAP system by using an external program to trigger a background processing event.The event scheduler processes an event if the event is defined in the system.
    For example, if a system (System 1) receives an event from another system (System 2), the event scheduler of System 1 processes the event only if it is defined in System 1. That event does not need to be defined in System 2 (the sending system).
    You define an event by assigning a name (EVENTID) to it. When defining an event, you do not define the event arguments.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw04s/helpdata/en/fa/096e2a543b11d1898e0000e8322d00/frameset.htm
    When you schedule the process chain or infopackages the jobs associated with it run in the background mode. In case you want to create a job for a specific activity you can do so in SM36. You would be creating jobs that would get executed in any one of the options:
    1. Immediate
    2. Date & Time
    3. After event.
    4. After job.
    5. At Operation mode.
    In case you want to view the job logs go to sm37.
    Also Pls check DB02 for database performance and ST03 for workload .
    Analyse u will have an idea ,
    *pls assign points,if info is useful**
    Regards
    CSM reddy
    null

  • I have three "pages" of apps, not all of which are full.  How do I move an app from one page to another to consolidate?

    I have three pages of apps, not all of which are full.  How do I move apps from one page to another to have full pages?

    Hook your iPad up to your computer and iTunes and move them from within iTunes.
    Or
    Hold down on one of  your apps until they all start to wiggle. Then hold down on the ones you want to move and drag them on the screen. Drag them to the middle left to move them left,(such as from page 2 to page one) middle right ot move them right,(from page 2 to page 3) rearrange as you want.
    When you're done, tap the home key and everything should stop wiggling.

  • My notes won't open on my iPod touch 5 g it lags and closes everything else is fine I need my notes all my passwords are written there in my notes.

    My notes won't open on my iPod touch 5 g it lags and closes everything else is fine I need my notes all my passwords are written there in my notes.

    If on a computer browser you go to icloud.com and sing in are you notes there? If so get them off.
    Next,
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>iCloud and delete the iCloud account from the iPod,. Note this does not delete the account, only deletes it from the iPod. Then sign back in.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Backup and then restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • Not all selected pictures are shared in album sharing in Photostream

    I am trying to share an album with my friends on photostream. After i selected the album, added the friends, and waited for ever to upload the pictures, I realized that not all the pictures are available on the shared album. So i had to go back again and check the photos one by one to see what has been uploaded and what is missing to reupload them manually. This can get very tiring in large albums.
    I guess mmy question is this:
    Why is it doing that ? and how can i avoid such behaviour?
    Is there a way that i can monitor / check the photos uploaded to make sure that the full album is there online ?

    Hello Karim Zaafan,
    Thank you for using Apple Support Communities!
    I was thinking that it might be a good idea to see if perhaps you are bumping up to the limits of Shared Photo Streams.
    iCloud: Photo Stream limits
    http://support.apple.com/kb/HT4858
    Shared Photo Stream limits
    The current Shared Photo Stream hourly and daily limits are as follows:
    Maximum number of photos to share per hour: 1,000
    Maximum number of photos to share per day: 10,000
    These sharing limits are separate from the upload limits above. For example, in the same day you could upload 10,000 photos to My Photo Stream and then share those 10,000 photos, or 10,000 other photos.Some additional limits for Shared Photo Stream usage:
    Maximum shared streams an owner can share: 100
    Maximum shared streams a user can subscribe to: 100
    Maximum subscribers per shared stream: 100 (the number of subscribers on each shared stream)
    Maximum number of photos per shared stream: 1,000
    Maximum number of comments per shared stream photo: 200 (a comment can be either a like or a text entry)
    Maximum characters per comment: 200
    Maximum number of invites a shared stream owner may send per day: 200
    Also I would recommend this precautionary step from iCloud: Photo Stream troubleshooting found http://support.apple.com/kb/TS3989
    Ensure your iOS device has not fallen below 20% battery power. To preserve battery life, Photo Stream downloading and uploading are disabled when the battery reaches this threshold. Downloading and uploading will resume once you charge your device, and the battery charge is greater than 20%.
    Cheers,
    Sterling

  • Error during Usage Decision - Not All Physical Samples are valuated

    Hi,
    I am using Sampling Procedure as follows:
    Sampling Type :   Fixed Sample
    Valuation Mode :  Attributive Inspection nonconf. Units
    Inspection Points : Sample Management
    I have assigned the  Inspection Point as  200  and Sample Drawing  Procdure in Inspection Plan Header.
    I have recorded and closed results for 3 samples. During Usage decision the following message shows:
    Not all physical samples are valuated!  Do you want to force inspection completion? 
    This means that Valuation of Inspection points have not updated. I request your help to solve this problem.
    Thanks & Regards
    V.Devaraj

    Hi
    Check the inspection plan, check for all the operation, by double clicking on operation you enter the opertioa details screnn, pls scrol down, you should have a field called VALUATION, select the option "automatic valuation option" .
    try this
    navin

  • I preordered an album but not all the songs are showing up. They say purchased but wont go into my itunes library or onto my iphone. Please help.

    They say purchased but wont go into my itunes library or onto my iphone. Please help.

    Hey there aussieboss123,
    It sounds like you are wanting to download an album that you pre ordered, not all the songs are downloading. First, use this section of the following article to see if the tracks download:
    Download a pre-ordered item
    When a pre-ordered item becomes available, you will receive an email letting you know that you can download your pre-order.
    If you enabled the option to automatically download prepurchased content in iTunes, then your pre-ordered content may already be in your library. If not, click the download link provided in your email notification, and your pre-ordered content will begin to download. You can also use the Check for Available Downloads feature in iTunes on your computer (choose Store > Check for Available Downloads) to begin downloading your pre-order.
    iTunes Store: About pre-orders
    http://support.apple.com/kb/ht5714
    If it does not, I would use the following article to report a problem with the purchase to the iTunes Store support directly:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • I am new to Muse so I am following the tutorial for Katie's Cafe.  I downloaded the sample files.  The problem is not all the files are in the folder as are on the tutorial.  The colour sample for instance is not there.  The CC Getting Started Katies.muli

    I am new to Muse so I am following the tutorial for Katie's Cafe.  I downloaded the sample files.  The problem is not all the files are in the folder as are on the tutorial.  The colour sample for instance is not there.  The CC Getting Started Katies.mulib file is also not there so you cannot automatically download all the necessary library files.  Can anyone help?

    found it in another area
    Where do I find the cc getting started Katies.mulib File ?

  • Despite ticking the box "remove all website data", when I reset Safari not  all stored cookies are eliminated. How can I overcome the problem? Or is it a bug?

    Despite ticking the box "remove all website data", when I reset Safari not  all stored cookies are eliminated. How can I overcome the problem? Or is it a bug?

    I have done a little experimenting: 1-close all open windows (I found that I had to do this step in order to keep Safari from hanging-will be explained later). 2: Remove all data in Prefs. 3: Immediately close the prefs window (no window should be open at this point) and quit Safari. Try to complete step 3 fast as possible; I have it down to a few seconds. The reason I urge you to close all windows is that Safari hangs until forced to quit upon immediately quitting after removing cookies. I think the auto page reload in Lion is the cause of these hiccups but I can't be sure about that. The hasty quit I found is crucial to success. Don't know why that is but it could prevent the data from re-populating. A quick flush, if you will.  Hit me back if you need any of my suggestions clarified; a bit wordy, I know

  • Not all physical samples are valuated, force inspection completion?

    Hi
    I have entered results against inspection characteristics but on UD the system gives message "not all physical samples are valuated, do you want force inspection completion?
    What is missing or how can I avoid this message?

    In QE23, Select the inspection lot and check for the physical sample,
    Once you enter both, you will get the screen similiar to QE51 to record result,
    You will see a button for physical sample  which u need to select and do the valuation.
    hope this helps

  • HT4759 not all my contacts are being sync from my IPad or IPhone to ICloud?

    When backing up IPhone 5s or Mini IPad retina, not all my contacts are backing up or showing in ICloud?

    I assume that you have enabled contacts syncing with iCloud in Settings>iCloud on your devices.  If so, and some of your contacts don't appear on icloud.com, open the contacts app and tap Groups.  Do you have any non-iCloud accounts listed such as On My iPhone (iPad), Gmail, Yahoo or an exchange account?
    Also, go to Settings>Mail,Contacts,Calendars>Default Account (in the Contacts section).  Do you have the Default Account setting there, and if so, what is selected as your default account?

  • When I export a playlist and then open in excel, do whatever sorting I want, I then save the file and reimport into itunes but not all the songs are there. It appears to be from "comma's" in the song name. Any solutions?

    I see songs such as "Monday, Monday" or "Paint It, Black" or even the artist name such as "Fireballs, with Jimmy Gilmer" which have comma's in them, being a problem when I try to do the following:
    1. Export a playlist which contains songs which are all there and play fine, but some have comma's in the title such as listed above.
    2. I then open that file in Excel and bring it in as a Tab-delimited file.  Everything lays out fine, and all the songs are thing (including those with comma's).
    3. I then sort the varoius fields I want (which I can't do in i-tunes because i-tunes won't sort it properly), and resave the file as a newly named file, which is also a .txt file.
    4. I then import that playlist into my itunes. It is exactly the same songs that I just had exported but i-tunes says some of the songs can't be found.
    I have traced this problem to comma's in the file name of the song such as listed above.  There must be a solution to this either as the file is opened in excel or in how it's saved or some other solution short of having to rename song/artists without using comma's. 
    Thanks.

    The additional problem is the file name of the song itself.  Even if I were able to delete the commas or replace with a space for example, changing the file name would result in itunes not being able to find the file.  I would have to go through each file (out of about 15,000+ songs) to find any that have titles such as described in this thread and change not only the song and artist in the fields, but changing the mp3 file itself. 
    I fear that I am really pretty much going to have to start with a list of songs that have no comma and then do a file compare to find those songs with commas and then just physically moving them into a new playlist I'm trying to create, but this is a royal pain as I want to be able to create a variety of playlists based on these chart dates/peak positions. 
    I'm trying to sort the songs in this manner:  I use different fields in itunes so that I can put the "peak position" of each song based on Billboard charts, as well as the date the peak position was acheived. I use the "comment box" for that.  I use the "grouping" field for my peak position.
    So I end up with something like "10/14/1980" in the comment box as the peak position for a song which is in the grouping field, and so forth.  If I try to sort the comments column in itunes for example, it won't sort properly. If I sort the Grouping field, it will bring up all the "1's", but that's followed by "10", 11, ...19, then "2", etc.  This is why I want to export the playlist and sort it as I want, and then reimport the playlist into itunes. 
    What I'm ultimately trying to achieve is a year-by-year peak position playlist so that I end up with every #1 song (in this case) from, say, January 1st 1980 and then every #1 song in sequential order for the rest of the year falls in line.  I have chart position dates from 1955 through 1999.  I have entered in all the data from Billboard books I own so I can really create some amazing playlists, but these commas are problematic. Had I known this ahead of time I would have made "Monday, Monday" as "Monday Monday" and not included commas, but it's too late for that.
    Any suggestions?

  • New version of ITunes installed - Not all music files are being recognized

    My system crashed and Itunes was automatically 're-installed.' My music is located on my external hard drive. When I reconnected my music to ITunes about 3000 music files did not appear in my library. Before the re-install all music files were available in the library.
    The music files are all still located on my external hard drive. Strangely, when I copied my music on my external hard drive to create yet another back up of my music many music files were missing on the copy. The missing files were a combination of downloaded music from a cd and purchased, no trend.
    I welcome any advice on how I can get 1. my ITunes library to read all of my music files (which are in ITunes format) and 2. how do I copy all of my music on my external hard drive to make a safe back up (I-tunes back up is not an option because not all of the music appears in my library)
    Thanks for your help

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • I updated to iOS 5 and not all my ringtones are not there and I can not add anyone to my contacts

    I updated to the new operating system and now not all of my ring tones are on my phone and I can not edit or add anything or anyone to my contacts unless they are my favorites. Please help.

    Connect via cable to the computer that you use for sync.  From iTunes, select the iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "no" to creating a backup.  (You don't want to overwrite the backup file with blank data.)  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPod.  This time, say "yes."

Maybe you are looking for

  • Help I can't delete a .mov file, because it is in use

    Hi I my mac will not delete a quicktime .mov file because it apparently is in use. I don't know where it is in use, because I deleted the imovies it was in and I have no open windows of it on my computer. I am thinking it might still be uploading to

  • Adobe Reader X (10.1.1) print dialog freezes

    We recently pushed out Reader 10.1.1 to our agency staff. Some people have reported that the Print dialog box or the Print Properties dialog box freezes for 30-60 seconds before they can click any buttons on it. After that it seems fine. We're on Win

  • Exception handling for mis-addressed messages

    We are using ebXML messaging in WLI. In many of our workflows we start new conversations with trading partners based on the contents of address fields in the messages. Now and again during development a message comes in which is addressed to a TP who

  • How to see the TR'S in query

    Dear All, I would like to see  what are the TR's generated against the query and TR request details,Please advise how to see the details

  • Workflow Mailer Service not starting

    Hi Friends, My Environment OS : OEL4U5 Application Vers : R12.1.3 Db Version : 11.1.0.7 Hostname : erptest01 Here we configuring the Workflow Notification Mailer Service in our R12 instance. When we trying to start services in the workflow service co