AutoScaleFormula Improvements Needed

There is a problem when there is one TVM running with an AutoScaleFormula and the number of JobManager tasks running is equal the MaxTasksPerVM. In this scenario, the TVMs will never scale up.
I have multiple workitems/jobs running tasks in the same pool. Each workitem uses a Job Manager task. The pool is configured to allow 4 MaxTasksPerVM. I use the AutoScaleFormula to scale up/down the TVMs as needed. The problem I am running into,
is that when there are exactly 4 workitems/jobs running at once, each one of them has a job manager running in the single TVM, and the TVMs won't scale up. It just gets stuck at 1 TVM instance filled up with JobManagers, resulting in none of my tasks
running.
We do not have a way to account for the running job managers in the AutoScaleFormula. Here is the formula I am using, which works great when only one workitem/job/jobmanager is running:
lastActiveTaskSample = $ActiveTasks.GetSample(1);
lastRunningTaskSample = $RunningTasks.GetSample(1);
totalTasks = lastActiveTaskSample + lastRunningTaskSample;
$TargetDedicated = min(max(totalTasks / 4, 1), 60);
$TVMDeallocationOption = taskcompletion;
The results of EvaluateAutoScale are:
$TargetDedicated=1;
$TVMDeallocationOption=taskcompletion;
lastActiveTaskSample=[3];
lastRunningTaskSample=[0];
totalTasks=[3]
There are indeed 3 other tasks waiting to run, but there are also 4 JobManager tasks that are running, but aren't being reflected anywhere in the AutoScale results. The documentation doesn't list any variables related to job manager tasks that I can use
in the formula. Ideally, I'd be able to add $JobManagerTasks.GetSample(1) to my formula to make sure the TVMs can still scale up in this scenario.

Okay, we've investigated this issue.  The short answer is that JobManager tasks ARE actually counted in the RunningTasks sample set, but you did hit another bug.
I apologize in advance for the following wall of text...
We strongly recommend you avoid of using "GetSample(1)" in your autoscale formulas.
This is because "GetSample(1)" is just saying "give me the last sample you have, no matter how long ago you got it"  Since you will use these samples to grow/shrink your pool (and your pool costs you money) we recommend that you
base the formula on more than 1 samples worth of data.  Instead we suggest you do some trending type analysis and grow your pool based on that.
You can use the ".GetSample(Interval Lookback Start, Interval Lookback End)" API to get a vector of samples, for example:
runningTasksSample = $RunningTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second);
might return:
runningTasksSample=[1,1,1,1,1,1,1,1,1,1,1,1];
Or, if you would like more certainty, you can force the evaluation to fail if there are less than a certain percentage of samples (here percentage means that if in a given time interval there were supposed to be 60 samples, but actually due to networking
failures or other issues we were only able to gather 30 samples, the percentage would be 50%).
This is how you specify a percentage (note the 60 as the 3rd parameter):
runningTasksSample = $RunningTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second, 60);
When specifying a time range, always start with the time range starting at least 1m ago, since it takes about 1m for samples to propagate through the system, so samples in the range (0 * TimeInterval_Second, 60 * TimeInterval_Second) will often not be available.
Again you can use the percentage API to force a particular sample percentage.
So instead of using the formula you specified above, we could use something like this instead:
activeTasksSampleVector = $ActiveTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second);
runningTasksSampleVector = $RunningTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second);
totalTasksVector = activeTasksSampleVector + runningTasksSampleVector;
vmsRequiredVector = totalTasksVector / 4;
vmsRequired = avg(vmsRequiredVector);
$TargetDedicated = min(max(vmsRequired, 1), 60);
Now, the downside of this is that you'll take a bit longer to respond to changes in the running/pending queue length (since you're taking the average), but as it stands right now autoscale doesn't evaluate immediately anyway (it only runs on a pool periodically,
where that period is on the scale of 5-15m).
Autoscale is not (currently) intended as a sub 1m response to changes but rather to adjust the size of your pool gradually as you run a workload. 
Since we only evaluate the formula every ~15m it is not like your pool is going to immediately respond to new task pressure if left to its own devices.  On the other hand if you are running a long lived pool and you want to respond to changes over the
course of a day (for example day/night discrepancies in task load) then autoscale is a good fit.
Why you observed the behavior you did
In addition to the best practices comments I mentioned above, you have hit 2 different bugs.
The last 1-2 samples of $RunningTasks are almost always 0, so ".GetSamples(1)" on RunningTasks often will return 0 even if there are some running tasks.  We will investigate this and work on a fix, but in the meantime adhering to the best
practice of avoiding GetSamples(1) will help you avoid this issue.
This one is more painful -- right now there is a bug where even when MultipleTasksPerVM is not set to the default of 1, $RunningTasks will only report 1 running task (even though there may be up to N, where N == MaxTasksPerVM).  We're already tracking
this bug in our backlog and will get to it ASAP.  In the meantime, you can probably edit your formula to think of $RunningTasks as "RunningVMs" instead -- which should be able to get you close to what you want... see the following formula for
an example of what I mean:
activeTasksSampleVector = $ActiveTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second);
runningVMsSampleVector = $RunningTasks.GetSample(60 * TimeInterval_Second, 120 * TimeInterval_Second);
vmsRequiredVector = activeTasksSampleVector / 4 + runningVMsSampleVector;
vmsRequired = avg(vmsRequiredVector);
$TargetDedicated = min(max(vmsRequired, 1), 60);
Thanks and sorry for the inconvenience,
Please let us know if you have any more questions and we'll be happy to help.
-Matt

