WL 8.1 - JMS Flow Control: How does it work

I have been reading the documenattion on the way weblogic has its Flow
          Control setup. However I still have a few doubts. It would be great
          if some one can help.
          Background: I have a J2EE application deployed on the weblogic server
          (8.1 sp5) which connects as a Consumer to a Topic. On the other side I
          have a plain java application that acts as a producer and sends lots
          of small messages (about 300 bytes) out to the topic using
          MessageProducer.send() method.
          I would like to restrict the flow from this producer so that it waits
          if the consumers are unable to collect all messages from the topic.
          When I enable flow control, I can see log entries in my weblogic
          application that shows that it has beocme armed but it clears off the
          same second. However, I don't see any exceptions being raised at the
          producer side. How can I ensure that the producer is waiting x ms to
          send further messages across. I can't see anything at the producer
          side that would lead me to believe that the flow control is working. I
          also checked the properties for each of teh Session, Connection and
          COnnectionFactory attributes but could not come across any way where I
          could see that the producer knows about the quotas being implemented
          on the queue.
          Can someone throw some light?
          Thanks
          Vikash

Hi,
          Except for the threshold log messages you mention, flow control is silent: no exceptions are thrown when a producer is flow controlled. Flow control simply slows down "send()" calls. You can control how long a flow controlled send() call will take via the connection factory settings. I suppose you can instrument your code to time the send() calls.
          Your statement "When I enable flow control, I can see log entries in my weblogic application that shows that it has beocme armed but it clears off the same second." is likely an indicator that flow control is working. You need to configure your thresholds to be farther apart if you want the flow control condition to last longer, and if you want to reduce the number of transitions in and out of flow-control.
          Tom
          P.S. The threshold settings in 8.1 also control paging. If you upgrade to a new version, then the threshold settings will only control flow-control. You will also likely get much much higher messaging performance - which can reduce the need for flow control.

