ReadWriteLock readWriteLock = new ReentrantReadWriteLock();
this.readLock = readWriteLock.readLock();
this.writeLock = readWriteLock.writeLock();
this.credentials = credentials;
this.committer = new NullVertexOutputCommitter();
this.vertexLocationHint = vertexLocationHint;
if (LOG.isDebugEnabled()) {
logLocationHints(this.vertexLocationHint);
}