ソースを参照

PackWriter: Speed up pruning of objects from cached packs

During object enumeration for the thin pack, very few objects come
out that are duplicated with the cached pack. Typically these are
only cases where a blob or tree was cherry-picked forward, got a
copy or rename, or was reverted... all relatively infrequent events.

Speed up pruning of the thin pack object list by combining the phase
with the object representation selection. Implementers should already
be offering to reuse the object from the cached pack if it is stored
there, at which point the implementation can perform a very fast type
of containment test using the cached pack's identity rather than yet
another index lookup.  For the local disk case this is probably not a
big improvement, but it does help on the DHT implementation where the
two passes combined into one reduces latency.

Change-Id: I6a07fc75d9075bf6233e967360b6546f9e9a2b33
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
tags/v0.12.1
Shawn O. Pearce 13年前
コミット
9f5bbb5dd4

+ 27
- 19
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/LocalCachedPack.java ファイルの表示

import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.util.Collections; import java.util.Collections;
import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;


import org.eclipse.jgit.lib.ObjectId; import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.storage.pack.CachedPack; import org.eclipse.jgit.storage.pack.CachedPack;
import org.eclipse.jgit.storage.pack.ObjectToPack;
import org.eclipse.jgit.storage.pack.PackOutputStream; import org.eclipse.jgit.storage.pack.PackOutputStream;
import org.eclipse.jgit.storage.pack.StoredObjectRepresentation;