Similar Messages

  • Issues with gaming pre-order shipping - improvements needs to be made

    Titanfall comes out today. I pre-ordered this game a few weeks ago on BestBuy.com because the 20% off and the $10 certificate were too hard to pass up. I placed my order, put expedited shipment since I knew I couldn't make it to Best Buy after work on Tuesday (I carpool right now) and called it a day.
    Except here's the thing. Not only did the game not ship in time to arrive by today, it shipped UPS Standard instead of expedited. Talking to some others this seems to be a trend. 
    Certificates, 20% off, these are all great incentives to pre-order my games at Best Buy, but not being able to meet release day shipping even for Elite Plus members who get free expedited shipping?  That isn't even counting the fact that Best Buy didn't ship expedited like they were supposed to. Now I won't get the biggest release of 2014 so far until tomorrow. A day later than I would from most other retailers. These issues really need to be improved and it is largely an operational thing; the games have been sitting in your warehouse for at least a week, why my game didn't ship until 3pm Central time on Monday is beyond me. 

    Hello tmrendo -
    Whenever a pre-order is placed on BestBuy.com for software or a video game title, we ship that item as soon as it's available for release. If expedited shipping is selected at the time of checkout, this means you can typically expect to receive your copy within 2-3 business days of its release. For faster delivery, customers are encouraged to choose express shipping or store pickup at the time of checkout.
    BestBuy.com > Help Center > Pre-Orders
    BestBuy.com > Help Center > Shipping Costs & Timing
    That being said, thank you for your feedback! We rely on customer input -- both positive and negative -- to improve our service offerings, so your thoughts are appreciated.
    cleavelandmvp & caliwolv -
    I've had the chance to review both of your accounts and can confirm that your orders were, indeed, shipped via expedited shipping. Depending on on your proximity to the fulfillment center that processed your order, UPS Ground may be listed as the shipping method rather than UPS Second Day on UPS' tracking site. Rest assured though that your copies of Titanfall are all expected to arrive within the 2-3 day window provided when you placed your orders.
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • "Base" application improvements needed

    I have an E90, and the included Apps need the following:
    Contacts
    Allow me to enter phone numbers as: (213)555-1234 or 1(213)555-1234
    ASCII ".txt" files
    How do I "copy" from "Notes" to aa.txt {E.g. "punch or Export to ASCII}
    I need to be able to open my (many) ".txt" files directly into a text editor. I have many lists and notes as ".txt" files with both my phone and my PC. I need to access .txt files via QuickOffice & directly via the FileBrowser.
    Clock/World
    O needs the following refinements:
    Date After/Before time
    Ablity to re-order/sort entries
    DST indicator
    E.g.:
    09:05 12/15 Los Angeles United States
    17:05 12/15 London United Kingdom
    21:05 12/15 Abu Dhabi United Arab Emerates
    01:05 12/16 Taipei Taiwan
    04:05* 12/16 Sydney Australia
    Then, if I wanted to add Honolulu, I wouldn't need to delete the whole list and re-add cities.
    Log
    O Log/{Right} (listing of each transaction) needs to add date/time and duration. There's PLENTY of space available on the internal screen, and it's no problem if it's scrolled off the right on the external screen.
    E.g.
    {InArrow} Voice Contact1 2008/07/08 14:43 05:02
    {OutArrow} Voice Contact2 2008/07/08 14:22 03:15
    {MissArrow} Voice Contact2 2008/07/08 14:05 --:--
    {OutArrow} Voice Contact3 2008/07/08 11:00 14:38
    {OutArrow} Voice Contact4 2008/07/08 10:57 26:54
    {InArrow} Voice Contact3 2008/07/08 10:15 42:06
    {InArrow} Voice Contact3 2008/07/08 10:05 06:14
    With this format, the small screen would look the same. A big screen on the E90 will easily show all of this.
    PC Suite -----------
    O Synchronization Log: - please keep last N Reports -
    in case you accidentally hit "Sync" instead of "Report" and overwrite the previous Report.
    O Synchronization: Work PC{Outlook} -OK-> E90 -doesn't work->Home PC{Thunderbird/Lightning}
    O Bi-monthly meeting repeat interval is "Other"
    O Bi-Monthly meetings exceptions not dealt with correctly in E90 or PC Suite (E.g. No November meeting)
    O "Other" recurring Meeting edited in E90 -> Lists in PC Suite/Sync, but no entry in Outlook!
    O "Other" recurring Meeting edited in Outlook -> Exceptions not shown in E90!
    Thanks

    OK, two more features that are drastically needed to improve usability:
    - Free Distort: I should be able to size a shape via squashing it or stretching it.
    - Flip: The ability to select a shape and flip it.

  • Memory management improvements needed?

    i just started understanding memory management and i think mac os x needs improvment?
    My inactive memory is at 2GBs right now with 1GB in wired and 800MB active and about 200Mb free.
    Should mac os x clear the inactive memory first before starting to swap? My swap is at 426Mb right now.

    In the following apple doc,
    Reading system memory usage in Activity Monitor
    Read what it says about "inactive memory".

  • Improvements Needed

    Here are some improvements that would greatly improve the user experience with Adobe Ideas:
    - Copy/Paste: Being able to select, copy and paste shapes would be nice.
    - Selection/Masking: Being able to select a shape and use that selection to draw within on existing or new layer.
    - Smaller Color Swatch footprint: Allow us to have larger libraries to choose from. Too big now.
    - Auto Collapse of Toolbar Pref Setting: When we go back to drawing area tool bar automatically collapses.
    - Improve Eraser Tool: The ability to touch and hold on a shape with it to delete entire shape rather than manually erasing it.
    - Improve Nib Size Control: It jumps too easy even when using a stylus. Ability to pre-set nib sizes.
    - Ruler: So we have an idea of how large the art really is.
    - More control of Library of files: Ability to create folders and organize Idea files. Ability to move them into any order needed. (Maybe you can? I just can't figure it out?)
    - Improved PDF quality: When opened in Ai PDF's are a terrible mess. (InkPad app for iPad exports far cleaner PDF than Ideas does?)
    - Ability to rotate artboard.
    - Ability to rotate/move/size all elements together even if on different layers. (Think Ai)
    - Custom Email Setup: Ability to set up outgoing email to my own custom subject line and information. I always have to delete Adobes default crap.
    - Ability to record screen: This would be a wonderful feature for presentations, sharing tutorials, explaining stuff etc. (Embed ability to upload to YouTube or save out as .mov file)

    OK, two more features that are drastically needed to improve usability:
    - Free Distort: I should be able to size a shape via squashing it or stretching it.
    - Flip: The ability to select a shape and flip it.

  • Improvement needed for officejet pro series

    I've been using this OJ pro 8500a for about a month,
    I just love the big LCD screen!  Here are some thoughts
    I think HP can improve the newer printer.
    1) simple to use interface, larger buttons (icons), easy
         see and press.
    2) display digital clock when it is not in use instate of
         demo screen.
    3) able to turn off nagging head alignment messages.
    4) voice anounce of printer status.
    5) love to see the HP's Officejet Pro X printhead in
         this class of printer (love the speed but the X printer
         is real ugly design).

    Welcome to the forums.
    Just to note, this is primarily a user to user community.
    You could try using the following form to provide any feedback you would like to give HP directly.
    https://ssl.www8.hp.com/us/en/company-information/executive-team/ceo-index.html
    You can check any of the boxes you prefer, but it looks like product experience and ideas/suggestions are the most appropriate.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Improvement need to be done bios 1.55

    moving from bios 1.4 to 1.55 beta is good, but I found one thing that this bios is need to be work at and that is the stability on 1T. My kingston hyperX 4000 is design at 3-4-4-8-1T @ ddr 500 to take full advantage of the memory but the system wont post at very slight HTT adjustment other than 2T. 1T is much more responsive and gives you better score on Sandra. If MSI fix this stability issue this board will come close to DFI board known for best stability and overclocking at high rate.

    Quote
    Originally posted by cool'n'quiet
    Wannafly overclocks with just 1 stock of RAM. For the majority of us who overclock with 1GB, it will be even harder to achieve high rates without resorting to 2T. But that's mostly an issue for socket 939 people. Socket 754 seems to have a limit of DDR500 (appx) when using 2 double sided dimms, due to drive strength. So you might run up against that limit (at 1T) before 2T even becomes a consideration.
    I'd be very happy to be proven wrong: are there any 754 users out there with 2x double-sided dimms getting significantly more than DDR500?
    yes, 1 stick can go high than 2.
    If you want to see some oc about how high 2 sticks of 512mb rams go,you can visit this site:
    forum.coolaler.com
    Just because many of them can go above DDR500 with 2 sticks of 512MB rams when 1 T enabled.
    Why?
    TCC5 and TCCD based rams are so NICE.

  • Keyword entry interface improvements needed

    1. Enable an optional full screen view of the entire keyword list, with expand/collapse function for the hierarchies, preferably with the expanded terms in a separate column adjoining the top level terms.
    2. Make the keyword list stay in the spot the keyworder is working on, rather than jumping back to the top after a CR -- result is a timewaster of having to scroll down to hunt for the spot you were using.
    3. Make keyword imports from Adobe Bridge go into the same hierarchy when it finds the same word, rather than starting a new top level term.
    4. Make the grayed-out terms brighter -- they are next to invisible.
    5. Make 2d level and lower terms when attached to an image automatically include the terms in the higher levels, not just when there is a duplicate term. Correct manual.

    I'm going to go on a tangent here and say that we need better ways of quickly selecting and identifying specific keywords to apply to images. Exactly what that should look like could take different forms.

  • Tools Photoshop Image Processor improvement needed

    If I use the Image Processor feature to convert images and I click on "Save in same location", then the images should be saved in (wait for it)...
    The same location!
    Please add an option to create a new directory for the converted files.

    It's part of the Photoshop install and runs within Photoshop! Bridge simply provides a convenient method accessing it and other Photoshop, InDesign, GoLive, Illustrator scripts.
    From the most recent version (available from the site I linked to):
    // 4/20/2006 9:00 --- tpr
    // Rudy's version runs Action at end of process.
    // c2005 Adobe Systems, Inc. All rights reserved.
    // Produced and Directed by Dr. Brown ( a.k.a Russell Preston Brown )
    // Written by Tom Ruark
    // UI Design by Julie Meridian
    They're all Adobe employees and the script is "supplied" by Adobe. That said, 2+2 doesn't always equal 4. Check out Dr Browns website and the maths should become a bit clearer.

  • [Desktop][Other] Scroll bars need to be brighter

    Hi - like others I'm not sure about the new shade of green, but I think the one real improvement needed is to lighten those grey scroll bars...the poor contrast against the dark background makes them very difficult to see particularly the right of screen one - white (or even the green!) would help... must be seriously awkward for any user who has a visual impairment... Cheers WRSpot the scroll!

    Updated: 2015-07-14Hello and thanks for the feedback!
    Any news regarding this request will be announced in the original idea topic here:
    https://community.spotify.com/t5/Live-Ideas/Desktop-Make-the-scrollbar-more-visible/idi-p/739199
    Please add your kudos and comments there, if you haven't already. ;)

  • Suggestions for improving sharing

    Since Adobe Review is discontinued, I used with a couple of clients the new creative cloud sharing and I found some missing features or improvements needed:
    1. When a client is reviewing a file (i.e. a picture) he must input the email address to post a comment, this is annoying since I sent the review email to his address, so it's already verified.
    2. An important improvement would be a way to make a note (or link a comment) on a specific part of the picture/text so the comment can be highlighted in the context.
    3. I'd like also to receive a notification of new comments or see on the dashboard if new comments are present on a file, so I can review all the latest comments.
    4. There could be a button for "approval", if I put several versions of a work, client can approve the one he likes.
    Maybe some features are still present, please tell me if I'm wrong.
    thanks

    Thank you for the suggestions. Improvements with sharing and collaboration are coming. You can read more here on this Adobe blog post http://blogs.adobe.com/creativecloud/coming-soon-to-creative-cloud/.
    Feel free to add more suggestions to the blog post or follow up here with more. We are listening.

  • Is there a way to sort by description in the list view of bridge?

    I am trying to sort a mass amount of PDF files using the description meta tag. Is there away to add that tab in the list view under the content panel, or a way to use another panel to view the details of multiple files at once with description included and be able to sort them that way?

    These are the tabs that are displayed and the ones it gives me options for.
    There are many improvements needed for Bridge and the default metadata workspace is certainly one of them. In fact, in its current state it is next to useless and no help at all. But you are right, it should provide you with at least the description field but it does not. Oddly enough, the only way to achieve this is using the bottom right icons in the Bridge window. You see three of them, thumbs, large thumb with list and small thumbs with list. Currently you have selected the default small thumbs with list, if you use the middle one (large thumbs with list) and fiddle around with the slider for the size of the thumbs the description field magically appears in view but you are not able to put it in a separate column.
    So the find option is still your best option I'm afraid...
    You can also try to create your own workspace. Start dragging the borders to change the size of the panels to your comfort so you have a good overview of the panels you want to have in view.
    You can also change the order and place of panels in multiple rows but you are limited to max three columns. Place the cursor on a panel tab and start dragging it to a new location. A single blue line means either between a row or a column, a surrounded blue line means add as a tab in same location. You also can drag the tabs for your custom order.
    Now with the content panel in reasonable size use the icon bottom right for large thumbs and list view and use the slider for correct position of the description field. Save it as a new workspace (important to retrieve it when messed up). You can also have multiple windows in Bridge (at least on a Mac, you seem to be on Windows) and use one for list view and another for find results. etc. etc.

  • Making a form work

    I am building a form to take a market survey for energy and home improvement needs in my market area, how do I get it where when they hit submit that the form gets emailed to me? And is there anyway to integrate a form to send email and text message?

    You'll need a server side form mail script. First start by checking with your host to see if they have one - many do.
    > And is there anyway to integrate a form to send email and text message?
    There are several ways, but the easiest is to simply send an email to the recipients text message email address. For example, if the recipient is on Verizon you would send an email to their 10 digit phone number @vtext.com

  • 2.1 review with itunes 8 update for all

    I initially had addressed the international font issue that the new itunes was having. Apart from that, the addition of the genius tab along with minor improvements here and there seems to make the new itunes 8 likable.
    Now, for all iphone 3G users.
    I'll try my best to give you the complete review and opinions after couple of hours since the launch of the new update 2.1 .
    Battery Life:
    It has only been couple of hours, not even a full day yet but from what I have noticed, I say that there seems to be an improvement with the battery measure. It does not give a ridiculous full bar than a sudden decrease, it literally gradually falls. After 3 hours, the tip of the battery bar is now gone, good improvement on this.
    Phone Coverage:
    Rejoice. There is definite improvement on this part of the end. I am in Houston currently visiting and the place that I live in gave a poor coverage before. The bar with the 3g turned on was always moving from 1 bar to 2 bars. After the update, I am truly, on a full 5 bars most of the times with occasional drops to 4 bars. Stevey kept his word and the coverage has definitely boosted itself up.
    Call quality and drop issues:
    This may sound ********, but after the update, I made 10 calls to ten different people in different areas. Chatted for about 5-10 minutes with each individuals and it has been positive. No dropped calls and clear and sound communication both ways (me and the receiving party). It could be due to the fact that my area has good coverage (now, that is) but as I have mentioned above, the coverage issue has been resolved for me so I see this is a plus benefit that works out well for call quality issue as well.
    Application Stability:
    To pinpoint precisely, the currency converter that I had for the iphone has been not responding after the 2.0.2 update. I could not figure out whether the fault was with the phone's update or whether the application was buggy but after a solid update, this application is up and running smoothly. This is just one example. I have tested all my applications one by one to check their stability and it's all a positive check on this one.
    Contacts:
    The issue that had been driving me the most prior to this update.
    Simply put, the contact list was S.L.O.W with the 2.0.2. There was literally a lag of 4 seconds for me everytime I turned on my contacts list.
    Well, with this update now, this issue has been improved, but it is definitely NOT perfect.
    The lag time has now been decreased to 1 to 1.5 seconds from what I have noticed and the scroll movement is much better now. However, I think there is still much improvement needed on this issue that still needs to be worked on.
    BACK UPS:
    The topic that everyone seemed to have agreed upon before is this, the amount of time it takes for the iphone to be update through sync.
    Great improvement now, cutting the time it takes to update by more than half I would say.
    But like all humans, don't we always want things to be faster?
    I know I'm sending out a dangerous note here that will get me a lot of hate replies and evil looks from the users as well as the programmers (who I must give credit, are really working hard. thank you guys), but the backup time is still an issue.
    We could definitely see further improvements in this area as well.
    e-mail and text message issues:
    Frankly speaking, these two topics did not cause me much trouble before. The e-mails ran fine the way it should (i have yahoo! & gmail accounts on the phone) and the text messaging ran smoothly for me before.
    I guess since i did not have much of an issue on these topics, i definitely could rely on many other users for their kind inputs, reviews and suggestions.
    Thank you all for taking the time to read this lengthy post,
    and I hope that the new update is being a positive experience for you.
    I would greatly appreciate all suggestions and discussions from the fellow iphone users on this latest update.
    Regards.

    Thanks for the great review. One of the big things I was waiting for was the addition of the ability to increase notifications for SMS messages by up to two times.
    Well, Apple did implement this, just not very efficiently.
    I use SMS mainly as an alternative to a pager for work. However, the iPhone just does not repeat enough times to wake me up in the middle of the night. I was hoping that with this update, I would be able to control whether or not it gave me additional notification or not. Thinking that the notifications would be back-to-back.
    Here is what I have found since installing the update. The additional notifications are automatically turned on and you cannot control it. The additional notifications are not back-to-back notifications (like most other cell phones and pagers) but are instead spaced 5 minutes apart.
    So, if you get an SMS and do not look at it, the iPhone will notify you again 5 minutes after the SMS was received. If you still do not look at it, the iPhone will notify you again 10 minutes after the SMS was received.
    While I am glad they added this feature, I wish they had give the end-user more control over how this feature is configured.
    Just my two cents worth.

  • Modify view of Default timecard periods view in OTL to sort list of periods

    Hi,
    Can someone guide me if there is any way to modify default timecard periods view in OTL. We intend to sort the list of timecard periods in OTL in order to show old non sumbitted timecard periods as default rather than based on system date.
    I have checked preferences->System that allow edits but that is not helpful in what we want to achieve.
    Thanks,
    Rajan

    These are the tabs that are displayed and the ones it gives me options for.
    There are many improvements needed for Bridge and the default metadata workspace is certainly one of them. In fact, in its current state it is next to useless and no help at all. But you are right, it should provide you with at least the description field but it does not. Oddly enough, the only way to achieve this is using the bottom right icons in the Bridge window. You see three of them, thumbs, large thumb with list and small thumbs with list. Currently you have selected the default small thumbs with list, if you use the middle one (large thumbs with list) and fiddle around with the slider for the size of the thumbs the description field magically appears in view but you are not able to put it in a separate column.
    So the find option is still your best option I'm afraid...
    You can also try to create your own workspace. Start dragging the borders to change the size of the panels to your comfort so you have a good overview of the panels you want to have in view.
    You can also change the order and place of panels in multiple rows but you are limited to max three columns. Place the cursor on a panel tab and start dragging it to a new location. A single blue line means either between a row or a column, a surrounded blue line means add as a tab in same location. You also can drag the tabs for your custom order.
    Now with the content panel in reasonable size use the icon bottom right for large thumbs and list view and use the slider for correct position of the description field. Save it as a new workspace (important to retrieve it when messed up). You can also have multiple windows in Bridge (at least on a Mac, you seem to be on Windows) and use one for list view and another for find results. etc. etc.

Maybe you are looking for

  • Changing a folder name means you lose the icon?!

    that's nuts. i hate sports so i changed the 'sports and entertainment' to 'entertainment' and i lost the lil' icon on that folder. now it's an empty blank lookign folder. how annoying. did i f it up for good? any ideas on how to get it back short of

  • ITunes Skipping in the Middle of a Song

    Ever since I updated iTunes about 5 months ago it's been skipping in the middle of random songs. This happens to random songs, but always hapens to the songs it effects. It happens to purchased songs from iTunes, as well as other music files from oth

  • Update of FAGLFLEXT after new field added

    Hello guys, I have added a new field from BSEG into FAGLFLEXA/T following the standard process (OXK3...). I now need to update the historical values recorded into FAGLFLEXT from the go live... Is there any tool similar to the transcaction GCU1/N for

  • Developing Roles and transport strategy.

    Hello, I need to finalize the Role development Plan. I am not sure where do we built , test and transport roles to production. I am thinking of developing roles in development in dev in a seperate clint . This clint will be copy of golde client. Then

  • BO and HTML

    Hi, in BO infoview (XI 3), i would like to display something like "Some bold text: Hello world " I put the read as Html option but it doesn't consider the bold tag. Any ideas? Thx you Best regards, Xsn