Still seeing scalability problems

While BDB 4.6 is definitely faster than earlier versions for databases that fit inside the BDB cache, I'm still seeing unreasonable slowdowns when the db is much larger than the cache. E.g. in OpenLDAP I'm loading a 50 million entry database (which results in about 69GB of data on disk) on a machine with 16GB of RAM, 12GB configured for the BDB cache. On a Linux system with ext2fs this load takes 7 hours. If I change the loader to open the environment with DB_PRIVATE, so that malloc() is used instead of the BDB shared environment, the load takes only 3 hours. Most of the excess time using the BDB shared environment is due to __env_alloc_free(); there are long periods of time where the loading process is using 100% CPU, in this function, with no actual progress being made on the load.
Another issue that I'm seeing in 4.6 that didn't occur in 4.2 - I also use a trickle_sync task which is run after every 8192 entries are written. In 4.2 this task pretty much always writes some number of pages on each invocation, and that number is relatively consistent (around 700 pages with a full cache) each time. In 4.6 this task starts out consistent, but somewhere around when the cache first fills completely the number of pages written drops, to about 16 pages per invocation, and then drops to 0 pages. From then on the trickle_sync task does nothing useful at all.

DWILCOX01 wrote:
Ansury wrote:
I think this only seems to happen when I post and then quickly edit the post within 1-2 seconds, so it may be a timing thing.
Do you always have to post and then quickly edit your message within 1-2 seconds?  How about writing a draft first and then post it only if you are sure it is exactly what you want to say.
I am fairly careful usually, but I'm used to having a PREVIEW function (like every real forum on the face of the planet has).  Not to mention, what you see in the text box (non-preview view) isn't always exactly what you see in the actual message. 
Ex. When you're posting source code and you need it to be formatted in a certain way so it's readable...  Or how about when you type a word that our 1950's-era language filter happens to dislike?  You can't tell whether it was "star'ed" until AFTER it's posted.  So now you have people thinking you're putting foul ******* language all over the forums when you're really typing f*r*i*g*g*i*n or "poopy" or something harmless.  A preview would at least save us from that nonsense, but this primitive jiveware doesn't even give us that.