Similar Messages

  • How does Remote work with Apple TV?

    How does Remote work with Apple TV?
    1. Does Remote, "Play" the music that resides on your iPod Touch>Apple TV>Home Speakers.
    OR
    Does Remote "Control" the music that resides on Apple TV HD>Home Speakers.
    (If so... say you have a iPod Touch that only holds 8GB's but your music collection on your Apple TV exceeds that amount.
    Will Remote still "Control" the larger music collection on Apple TV or your computer?)
    2. Will iPod Wifi work on a patio outside a home to control Apple TV inside the home?
    thank you in advance, Tom

    Remote is a way to control iTunes on either your computer or Apple TV using a WiFi connection. See this article for complete instructions.

  • Control-clicking does not work in Finder

    Ever since installing the 10.4.5 update, control-clicking does not work in Finder. When I try to do it, Finder automatically restarts itself. This happens in any Finder window and on the desktop itself. Whether I am control-clicking an Application icon or trying to 'Get Info' on a file, Finder restarts itself. I repaired permissions and it did not fix the problem.
    Any idea on how to fix this? Thanks a lot!
    David
    Edit: Nevermind. I fixed it by deleting the JIMZip.plugin file in my Contexual Menu folder. I found the answer in another thread. I apologize for searching after I created this thread.

    David,
    Can you identify any corrupted or incompatible files in either your Macintosh HD/Library/Contextual Menu Items folder, or your Macintosh HD/Users/yourhomefolder/Library/Contextual Menu Items folder?
    If so you may be able to uninstall/reinstall the associated application.
    You may also consider temporary manual removal and isolation of the suspect file to verify CM functionality.
    ;~)

  • Corecell, how does it work?

    Hello!
    I'm being puzzled by Corecell features. MSI web pages tell me that Corecell has four different settings (Speedster, Buzz free etc.). I have installed Core Center (ver. 1.6.1.0) but there is no possibility to change into Buzz free mode.
    How can it be changed? I have found fan controls and auto-button but do I have to make settings by my self? Auto-button does not have any effect!
    Thanks in advance for your help!
    Niko
    system specs:
    Antec 380W True-Power
    MSI KT6 FISR
    AMD Athlon XP 2600+ Barton
    512Mb DDR400
    80Gb Samsung S-ATA HDD

    You gotta throw use a bone here... How does what work? More info please.

  • ORACLETEXTSEARCH - How Does it work?

    Hi experts,
    I had a many disccusions with my coleagues about ORACLETEXTSEARCH in the UCM11g. We found that we don't undestrand How does it work.
    I have a basic questions:
    1. Does ORACLETEXTSEARCH use only database engine for the indexing?
    2. Can I start fulltext indexing without Oracle UCM? Only by database.
    3. Are some differences between UCM10g and 11g?
    Thank you for the answers and the explanation.
    Martin

    1. Oracle text is a DB tool installed at the DB level, however as others say the triggers to kick it off are done by UCM not independently at the DB. I do not think it could work that way.
    2. No, but other indexing options are available like SES
    3. 10g required a component to be added to the UCM server and required an 11.1.0.7.0 or greater oracle DB. 11g requires no extra component but still has the db requirement.
    SES can be configured to index multiple different repositories (including UCM) and you can control the index rebuilds directly from SES as an option for number 2.

  • How does composition work?

    How does composition work?
    Can someone explain it to me ,some example for me would be better.

    Composition and Aggregation are two important UML Concepts. Both of them are associations. They explain how one object is related to another object. So lets talk about all three.
    Association: This means that one object uses another object. For example, you use your car so we can say that you are associated with your car. In UML this is drawn as a plain line between the two objects.
    Aggregation: This means that the target object is part of the parent object. However it is important to note that an aggregation can have a cardinality of 0. Some simple examples are the doors of your car. This is drawn as a line between the classes with an empty diamond on the side fo the object doing the aggregation.
    Composition: This is a form of aggregation in which the object doing the aggregation (the object grouping the child objects) has life cycle control over the child objects. By this I mean that the object being aggregated cannot exist outside the aggregating object. An example of composition is a position on a checkers board. If we create the class CheckersBoardPostition, this class cannot exist outside of our class CheckersBoard. So we say that the CheckersBoard is composed of CheckersBoardPositions. This concept is drawn as an aggregation line, except that in this case the diamond is filled in.
    Generally when determining relationships of objects you ask the questions "Is a?", "Has a?" and "Uses a?"
    If you answer "Is A?" with "yes", then it is inheritance (aka generalization) Eg: A bar stool is a chair.
    If you answer "Has A?" with "yes", then it is aggregation. Example: A car has a wheel.
    Once you determine "Has a?" then you ask, "Can the aggregated object exist outside of the aggrgating one? In the case of wheel and car, the answe is "yes" and thus it is not composition. If the answer is no, then it is compostion.
    If you answer "Is A?" with "yes", then it is association. For example: A person uses a car.
    The concepts have the following importance. The top one that applies is used to model the relationship.
    Generalization > Composition > Aggregation > Association.
    -- Derisor

  • SAP WM-RF 'Serial Number' Transaction LM80 - How does it work?

    Hi gurus
    We are looking at using the standard SAP RF transaction 'LM80' - 'Serial number capture'
    Does anyone have any experience with this transaction?  How does it work and what is the process flow?
    Cheers
    Eddy

    Hi
    Please advise if this is the process others are using for LM80:
    1. Create STO or Sales Order
    2. Create Delivery
    3. Create Warehouse Transfer Order
    4. Pick/Confirm Warehouse Transfer Order
    5. Scan serial numbers to completely picked delivery via LM80
    6. Post Goods Issue
    My question is:  is there a way to 'pick' via serial numbers?  The process would then be that you scan in serial numbers during picking
    kind regards
    Ed

  • W530 - How does things work when having two graphics cards?

    So I have a W530 with an Intel HD Graphics 4000 and a NVIDIA Quadro K2000M.
    How does things work when the computer has two graphics cards? I mean, is only one active at a time? Or is one doing complex calculations while the other one might be the one displaying them on the screen?
    Related question:
    I just bought and installed the game Portal 2. How do I know if it is using the better graphics card (NVIDIA Quadro K2000M)? And if it is not, how do I configure Windows, Steam or Portal 2 to use it to its full potential?

    Technically, the Intel integrated graphics is always active, although it is not always in use. Nvidia graphics will turn on and off according to need. Software from Nvidia called Optimus automatically switches between integrated (Intel) and dedicated (Nvidia) graphics, according to the application. Portal 2 will run smoothly at maximum settings and native 1920x1080 resolution using the K2000M. The easiest way to see which graphics card is in use is to check the "Display GPU activity icon in notification area" option in the Desktop menu of the Nvidia control panel. It should automatically use the Nvidia graphics card when Steam is running. If it does not, you can add Steam to the program settings in Nvidia control panel and select that it should always use the Nvidia graphics.
    Also, if you are using an external monitor and the notebook monitor, then you will be using both graphics cards - the Intel graphics will drive the notebook screen and the Nvidia card will power the external display(s).
    Thinkpad W530, i7-3720QM, 1920x1080 screen, 32GB RAM, dual SSDs (Samsung 830, Crucial M4 mSATA), Quadro K2000M, 9-cell battery, DVD burner, backlit keyboard, Bluetooth, Intel 6300 wireless card

  • How does this work?

    This is not a complaint, but a confused sigh of admiration. I've got an email account at the university where I teach. When I got my iBook, it took me a while, and a few conversations with IT at the school, to get this account working in the Mail application. (Since I have a Verizon DSL at home, I had to include that SMTP as the outgoing server.) Anyway, I synched this mail account (along with my AOL and .Mac accounts) onto the iPhone, and it works perfectly, both incoming and outgoing. I didn't have to change any of the settings. I thought I was computer savvy, but I can't wrap my mind around this. It seems like magic. How does it work?

    The sync process with iTunes transfers the email account settings (for your chosen accounts via your iPhone sync preferences) from the Mail application on your Mac to the iPhone's email application.
    The iPhone is running OS X and the iPhone's email client can be considered a mobile version of the Mail application.

  • My iPhone was stolen and I have contacted the police who are using the meid number to locate.  How does this work and what are my chances of getting the phone back?

    My iPhone was stolen.  I used Find My iPhone app to lock it and display a message.  The phone has not connected to the internet to locate it.  I contacted the police and they have taken my meid number.  How does this work and what are my chances of getting the phone back?  Are there other ways the theif can use it.  I was told once they put in a new sim card and use it, whatever software the police have, it will show up.

    Honestly? In the US (I can't speak to other countries, though I doubt it works much differently in a lot of the world) The police took your report and filed it either in their computers or, on paper. They will now not think of this again. The only time it will cross anyones mind is if, in the course of entering information into evidence about items recovered or seized at a crime scene, the serial number of an iPhone that was found/seized happens to match yours, in which case you will be contacted.
    The police in the US can and will do nothing to 'blok' the phone and it's not worth their time to try and locate it unless you know for a fact that it was stolen by a big time drug lord, master criminal, or some other such prime target and they can get a court order to track the location of the phone in order to locate this individual for your own purposes.  If they do that, they'll probably keep him under surveilance for a year or so before they act.
    Basically, the police don't care about your phone. If they find it, they will give it back to you. They are not, however, going to go looking for it. They have better things to do.
    I'm sorry, but that's the way it is.

  • Was told a USB device would create a PDF automatically from the data contained within when plugged into my USB port. Doesn't seem to work. How does this work and how can I fix the device I received?

    Acrobat is not on the USB device - only Adobe Reader needed on the PC. How does this work? How can I fix this device if at all?

    You need to ask the people who sold it to you. Doesn't sound like it has anything to do with Reader.
    However, you should be wary of devices that automatically try to open files when plugged in. They can also infect your computers with all kinds of viruses or malware.

  • HT2357 So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    So how does this work on Mountain Lion? I cannot seem to ignore the iTunes 11 updates, which now seem to appear every 5 minutes!!

    Fantastic!  Didn't work at first so restarted App store and tried again.  This time it asked 'ignore update'.  All gone!

  • TS1425 My co worker has given me his iPod to take home and transfer his music to my laptop, however, I am unable to access his music to download it to my computer.  How does this work?

    My co-worker has given me his iPod to take home and transfer his music to my laptop, however, I am unable to access his music to download it to my computer.  How does this work?

    You need to transfer the iTunes Library from the most recent backup you made before the hard drive was replaced.
    You can't transfer the full iTunes Library from the iPad back to iTunes.
    There are third-party Windows applications that will transfer data from an iOS device, but they don't re-create the iTunes Library exactly as it was before.

  • I got a itunes gift card and when i try and buy some thing it asks me for my credit card details how does that work when i have £15 on my fone that i got on a gift card?

    i got a itunes gift card and when i try and buy some thing it asks me for my credit card details how does that work when i have £15 on my fone that i got on a gift card? as i am trying to buy a song and it is starting to really cheese me of now where it keeps asking for credit card details is there a way round it with out having to use a credit card?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I would like to know which app/software in MAC gives us the same feature that is provided by System Restore in Windows, and how does that work

    I would like to know which app/software in MAC gives us the same feature that is provided by System Restore in Windows, and how does that work.

    Time Machine is one such program, although it is a recursive backup program which offers limited archive capability, based on the capacity of the backup destination, and it requires you set it up before you start editing your files.   Some programs are also Versions aware, which offers a kind of restore capability by file.  Again needs to be setup before you start editing.
    Just a for-your-info:
    Mac is not an acronym, it is a nickname for Macintosh.

Maybe you are looking for