Seeing constant time inserts - that should be impossible, right?

Hi all,
My problem may not actually be a problem. I believe berkeley db je uses btrees for indexing. I am making MANY MANY inserts and no matter how big the index and database grow, my insert times are still constant. Theoretically, this is impossible due to the nature of btrees, right? Yet my experimental results show otherwise. Am I doing something wrong, or is Berkeley making use of the fact that my records are being inserted in the order that they ought to be sorted by key? In other words, every record's key value is greater than the key value of the previously inserted record.
I'm making millions of inserts into my database. I've enabled setSortedDuplicates(true) and I've checked the # of records on the database to make sure my rows have actually been inserted. I've either been doing all transactional inserts or all non-transactional inserts and using System.currentTimeMillis() as my key/index. I have traversed the database to make sure my records were actually being sorted by key and they were.
I've provided some code.
Please, any help would be greatly appreciated.
Thanks,
Julian
<code>
private void initDB(String[] args) {
/* Create a new, transactional database environment. */
boolean transaction = Boolean.valueOf(args[2]);
EnvironmentConfig envConfig = new EnvironmentConfig();
envConfig.setTransactional(transaction);
envConfig.setAllowCreate(true);
envConfig.setLocking(true);
try {
env = new Environment(new File(args[7]), envConfig);
EnvironmentMutableConfig envMutableConfig =
new EnvironmentMutableConfig();
envMutableConfig.setCacheSize(52428800); //in bytes
env.setMutableConfig(envMutableConfig);
* Make a database within that environment. Because this will be used
* as a primary database, it must not allow duplicates. The primary key
* of a primary database must be unique.
if (transaction) {
txn = env.beginTransaction(null, null);
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setTransactional(transaction);
dbConfig.setAllowCreate(true);
dbConfig.setSortedDuplicates(true);
dbConfig.setExclusiveCreate(false);
dbConfig.setDeferredWrite(!transaction); //not a typo, deferredWrite and transactional are mutually exclusive
if (transaction) {
canMessageDb = env.openDatabase(txn, "canMessageDb", dbConfig);
} else {
canMessageDb = env.openDatabase(null, "canMessageDb", dbConfig);
* In our example, the database record is composed of an integer key
* and and instance of the MyData class as data.
* A class catalog database is needed for storing class descriptions
* for the serial binding used below. This avoids storing class
* descriptions redundantly in each record.
DatabaseConfig catalogConfig = new DatabaseConfig();
catalogConfig.setTransactional(transaction);
catalogConfig.setAllowCreate(true);
catalogConfig.setExclusiveCreate(false);
if (transaction) {
catalogDb =
env.openDatabase(txn, "catalogDb", catalogConfig);
} else {
catalogDb =
env.openDatabase(null, "catalogDb", catalogConfig);
StoredClassCatalog catalog = new StoredClassCatalog(catalogDb);
* Create a serial binding for MyData data objects. Serial
* bindings can be used to store any Serializable object.
dataBinding = new SerialBinding(catalog, CanMessage.class);
keyBinding = TupleBinding.getPrimitiveBinding(Long.class);
if (transaction) {
txn.commit();
txn = null;
} catch (DatabaseException dbe) {
dbe.printStackTrace();
} catch (Exception ex) {
ex.printStackTrace();
public void storeCanMessage(String[] args) throws DatabaseException {
try {
int num_messages = Integer.valueOf(args[0]);
int commit_buffer_size = Integer.valueOf(args[1]);
System.err.println("NonTransactional writing " + num_messages + " records with a " + commit_buffer_size + " record commit buffer");
/* DatabaseEntry represents the key and data of each record. */
DatabaseEntry keyEntry = new DatabaseEntry();
DatabaseEntry dataEntry = new DatabaseEntry();
Long key;
byte[] temp = new byte[8];
for (int j = 0; j < 8; j++) {
temp[j] = (byte) (Math.random() * Byte.MAX_VALUE);
writeStart = System.currentTimeMillis();
for (int i = 0; i < num_messages; i = i + commit_buffer_size) {
for (int j = 0; j < commit_buffer_size; j++) {
CanMessage aCanMessage = new CanMessage((short) (Math.random() * 256), (int) (Math.random() * 65536), ((short) (Math.random() * 1)), temp);
key = System.currentTimeMillis();
keyBinding.objectToEntry(key, keyEntry);
dataBinding.objectToEntry(aCanMessage, dataEntry);
if (canMessageDb.put(null, keyEntry, dataEntry) != OperationStatus.SUCCESS) {
System.err.println("OMG");
writeEnd = System.currentTimeMillis();
System.err.println("Took " + (writeEnd - writeStart) + " ms, which comes to " + ((double) num_messages / (double) (writeEnd - writeStart)) + " writes/ms");
} catch (Exception ex) {
Logger.getLogger(BerkeleyDatabase.class.getName()).log(Level.SEVERE, null, ex);
public static void main(String[] args)
myDb.storeCanMessage(args);
</code>

Hi,
We don't often get questions asking why JE is so fast. :-)
When inserting in key order, the work that is performed by JE is:
1) A Btree lookup is performed to find the proper insertion location.
2) Btree bottom level internal nodes are logged when they are split, which is typically once per 128 records.
3) Higher level Btree nodes are also split when they fill, but this is very infrequent compared to other operations.
4) The Btree leaf node records are logged.
Because of the log structured storage system, all logging is appending to a file. You are not reading, so there is no other I/O. (If the database becomes large and does not fit in cache, then reading records into cache is expensive of course.)
As the tree becomes deeper (more levels) over time, step 1, 2 and 3 become slightly more expensive, but perhaps not enough to measure in your test.
Does this answer your question?
--mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • HT1338 Could you please help me with the problem. I have mac os 10.7.4 on my macbook pro retina and want to update it to 10.7.5. I had been waiting for 2 hours to do it, but then it appeared that it was impossible. What should I do?

    Could you please help me with the problem. I have macbook with retina with mac os 10.7.4 ann want to update it to mac os 10.7.5. I had been waiting for 2 hours to do it and had tried 3 times but it appeared that it was impossible. What should I do?

    You can download the standalone updates:
    OS X Lion Update 10.7.5 (Client Combo)
    OS X Lion 10.7.5 Supplemental Update

  • What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    You might try talking to the Apple store manager and see if you don't get more help...you might also contact Apple.com/support and see if they can give you a contact with the Apple Italy offices.
    Sounds like you have two levels of failure, the first shop that did the repair and broke a wire, and the second that has disabled something else and isn't helping.
    Apple officially refurbished equipment is usually good quality.  Surprising this has happened but you need to press on with complaints and try for resolution.

  • Yeah. Got a time machine backup, should that work? Thanks.

    Yeah. Got a time machine backup, should that work? Thanks.

    You can schedule backups in CCC for whatever you like. I run two CCC clones on separate disks - a weekly backup and a daily backup. You could have an hourly backup too, if you wish. You can choose to back up on some days and not others (e.g., you might not do any work on the weekend, so see no point in having a backup schedule run on those days. In this regard, CCC is far more flexible than TM.
    It's also more versatile in the backup options it will allow you. Once you've restored your system to the good, I would forget about only cloning your User account, and clone your entire internal disk. This is what most people do I believe, because not only will this copy everything (literally, clone your disk) unlike Time Machine (which skips certain items), it will also make your backup bootable (again unlike Time Machine).
    That menas if your internal disk ever goes kaputt, or you wreck your system with an update or upgrade, you can simply boot back into your system in minutes by connecting the clone.
    About the only advantage I see that TM has over a bootable clone is the 'star wars/versions' type interface, which makes restoring individual files much simpler and user friendly than a clone (but since it's not that hard to do it with CCC anyway, that personally doesn't bother me too much). Others on this board will argue that TM is faster (not in my experience) and causes less wear on your drive (mines happily going 3 years later, but there's no way to empirically test this claim, AFAIK).

  • Apple Maps - Please reconsider and include Google Maps. As a long time Apple customer, I am disappointed iOS would regress the system and inconvenience millions because of a vendetta that should never hinder users. Not only does the transit feature I used

    Apple Maps - Please reconsider and include Google Maps. As a long time Apple customer, I am disappointed iOS would regress the system and inconvenience millions because of a vendetta that should never hinder users. Not only does the transit feature I used religiously no longer exist, but clicking on an address in a website now directs users to a poor Google Maps interface. I am surprised to see such a effortless update from a company squatting on the resources to make a change its customers are asking for.

    varjak paw wrote:
    Apple has documented an API to provide add-ons to the Maps app in the iOS 6 SDK, so that such add-ons are possible is absolutely not a guess that the capability is there. As to whether someone will indeed develop an add-on for any given transit system, that would be a guess, yes, but at a couple of companies at least have already announced plans to do so.
    In select cities and areas - so now I'm going from being able to supply this information myself to either wait for someone to supply an app or write an app myself... This is not feature progression but feature regression. Adding transit times or a specific overlay should not have to be something you need to do through code via an API. So no dice... Your guess that we will see better transit information is just that - a guess, nothing else.
    If you don't agree with that editorial, you are certainly free to do so. I provided the link as food for thought for those who have been questioning Apples' decision to drop Google's maps from iOS. Whether or not you agree with Brad's analysis or that of anyone else is up to you.
    But on that central issue the editorial fails - it's is not the true tale of why Apple made their move and therefore useless even as "food for thought" (because it's guesswork).

  • I can see my thumbnails for my events in iphoto, but when I click to open the folder, no photos show up. However, when I hover over the thumbnail, it shows the flicker of images that should be inside the folder, as well as

    I can see my thumbnails for my events in iphoto, but when I click to open the folder, no photos show up. However, when I hover over the thumbnail, it shows the flicker of images
    that should be inside the folder, as well as # of images in each folder. It also occasionally says the following when I try to even open iphoto:  "Your photo library will not be readable by previous versions of iPhoto after the upgrade. The upgrade process for very large libraries may take an hour or more to complete." So, I am scared to hit "upgrade" for fear I will never recover any of the images as the wording in this quote seems odd. The photos are not in the trash. Did I lose them all? Do you know if/how I can retrieve them?

    iPhoto 08?
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.

  • When I start mozilla firefox web browser, sometimes I see a message saying that "a Mozilla Firefox is already running, please close it or restart your program", while I don't have one running at that time. What is the problem?

    When I start mozilla firefox web browser, sometimes I see a message saying that "a Mozilla Firefox is already running, please close it or restart your system". As a matter of fact, there is no firefox browser running at that time. Since I cannot do anything about it, I have to restart my computer before I can use the web browser, which bothers me dearly. What is the problem?

    Plug-in and tasks started by Firefox may continue after attempting to close Firefox. The "X" in the upper right-hand corner closes the Window (same as Ctrl+Shift+W) but even if it is the last Firefox window, it does not necessarily close Firefox .
    '''The only proper way to exit Firefox is to use Exit through the File menu''', not the "X" in the upper right corner of last Firefox window.
    ''Menus hidden: then use Alt+F then X.''
    '''Firefox hangs''' | Troubleshooting | Firefox Support ''(some extensions cause a problem)''
    * http://support.mozilla.com/kb/Firefox%20hangs#w_hang-at-exit
    Use the '''Windows Task Manger''' to remove all running firefox.exe in the "Processes"
    tab of the Windows Task Manager, then restart Firefox.
    "'''Restartless Restart'''" extension for Firefox 4.0 only (2 KB download )
    * https://addons.mozilla.org/firefox/addon/249342/
    use to close and restart Firefox after enabling or disabling an extension, switching
    to a new theme, or modifying configuration files, then you don't have to worry
    about delay or have to look in the Task Manager to see if Firefox is closed yet.
    Uses keyboard shortcut "'''Ctrl+Alt+R'''" or a file menu option.
    '''Windows 7''' users can use '''Ctrl+Shift+Esc''' to get to the Windows Task Manager quicker than starting with Ctrl+Alt+Del.

  • I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data.

    I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data and it does not show on the desktop when connected.

    Ok if disk utility was able to verify the drive I doubt there is any problem.. are you trying to open a TM backup??
    You need to mount the sparsebundle then check the actual info inside the bundle.
    Don't use disk warrior.. if the disk has verified then unless you deliberately deleted files there is nothing that is going to do.
    Pondini has a lot of stuff about getting access to the sparsebundle.
    http://pondini.org/TM/17.html
    But if you have copied info to the TC that is now gone.. and the disk is ok.. I am not sure.. the TC will not have deleted the files itself.

  • HT6058 Hello I have a iPhone 4 that's never been updated and I see there are three available, Should I just go with the most recent update ?

    Hello I have a iPhone 4 that's never been updated and I see there are three available, Should I just go with the most recent update ?

    You don't get a choice. If you decide to update, your phone will be updated to the latest iOS version available for your phone. For you, that's iOS 7.0.4.
    Make sure you follow the directions here:
    http://support.apple.com/kb/ht4972
    The update to iOS 5.0 & higher is an erase/restore deal.

  • Just got a new MacMini.  Migrated files using Time Machine.  However, now, on Launchpad, I see several Firmware updates that were relevant for the old machine, but not for the new one.  How do I get rid of these updates?  They won't delete!

    Just got a new MacMini.  Migrated files using Time Machine.  However, now, on Launchpad, I see several Firmware updates that were relevant for the old machine, but not for the new one.  How do I get rid of these updates?  They won't delete!

    Only thing I can think of is trying this Lion trick...
    http://www.cultofmac.com/106030/how-to-nuke-lions-launchpad-and-start-over/10603 0/

  • I always need to see the time counter on the music player, is that possible?

    As a spinning instructor I need to see the time counter on the music player all the time. Now it dissepears after a short time and I need to touch it to see it again and that is not good! I also wish that it was bigger numbers on the counter so I easy can see how long time it's lest on the songs.
    Ideas anyone?

    By default the screen display will dim in about 20 seconds to conserve the battery. And I cannot find any setting to inhibit this function. I am afraid there is no way you can keep the screen bright and enlarge the numbers on the timer.

  • How do I view two clips overlapping each other, each being semitransparent to see both at the same time, so that I can decide where to stop of the first clip and start of the second clip? Thanks.

    Basically I want to combine to clips with correct timings. For that I want to view the two clips overlapping each other, each being semitransparent to see both at the same time, so that I can decide where to stop of the first clip and start of the second clip? Thanks.

    see my reply in your other post:
    You're familiar with the TRIM-tool?
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632caff
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632d8e4
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632d9ae

  • Time Machine 1.1 sometimes deletes backups that should keep

    About two years ago I was intrigued about the disparition of several Time Machine backups. After changing to a larger external backup disk, I've been trying to follow the behavior of Time Machine. Overall, it seems to be quite predictable, corresponding to what is explained in its window: mostly keeping hourly backups during 24 hours, then, from these, only keeping the first one in each day during 30 days, and then, from these remaining backups, only keeping one per week as "space" permits. Since the new backup partition is large (240% of the HD disk), it is still far from removing oldest backup(s) in order to free space. However, in my system, Time Machine has removed more backups, which should have been kept, in at least two occassions:
    Several weeks ago, one month after having the system down for several days, two or three backups (specifically 2012-07-24-002423 and 2012-07-29-120258) that should be kept as weekly ones were deleted, possibly trying to resyncronize to a new day-of-week for the new series of weekly backups to keep.
    Recently, and possibly related with heavy memory load giving 7 GB of swap, TM "got crazy" during two activations, deleting up to eight backups, both daily and weekly ones, which were far from being the oldest backups in the volume.
    Has someone else observed this kind of behavior? What can be done to avoid it? If, as it seems, it is a bug in Time Machine, how can I notify Apple?
    Since Time Machine seems to have a limit of 5 old backup deletions per activation, and given that occasionally strange (and dangerous) behavior, I think that Time Machine should warn when backups older than one month are deleted, and ask permission when 5 or more backups are going to be deleted (at least giving the user the possibility of configuring it so). We are talking here of data security, so some precautions should be allowed when destroying large quantities of data, which otherwise may not be recoverable.
    The essential details follow:
    Strings in recent system.log messages containing "deleted backup" (first & last groups are normal, there was no hourly backup to delete between them):
    Oct 27 00:30:46 iMac com.apple.backupd[34391]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-09-27-002110: 120.20 GB now available
    Oct 27 02:27:42 iMac com.apple.backupd[34677]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-03-22-232115: 132.85 GB now available
    Oct 27 02:29:05 iMac com.apple.backupd[34677]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-04-06-000633: 143.17 GB now available
    Oct 27 02:30:23 iMac com.apple.backupd[34677]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-09-28-002619: 146.29 GB now available
    Oct 27 02:31:32 iMac com.apple.backupd[34677]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-09-30-004344: 149.48 GB now available
    Oct 27 02:31:50 iMac com.apple.backupd[34677]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-10-03-000509: 152.58 GB now available
    Oct 27 03:27:04 iMac com.apple.backupd[34860]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-10-08-001931: 155.64 GB now available
    Oct 27 03:27:40 iMac com.apple.backupd[34860]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-10-14-003758: 159.26 GB now available
    Oct 27 03:28:32 iMac com.apple.backupd[34860]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-10-22-002147: 162.48 GB now available
    Oct 27 11:37:36 iMac com.apple.backupd[35839]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-10-26-104655: 153.98 GB now available
    List of backups dates in the backup volume, and free space, taken from the terminal (after deletions: note that the backups marked in red should normally be kept):
    iMac:~ admin$ ls /Volumes/iMac\ HD\ Time\ Machine/Backups.backupdb/iMac/
    2011-10-01-061010    2012-05-31-093201          2012-10-20-002816
    2011-10-09-005429          2012-06-07-002543          2012-10-21-021504
    2011-10-16-001503          2012-06-14-005742          2012-10-23-004109
    2011-10-23-002554          2012-06-21-001427          2012-10-24-002334
    2011-11-05-001403          2012-06-28-001245          2012-10-25-002414
    2011-11-12-004617          2012-07-05-002056          2012-10-26-002613
    2011-11-19-000532          2012-07-12-002639          2012-10-26-012840
    2011-11-26-000431          2012-07-19-005850          2012-10-27-012731
    2011-12-03-000109          2012-08-05-002510          2012-10-27-032628
    2011-12-10-003557          2012-08-12-002739          2012-10-27-042813
    2011-12-17-002907          2012-08-19-005740          2012-10-27-052837
    2011-12-24-001228          2012-09-03-110847          2012-10-27-062824
    2011-12-31-002103          2012-09-10-123630          2012-10-27-113711
    2012-01-07-005520          2012-09-17-002437          2012-10-27-123817
    2012-01-14-000913          2012-09-24-002309          2012-10-27-133739
    2012-01-21-005206          2012-09-29-011601          2012-10-27-143746
    2012-01-28-000105          2012-10-01-001701          2012-10-27-153817
    2012-02-04-022951          2012-10-02-010201          2012-10-27-163745
    2012-02-12-210133          2012-10-04-000909          2012-10-27-173738
    2012-02-24-002145          2012-10-07-112125          2012-10-27-183838
    2012-03-02-002405          2012-10-09-001929          2012-10-27-193814
    2012-03-09-003236          2012-10-10-002008          2012-10-27-203751
    2012-03-16-002756          2012-10-11-001416          2012-10-27-213752
    2012-03-30-014934          2012-10-12-004500          2012-10-27-223747
    2012-04-19-004318          2012-10-13-012506          2012-10-27-233844
    2012-04-26-012354          2012-10-15-003823          2012-10-28-011809
    2012-05-03-003008          2012-10-16-002207          2012-10-28-013726
    2012-05-10-004554          2012-10-17-002306          Latest
    2012-05-17-011942          2012-10-18-002230
    2012-05-24-001808          2012-10-19-002253
    iMac:~ admin$ df
    Filesystem    512-blocks       Used Available Capacity  Mounted on
    /dev/disk0s2   914062528  585638424 327912104    65%    /
    devfs                226        226         0   100%    /dev
    map -hosts             0          0         0   100%    /net
    map auto_home          0          0         0   100%    /home
    /dev/disk1s4  2343750000 1980326912 363423088    85%    /Volumes/iMac HD Time Machine
    /dev/disk1s3   976562504  568072864 408489640    59%    /Volumes/iMac HD SuperDuper!

    Time Machine has unexpectedly deleted several more backups, all of them (marked in red) about 2 hours before the 24-hour limit, then returned to expected behavior. Here is the complete list of yesterday's deletions (there was no 9pm backup to delete):
    Nov  5 04:04:46 iMac com.apple.backupd[18020]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-035134: 163.92 GB now available
    Nov  5 10:07:01 iMac com.apple.backupd[20110]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-114210: 155.69 GB now available
    Nov  5 11:06:46 iMac com.apple.backupd[20335]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-103500: 155.68 GB now available
    Nov  5 12:06:51 iMac com.apple.backupd[20542]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-134014: 153.54 GB now available
    Nov  5 13:06:34 iMac com.apple.backupd[20687]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-124112: 153.56 GB now available
    Nov  5 14:06:28 iMac com.apple.backupd[20828]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-154128: 153.55 GB now available
    Nov  5 15:06:37 iMac com.apple.backupd[21152]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-144118: 153.54 GB now available
    Nov  5 16:06:20 iMac com.apple.backupd[21360]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-174138: 151.67 GB now available
    Nov  5 17:06:31 iMac com.apple.backupd[21510]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-164144: 151.66 GB now available
    Nov  5 18:07:27 iMac com.apple.backupd[21674]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-194018: 151.59 GB now available
    Nov  5 20:48:14 iMac com.apple.backupd[21804]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-184044: 151.57 GB now available
    Nov  5 21:33:14 iMac com.apple.backupd[22086]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-230603: 151.54 GB now available
    Nov  5 22:33:30 iMac com.apple.backupd[22370]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-220537: 151.49 GB now available
    Nov  5 23:32:21 iMac com.apple.backupd[23141]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-05-000610: 151.47 GB now available
    And here is the complete log of Time Machine executions around the first unexpected deletion:
    Nov  5 09:04:17 iMac com.apple.backupd[19826]: Starting standard backup
    Nov  5 09:04:27 iMac com.apple.backupd[19826]: Backing up to: /Volumes/iMac HD Time Machine/Backups.backupdb
    Nov  5 09:04:41 iMac com.apple.backupd[19826]: No pre-backup thinning needed: 9.08 GB requested (including padding), 159.15 GB available
    Nov  5 09:05:35 iMac com.apple.backupd[19826]: Copied 1075 files (2.2 GB) from volume Macintosh HD.
    Nov  5 09:05:38 iMac com.apple.backupd[19826]: No pre-backup thinning needed: 6.41 GB requested (including padding), 156.92 GB available
    Nov  5 09:05:40 iMac com.apple.backupd[19826]: Copied 175 files (1.1 MB) from volume Macintosh HD.
    Nov  5 09:05:43 iMac com.apple.backupd[19826]: Starting post-backup thinning
    Nov  5 09:05:43 iMac com.apple.backupd[19826]: No post-back up thinning needed: no expired backups exist
    Nov  5 09:05:43 iMac com.apple.backupd[19826]: Backup completed successfully.
    Nov  5 10:04:18 iMac com.apple.backupd[20110]: Starting standard backup
    Nov  5 10:04:18 iMac com.apple.backupd[20110]: Backing up to: /Volumes/iMac HD Time Machine/Backups.backupdb
    Nov  5 10:04:38 iMac com.apple.backupd[20110]: No pre-backup thinning needed: 10.56 GB requested (including padding), 156.92 GB available
    Nov  5 10:06:11 iMac com.apple.backupd[20110]: Copied 1314 files (3.5 GB) from volume Macintosh HD.
    Nov  5 10:06:22 iMac com.apple.backupd[20110]: No pre-backup thinning needed: 6.41 GB requested (including padding), 153.45 GB available
    Nov  5 10:06:32 iMac com.apple.backupd[20110]: Copied 744 files (1.1 MB) from volume Macintosh HD.
    Nov  5 10:06:36 iMac com.apple.backupd[20110]: Starting post-backup thinning
    Nov  5 10:07:01 iMac com.apple.backupd[20110]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-114210: 155.69 GB now available
    Nov  5 10:07:01 iMac com.apple.backupd[20110]: Post-back up thinning complete: 1 expired backups removed
    Nov  5 10:07:01 iMac com.apple.backupd[20110]: Backup completed successfully.
    Nov  5 11:04:17 iMac com.apple.backupd[20335]: Starting standard backup
    Nov  5 11:04:27 iMac com.apple.backupd[20335]: Backing up to: /Volumes/iMac HD Time Machine/Backups.backupdb
    Nov  5 11:04:43 iMac com.apple.backupd[20335]: No pre-backup thinning needed: 9.14 GB requested (including padding), 155.69 GB available
    Nov  5 11:05:58 iMac com.apple.backupd[20335]: Copied 1223 files (2.3 GB) from volume Macintosh HD.
    Nov  5 11:06:08 iMac com.apple.backupd[20335]: No pre-backup thinning needed: 6.41 GB requested (including padding), 153.41 GB available
    Nov  5 11:06:17 iMac com.apple.backupd[20335]: Copied 596 files (1.1 MB) from volume Macintosh HD.
    Nov  5 11:06:21 iMac com.apple.backupd[20335]: Starting post-backup thinning
    Nov  5 11:06:46 iMac com.apple.backupd[20335]: Deleted backup /Volumes/iMac HD Time Machine/Backups.backupdb/iMac/2012-11-04-103500: 155.68 GB now available
    Nov  5 11:06:46 iMac com.apple.backupd[20335]: Post-back up thinning complete: 1 expired backups removed
    Nov  5 11:06:46 iMac com.apple.backupd[20335]: Backup completed successfully.
    It's a bit disappointing this unexpected and opaque behavior.

  • When i was scrolling through my camera role today before i updated and like 100   pictures turned into a picture thats white then says PNG. Cant see the picture. What should i do?

    when i was scrolling through my camera role today before i updated and like 100 + pictures turned into a picture thats white then says PNG. Cant see the picture. What should i do?

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • I double-click on event  to see all the photos in that event displayed, but all I get is 1 large photo on the edit page.  To see the photos in that event, I have to scroll.  Need to be able to work with all the photos in that event, not one at a time.

    I double-click on event  to see all the photos in that event displayed, but all I get is 1 large photo on the edit page.  To see the photos in that event, I have to scroll.  Need to be able to work with all the photos in that event, not one at a time.

    Maybe you need to adjust the zoom slider in the lower left corner of the window?
    Regards
    Léonie

Maybe you are looking for

  • Reconciliation account in vendor master

    When I tried to post a vendor invoice , the system threw the error that posting cannot be done as reconciliation account has not been assigned to the vendor account . when I checked the master record for the concerned vendor , the recon account field

  • How do you get notified of Gmail archived labels that skip the inbox with the mail app on iOS devices?

    If you are fimiliar with Gmail you know that you are able to set up labels/filters. Well i have my filters set up so when a certain person/company emails me the email gets archived into a certain folder and skips the inbox. This works great for me. T

  • Thinking of getting EyeTV Hybrid to convert VHS to digital - the right move?

    Hello, I am soon going to be going back to Macintosh after a failed 17 year experiment with Windows and one of the things I will be wanting to do is transfer some home videos I own into a format that I can edit likely using I-movie.  I have reviewed

  • Full text search in IMAP accounts

    I use IMAP with apple mail. Whenever I try to do a full text search using the spotlight in mail it doesn't find messages most of the time. I guess that it only finds the messages, which have been viewed previously. It should look at the messages on t

  • Decreasing the font size in a Classical report

    Hi all, i have to decrease the font size in the output of a classical report while printing. I have tried the following snippet: NEW-PAGE PRINT ON LINE-SIZE zeichen_pro_zeile                     LINE-COUNT zeilen_pro_seite                     NEW LIS