This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 21643 - Storage federation mechanism
Summary: Storage federation mechanism
Status: RESOLVED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: All All
: P1 blocker (vote)
Assignee: Tomas Zezula
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-03-17 17:06 UTC by Daniel Pfeffer
Modified: 2002-07-19 15:23 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Pfeffer 2002-03-17 17:06:22 UTC
MDR implements a storage layer to store all the data. As various simple 
operations in the NetBeans IDE can cause large amounts of data to be removed 
from the repository and large amounts of data to be added (e.g. by un-/mounting 
a filesystem), there is a need to be able to perform tasks like this an a 
reasonable time. In order to be able to achieve this performance, we decided to 
customize the storage layer to support storage federation. This mechanism 
should allow to split one logical storage into several physical storages 
(files). Mounting/unmounting these physical storages to/from a logical storage 
will cause fast addition/removal of the data.
Comment 1 Tomas Zezula 2002-06-12 13:32:03 UTC
Implemented in Main Trunk.
The NBMDRepositoryImpl has been extended by method mountStorage,
umountStorage and createExtent with storageId. See Javadoc
documentation for more details.Also support for association links
crossing the extents were added.