Similar Messages

  • I'm still seeing the problem with printing when css overflow is hidden (bug 104040) which I had heard was claimed fixed

    Example:
    http://scaled.com/projects/whiteknighttwo_spaceshiptwo_test_summaries
    User: firefox 40b7/32 on fedora core 11 x86_64
    Linux 2.6.30.8-64.fc11.x86_64 #1 SMP
    Symptom: printout truncates at end of first page instead of printing several pages of information
    I've seen this behavior on many websites, this is an example
    I can fix it by copying the page and hacking the css to remove all cases of "overflow:hidden". But really firefox needs to handle this - I just discovered from googling that something like this has been a known problem for 10 years.

    I just thought I should post this comment, to say my long running problem has finally....FINALLY been sorted out!
    It was actually really fixed at the end of September, but I have waited till now, until I received my first proper bill to feel confident enough to say it is finally sorted out.....but what a long winded process!...it took over a month to sort this out, with endless hours on the phone, and endless promises not kept.
    The problem with BT's customer service is the fact that going through normal channels, no one person can sort a problem out. You get passed from pillar to post, with every department saying that it is someone else's area of responsibility and then it takes hours on the phone with various deparments in different countries, to get a commitment to sort it out, and then nothing happens!
    It was only after posting my final desperate plea on this forum, for all the world to see, that I finally got one of the Moderators to take up my case, and sort the problem out, although it took him over a month to get through all the treacle of BT's admin before a solution was found.
    I am very greatful to the Mods for dealing with my problem, which was not of my making, but was due to something going wrong with BT's system.
    There is however something fundamentally wrong with BT's Customer Service set up, where no one person seems to take responsibilty for a CXXk-up on their part, and seems unable to have the authority to sort it out.
    Once again, Thank you Mods for your help.

  • HT4623 my  phone 4s stop making sounds, I tried reset and still no sounds only vibrate reset  all settings under general and still have the problem, also sync again to see if this help. still no sounds

    my  I phone 4s stop making sounds, I tried reset and still no sounds only vibrate. Did reset - all settings under general and still have the problem, I also re- sync again to see if this help. still no sounds.

    Hi there,
    It sounds like you have tried a few things already, but you may still find the article below helpful.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    -Griff W.

  • I upgraded to 10.10.1  today and the brightness dimmed on my mac monitor - I've checked both display and accessability and dont see a problem.  My second monitor which is not a mac monitor is bright still.

    I upgraded to 10.10.1  today and the brightness dimmed on my mac monitor - I've checked both display and accessability and dont see a problem.  My second monitor which is not a mac monitor is bright still.

    Try resetting the PRAM and SMC
    Intel-based Macs: Resetting the System Management Controller (SMC)
    About NVRAM and PRAM

  • Still having navigation problems and need help with how to debug

    Hi,
    I've been porting over a servlet project to JSF and I'm still having navigation problems. I thought the problem might have been because the original project used HTML frames and so the "from-view-id" JSP defined the frame/framesets and the specific JSP that does the submit (and so is named in the "from-view-id" is never defined in a "to-view-id" attribute). I've now switched to using an IFRAME, and that resolves that problem. So now the JSP is defined in a "to-view-id" attribute and it includes an named IFRAME that can be used as a target. I press the submit button and I get not the JSP expected butinstead the same JSP displayed inside its own IFRAME.
    Here is the code for the submit. I've simplified it as much as possible with a static action (originally it was a call to a method) just to try and get things to work. This is the current version:
    <h:commandButton value="View Alias" action="foo" styleClass="select" type="submit" />Here is the navigation rule in faces-config.xml. Again, the problem is that SelectManager get redisplayed in the IFRAME instead of display.jsp.
    <navigation-rule>
       <from-view-id>/SelectManager.jsp</from-view-id>
       <navigation-case>
          <from-outcome>foo</from-outcome>
          <to-view-id>/display.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>I have also tried it without the "from-outcome-value" which I presume means that the "to-view-id" gets displayed unconditionally and it still fails. Any ideas on how I can debug this? (I'm using GlassFish if that's important to know)
    Rob Tanner
    Linfield College

    Raymond, The real trick is avoid doing technical things when coming down with the flu (I should also add that I'm a JSF newbie). Reading your original message this time I see what you're suggesting and found a conversion error although I don't understand it. Here's the code (including the <h:message/>):
                <h:selectOneMenu value="#{members.dcodes}"
                  style="color: #7f0000" id="selector">
                  <f:selectItems value="#{members.departmentList}" />
                </h:selectOneMenu> 
                <h:message for="selector" style="color:white"/>And here's a snippet of the generated HTML:
    <select id="j_id_id26:selector" name="j_id_id26:selector" size="1" style="color: #7f0000">
             <option value="aad" selected="selected">Academic Advising</option>
         <option value="aaf">Academic Affairs</option>
         <option value="adm">Admission</option>
         <option value="up">Upward Bound</option>
    </select>If I select "Admission" for example, the error I get is:
    Conversion Error setting value 'adm' for 'null Converter'.Since everything is a String value, I don't get the error. Could someone please enlighten me.
    Thanks.

  • My iPod Nano (fourth generation) is stuck on a black screen and will not charge. It's done this before and you can still see a faint outline of the green charging sign and the time/date. HELP

    My iPod Nano (fourth generation) is stuck on a black screen and will not charge. It's done this before and you can still see a faint outline of the green charging sign and the time/date. HELP

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Can I restore Mails that I still see in Mail from cache?

    Hi,
    When I connected a new iPhone to my macbook (Os X Lion) Mail duplicated my email account. The "new" duplicate said all mails were new and unread and the account used some pop and smtp settings that had changed months ago.  So I deleted the unwanted duplicate. Now, Mail seems to have deleted all the messages in both accounts.
    Mail is still open. And I can see all my messages in the remaining "old" correct account. I can still see all the sender adresses, the title of the emails, even the text is displayed in the short overview in the left pane. When I maximize the left pane by shifting the "complete mail text pane" to the right the text displayed for each mail is even extended. So the info is still all out there somewhere in my cache. However I cannot open the single mails. He just can't load them.
    I went to the apple store yesterday and they had a look but not the slightest idea how to deal with the problem.
    I had a look at the mail library folder and except for the new mails I recieved after doomsday there is nothing at all. The "com.apple.mail" folder in the cache wasn't of any help either.
    Has anybody an idea how to save/restore my mails as long as they exist in the ominous cache I didn't find yet?
    It's just so annoying to see all the mails still in front of you, see the text and not knowing how to make a quick backup or restoration of them.
    Thanks for the help.

    P.S:
    Would it possible e.g. to retireve the date from the sleepimage or swapfiles?

  • Mini HDMI adapter to 55" tv, Not Available error, still see screen

    basically i have a Mini HDMI adapter connected to my 55" tv, I have run the tv all day like this with no problem watsoever, but now an error message has popped up over top of (i can still see all the computer stuff i should on the tv, using it now actually) but the error message says (Not Available) i'm assuming this Not available message means that the connection is not available to the computer, but its in the middle of the screen over top of my streamed computer, my computer is running on the tv still, it just has the "not available" error right in the middle of the screen & won't go away.
    sorry for the long msg i'm not good @ explaining things.

    Update again, error has popped up again & won't go away this time.
    Did i get a faulty adapter? I know the HDMI cord itself is good, as well as the port on the tv as i have used both with other devices without problems
    anyone that can possibly explain what is going on please do, I am starting to get really irritated,
    & just a guess, this error has occured when opening full windowed items such as a video i tried playing, & then a game i tried opening, it was fine each time running safari & skype until i tried opening those full windowed items, would that make any difference? if i can fix it again i'll try my theory,

  • Chanced video card, still see the old one. ??

    Hy everyone,
    i have an Imac 24 inch 2009
    3.06 mHz
    SDD 250GB
    HD 1TB
    video card Nvidea G force GT 130
    After the update to Mountain Lion my imac frezes evry time and i have to reboot the system.
    I also read that many people have this issue.
    after i chanced my opptical drive for an sdd, the problems  almost vanished
    but .....its still there,
    I read on the Apple support site that the imac 24 inch 2009 with a processor 3.06mHz can also use the videocard
    ATI Radeon 4850 512 MB so i bought it in the state's Put it in my mac. make a clean install..........and still see preferences the G Force 130 from Nvidea.
    why cant i see the new one. what am i doing wrong? also can't find any driver for mac.
    please help
    john kleuskens

    In response to your comment:
    "Accusing me of smoking crack lol... wish i had been though because at least then i would have an understandable reason for things not working right !"
    LOL !!! You are too funny. About the "smoking crack" thing though, that's what I felt I went through for many years when my cards stopped working and having to 1) replace, 2) work, 3) break down and repeat the same process, until I started building things on my own. Even still I built my own machine, it does come with it's own issues, but now I'm in more control of those issues at 1/3 the cost and the same speed (if not faster) and that's my WHOLE POINT So when are you going to stop being tired of 3 step process of how Graphics Cards work on a Mac? You know the definition of "insanity" right? I don't think I need to define it for you. Later all...

  • I bought a new super zoom lenses for iphone which is attached to the iphone but you can still see the outside of the lenses through the viewer

    I purchased on-line a new Super Zoom for my iPad and iPhone. when I attached the iPhone lense to the iPhone, there seems to be a problem with the view. You can still see the outline of the lense and it is not a clear view looking through. Can you hep

    Only the carrier can officially unlock it for you

  • TS3367 I already try these steps but I still got the problem I can't make a video call at all or receive .

    I already try these steps but I still got the problem I can't make a video call at all or receive .

    Here som other steps you can try;
    Make sure that you have an internet connection
    Make sure that you have a valid Apple ID (check here: myinfo.apple.com). Note that your Apple ID  to register FaceTime on iPad 2, iPod touch, or FaceTime for Mac must be an email address. You can create a new Apple ID or make changes by visiting myinfo.apple.com and using the “Manage your Account” part.
    Tap Settings > FaceTime to see that your email address is verified. If your status is saying “verifying,”; then try toggling FaceTime off and on (Settings > FaceTime OR FaceTime for Mac: FaceTime > Preferences)
    Try turning FaceTime off and on again using the following (iOS: Settings > Phone OR FaceTime for Mac: FaceTime > Preferences)
    Make sure that FaceTime is enabled (Settings > FaceTime.)
    Make sure that the camera for FaceTime is not restricted (Settings > General > Restrictions.)
    Tap Settings > General > Date & Time to check date and time are set correctly.
    Make sure that you are using the correct method for calling the person. iPhone user: Use the phone number; iPad 2, iPod touch, or FaceTime for Mac user: Use the email address

  • I am not able to open my 'system preferences' it shows up on top, but the window just won't open. I haven't installed anything new, I have also restarted my computer, but still encounter this problem. Help?

    I am not able to open my 'system preferences' it shows up on top, but the window just won't open. I haven't installed anything new, I have also restarted my computer, but still encounter this problem. Help?

    Reinstall Lion, Mountain Lion, or Mavericks without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, or Mavericks
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Screen turns grey but can still see image

    Hi all,
    I don't really know how to explain this but recently I am getting this grey shading on my screen. I can still see the content if I tried to but it's really hard. At first I just wiggle my screen a bit or give it a tap around the screen then it will return back to normal. But the problem is getting worse and worse. Wiggling and tapping the screen doesn't really do the job anymore. I just got this new screen about a month ago under Apple's warranty. I'm thinking maybe when the technician installed the new screen, he didn't attach something secured enough and it has come lose.
    Anyone having similar problem or know what's going on? My warranty just expired 4 days ago.... Hope it's nothing major or I'm spending my own money :/
    Oh and I've been reading about snow leopard having screen issue.... not sure if this is related but I did upgrade to snow leopard.
    Message was edited by: MacBookProOwner

    this sounds like the same problem i am having. for me, the bottom 1/3 to 1/2 of the screen will fade, like every other pixel is going white. then it will start turning grey. by the end its all dark shades of grey, but streaked vertically to match what's displaying on the upper part of the screen. the whole thing happens in a few seconds. the rest of my screen is fine. does this sound like your problem?
    if it helps, i bought the mac in 2007, and had to have the video card (i think) replaced because it had the problem of the screen staying black when opened from sleeping. if anyone has any advice, please let me (us) know. thanks

  • I upgrade my firefox to 3.6.4 but when i add some add-ons they tell me that i have 3.5.8 & i have to upgrade it ... i reinstalle 3.6.4 several time but still the same problem

    i upgraded my firefox to 3.6.4 but when i add some add-ons it tell me that i have 3.5.8 & i have to upgrade it ... i reinstall 3.6.4 several times but still the same problem ...
    == 2-3 days ago

    Look at the highlighted copy of your Help > About Mozilla Firefox image attached below this message.
    <u>'''Reset general user-agent'''</u>
    -In Firefox, type '''about:config''' in the URL bar and press the Enter key.
    -If you see the warning, accept it (promise to be careful).
    -Filter = general.useragent.extra.firefox
    -Right-click that preference and select Reset
    -Then restart Firefox (File > Restart Firefox)

  • Skype Subscription, still see ads.

    Hello. I've had a skype subscription for years now. In the far past I did not see any ads, however a little over a year ago I started seeing advertisements. I've been in contact with Skype support multiple times and I have always been told that this is a bug and it will be fixed next patch. I've updated multiple times and even got the new update with the new design. I still see advertisements.
    From what I know this shouldn't be happening if I have a subscription. Can you please offer some solution for this problem? I see advertisements on the home screen and on top of my chat windows.

    Are you using the same account you used to sign in here on the Skype Community to sign in to your Skype account? You can verify that by using the "Sign out" link from the menu "Skype" in Skype for Windows desktop. This will take you back to the sign in page and you can ensure there that you are signin in with the correct account that has the subscription active.
    If you still see advertisements as a next steps we would need Skype logs from your instance so our engineers can have a look what's going wrong in your case.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

Maybe you are looking for