class LocalCachedPack extends CachedPack { class LocalCachedPack extends CachedPack {
private final ObjectDirectory odb; private final ObjectDirectory odb;


private final String[] packNames; private final String[] packNames;


private PackFile[] packs;

LocalCachedPack(ObjectDirectory odb, Set<ObjectId> tips, LocalCachedPack(ObjectDirectory odb, Set<ObjectId> tips,
List<String> packNames) { List<String> packNames) {
this.odb = odb; this.odb = odb;
@Override @Override
public long getObjectCount() throws IOException { public long getObjectCount() throws IOException {
long cnt = 0; long cnt = 0;
for (String packName : packNames)
cnt += getPackFile(packName).getObjectCount();
for (PackFile pack : getPacks())
cnt += pack.getObjectCount();
return cnt; return cnt;
} }


void copyAsIs(PackOutputStream out, boolean validate, WindowCursor wc) void copyAsIs(PackOutputStream out, boolean validate, WindowCursor wc)
throws IOException { throws IOException {
for (String packName : packNames)
getPackFile(packName).copyPackAsIs(out, validate, wc);
for (PackFile pack : getPacks())
pack.copyPackAsIs(out, validate, wc);
} }


@Override @Override
public <T extends ObjectId> Set<ObjectId> hasObject(Iterable<T> toFind)
throws IOException {
PackFile[] packs = new PackFile[packNames.length];
for (int i = 0; i < packNames.length; i++)
packs[i] = getPackFile(packNames[i]);

Set<ObjectId> have = new HashSet<ObjectId>();
for (ObjectId id : toFind) {
for (PackFile pack : packs) {
if (pack.hasObject(id)) {
have.add(id);
break;
}
public boolean hasObject(ObjectToPack obj, StoredObjectRepresentation rep) {
try {
LocalObjectRepresentation local = (LocalObjectRepresentation) rep;
for (PackFile pack : getPacks()) {
if (local.pack == pack)
return true;
} }
return false;
} catch (FileNotFoundException packGone) {
return false;
}
}

private PackFile[] getPacks() throws FileNotFoundException {
if (packs == null) {
PackFile[] p = new PackFile[packNames.length];
for (int i = 0; i < packNames.length; i++)
p[i] = getPackFile(packNames[i]);
packs = p;
} }
return have;
return packs;
} }


private PackFile getPackFile(String packName) throws FileNotFoundException { private PackFile getPackFile(String packName) throws FileNotFoundException {

+ 21
- 10
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/CachedPack.java ファイルの表示

} }


/** /**
* Determine if the pack contains the requested objects.
* Determine if this pack contains the object representation given.
* <p>
* PackWriter uses this method during the finding sources phase to prune
* away any objects from the leading thin-pack that already appear within
* this pack and should not be sent twice.
* <p>
* Implementors are strongly encouraged to rely on looking at {@code rep}
* only and using its internal state to decide if this object is within this
* pack. Implementors should ensure a representation from this cached pack
* is tested as part of
* {@link ObjectReuseAsIs#selectObjectRepresentation(PackWriter, org.eclipse.jgit.lib.ProgressMonitor, Iterable)}
* , ensuring this method would eventually return true if the object would
* be included by this cached pack.
* *
* @param <T>
* any type of ObjectId to search for.
* @param toFind
* the objects to search for.
* @return the objects contained in the pack.
* @throws IOException
* the pack cannot be accessed
* @param obj
* the object being packed. Can be used as an ObjectId.
* @param rep
* representation from the {@link ObjectReuseAsIs} instance that
* originally supplied this CachedPack.
* @return true if this pack contains this object.
*/ */
public abstract <T extends ObjectId> Set<ObjectId> hasObject(
Iterable<T> toFind) throws IOException;
public abstract boolean hasObject(ObjectToPack obj,
StoredObjectRepresentation rep);
} }

+ 8
- 2
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/ObjectReuseAsIs.java ファイルの表示



/** /**
* Select the best object representation for a packer. * Select the best object representation for a packer.
*
* <p>
* Implementations should iterate through all available representations of * Implementations should iterate through all available representations of
* an object, and pass them in turn to the PackWriter though * an object, and pass them in turn to the PackWriter though
* {@link PackWriter#select(ObjectToPack, StoredObjectRepresentation)} so * {@link PackWriter#select(ObjectToPack, StoredObjectRepresentation)} so
* the writer can select the most suitable representation to reuse into the * the writer can select the most suitable representation to reuse into the
* output stream. * output stream.
*
* <p>
* If the implementation returns CachedPack from {@link #getCachedPacks()},
* it must consider the representation of any object that is stored in any
* of the offered CachedPacks. PackWriter relies on this behavior to prune
* duplicate objects out of the pack stream when it selects a CachedPack and
* the object was also reached through the thin-pack enumeration.
* <p>
* The implementation may choose to consider multiple objects at once on * The implementation may choose to consider multiple objects at once on
* concurrent threads, but must evaluate all representations of an object * concurrent threads, but must evaluate all representations of an object
* within the same thread. * within the same thread.

+ 30
- 49
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackWriter.java ファイルの表示



private boolean ignoreMissingUninteresting = true; private boolean ignoreMissingUninteresting = true;


private boolean pruneCurrentObjectList;

/** /**
* Create writer for specified repository. * Create writer for specified repository.
* <p> * <p>
*/ */
public boolean willInclude(final AnyObjectId id) throws IOException { public boolean willInclude(final AnyObjectId id) throws IOException {
ObjectToPack obj = objectsMap.get(id); ObjectToPack obj = objectsMap.get(id);
if (obj != null && !obj.isEdge())
return true;

Set<ObjectId> toFind = Collections.singleton(id.toObjectId());
for (CachedPack pack : cachedPacks) {
if (pack.hasObject(toFind).contains(id))
return true;
}

return false;
return obj != null && !obj.isEdge();
} }


/** /**
if (writeMonitor == null) if (writeMonitor == null)
writeMonitor = NullProgressMonitor.INSTANCE; writeMonitor = NullProgressMonitor.INSTANCE;


if ((reuseDeltas || config.isReuseObjects()) && reuseSupport != null)
if (reuseSupport != null && (
reuseDeltas
|| config.isReuseObjects()
|| !cachedPacks.isEmpty()))
searchForReuse(compressMonitor); searchForReuse(compressMonitor);
if (config.isDeltaCompress()) if (config.isDeltaCompress())
searchForDeltas(compressMonitor); searchForDeltas(compressMonitor);
cnt += list.size(); cnt += list.size();
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();
monitor.beginTask(JGitText.get().searchForReuse, cnt); monitor.beginTask(JGitText.get().searchForReuse, cnt);
for (List<ObjectToPack> list : objectsLists)
for (List<ObjectToPack> list : objectsLists) {
pruneCurrentObjectList = false;
reuseSupport.selectObjectRepresentation(this, monitor, list); reuseSupport.selectObjectRepresentation(this, monitor, list);
if (pruneCurrentObjectList)
pruneEdgesFromObjectList(list);
}
monitor.endTask(); monitor.endTask();
stats.timeSearchingForReuse = System.currentTimeMillis() - start; stats.timeSearchingForReuse = System.currentTimeMillis() - start;
} }
for (RevObject obj : haveObjs) for (RevObject obj : haveObjs)
walker.markUninteresting(obj); walker.markUninteresting(obj);


int typesToPrune = 0;
final int maxBases = config.getDeltaSearchWindowSize(); final int maxBases = config.getDeltaSearchWindowSize();
Set<RevTree> baseTrees = new HashSet<RevTree>(); Set<RevTree> baseTrees = new HashSet<RevTree>();
BlockList<RevCommit> commits = new BlockList<RevCommit>(); BlockList<RevCommit> commits = new BlockList<RevCommit>();
} }
commits = null; commits = null;


for (CachedPack p : cachedPacks) {
for (ObjectId d : p.hasObject(objectsLists[Constants.OBJ_COMMIT])) {
if (baseTrees.size() <= maxBases)
baseTrees.add(walker.lookupCommit(d).getTree());
objectsMap.get(d).setEdge();
typesToPrune |= 1 << Constants.OBJ_COMMIT;
}
}

BaseSearch bases = new BaseSearch(countingMonitor, baseTrees, // BaseSearch bases = new BaseSearch(countingMonitor, baseTrees, //
objectsMap, edgeObjects, reader); objectsMap, edgeObjects, reader);
RevObject o; RevObject o;
countingMonitor.update(1); countingMonitor.update(1);
} }


for (CachedPack p : cachedPacks) {
for (ObjectId d : p.hasObject(objectsLists[Constants.OBJ_TREE])) {
objectsMap.get(d).setEdge();
typesToPrune |= 1 << Constants.OBJ_TREE;
}
for (ObjectId d : p.hasObject(objectsLists[Constants.OBJ_BLOB])) {
objectsMap.get(d).setEdge();
typesToPrune |= 1 << Constants.OBJ_BLOB;
}
for (ObjectId d : p.hasObject(objectsLists[Constants.OBJ_TAG])) {
objectsMap.get(d).setEdge();
typesToPrune |= 1 << Constants.OBJ_TAG;
}
}

if (typesToPrune != 0) {
pruneObjectList(typesToPrune, Constants.OBJ_COMMIT);
pruneObjectList(typesToPrune, Constants.OBJ_TREE);
pruneObjectList(typesToPrune, Constants.OBJ_BLOB);
pruneObjectList(typesToPrune, Constants.OBJ_TAG);
}

for (CachedPack pack : cachedPacks) for (CachedPack pack : cachedPacks)
countingMonitor.update((int) pack.getObjectCount()); countingMonitor.update((int) pack.getObjectCount());
countingMonitor.endTask(); countingMonitor.endTask();
stats.timeCounting = System.currentTimeMillis() - countingStart; stats.timeCounting = System.currentTimeMillis() - countingStart;
} }


private void pruneObjectList(int typesToPrune, int typeCode) {
if ((typesToPrune & (1 << typeCode)) == 0)
return;

final List<ObjectToPack> list = objectsLists[typeCode];
private static void pruneEdgesFromObjectList(List<ObjectToPack> list) {
final int size = list.size(); final int size = list.size();
int src = 0; int src = 0;
int dst = 0; int dst = 0;
*/ */
public void select(ObjectToPack otp, StoredObjectRepresentation next) { public void select(ObjectToPack otp, StoredObjectRepresentation next) {
int nFmt = next.getFormat(); int nFmt = next.getFormat();

if (!cachedPacks.isEmpty()) {
if (otp.isEdge())
return;
if ((nFmt == PACK_WHOLE) | (nFmt == PACK_DELTA)) {
for (CachedPack pack : cachedPacks) {
if (pack.hasObject(otp, next)) {
otp.setEdge();
otp.clearDeltaBase();
otp.clearReuseAsIs();
pruneCurrentObjectList = true;
return;
}
}
}
}

int nWeight; int nWeight;
if (otp.isReuseAsIs()) { if (otp.isReuseAsIs()) {
// We've already chosen to reuse a packed form, if next // We've already chosen to reuse a packed form, if next

読み込み中…
キャンセル
保存