org.neo4j.kernel.impl.index.schema.DeferredConflictCheckingIndexUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-kernel Show documentation
Show all versions of neo4j-kernel Show documentation
Neo4j kernel is a lightweight, embedded Java database designed to
store data structured as graphs rather than tables. For more
information, see http://neo4j.org.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.kernel.impl.index.schema;
import java.util.HashSet;
import java.util.Set;
import java.util.function.Supplier;
import org.neo4j.internal.kernel.api.PropertyIndexQuery;
import org.neo4j.internal.kernel.api.exceptions.schema.IndexNotApplicableKernelException;
import org.neo4j.internal.kernel.api.security.AccessMode;
import org.neo4j.internal.schema.IndexDescriptor;
import org.neo4j.io.pagecache.context.CursorContext;
import org.neo4j.kernel.api.exceptions.index.IndexEntryConflictException;
import org.neo4j.kernel.api.index.IndexUpdater;
import org.neo4j.kernel.api.index.ValueIndexReader;
import org.neo4j.storageengine.api.IndexEntryUpdate;
import org.neo4j.storageengine.api.ValueIndexEntryUpdate;
import org.neo4j.values.storable.ValueTuple;
import static org.neo4j.internal.kernel.api.IndexQueryConstraints.unconstrained;
import static org.neo4j.internal.kernel.api.PropertyIndexQuery.exact;
import static org.neo4j.internal.kernel.api.QueryContext.NULL_CONTEXT;
import static org.neo4j.storageengine.api.UpdateMode.REMOVED;
/**
* This deferring conflict checker solves e.g. a problem of applying updates to an index that is aware of,
* and also prevents, duplicates while applying. Consider this scenario:
*
*
* GIVEN:
* Node A w/ property value P
* Node B w/ property value Q
*
* WHEN Applying a transaction that:
* Sets A property value to Q
* Deletes B
*
*
* Then an index that is conscious about conflicts when applying may see intermediary conflicts,
* depending on the order in which updates are applied. Remembering which value tuples have been altered and
* checking conflicts for those in {@link #close()} works around that problem.
*
* This updater wrapping should only be used in specific places to solve specific problems, not generally
* when applying updates to online indexes.
*/
public class DeferredConflictCheckingIndexUpdater implements IndexUpdater
{
private final IndexUpdater actual;
private final Supplier readerSupplier;
private final IndexDescriptor indexDescriptor;
private final CursorContext cursorContext;
private final Set touchedTuples = new HashSet<>();
public DeferredConflictCheckingIndexUpdater( IndexUpdater actual, Supplier readerSupplier, IndexDescriptor indexDescriptor,
CursorContext cursorContext )
{
this.actual = actual;
this.readerSupplier = readerSupplier;
this.indexDescriptor = indexDescriptor;
this.cursorContext = cursorContext;
}
@Override
public void process( IndexEntryUpdate> update ) throws IndexEntryConflictException
{
ValueIndexEntryUpdate> valueUpdate = asValueUpdate( update );
actual.process( valueUpdate );
if ( valueUpdate.updateMode() != REMOVED )
{
touchedTuples.add( ValueTuple.of( valueUpdate.values() ) );
}
}
@Override
public void close() throws IndexEntryConflictException
{
actual.close();
try ( ValueIndexReader reader = readerSupplier.get() )
{
for ( ValueTuple tuple : touchedTuples )
{
try ( NodeValueIterator client = new NodeValueIterator() )
{
reader.query( client, NULL_CONTEXT, AccessMode.Static.READ, unconstrained(), queryOf( tuple ) );
if ( client.hasNext() )
{
long firstEntityId = client.next();
if ( client.hasNext() )
{
long secondEntityId = client.next();
throw new IndexEntryConflictException( firstEntityId, secondEntityId, tuple );
}
}
}
}
}
catch ( IndexNotApplicableKernelException e )
{
throw new IllegalArgumentException( "Unexpectedly the index reader couldn't handle this query", e );
}
}
private PropertyIndexQuery[] queryOf( ValueTuple tuple )
{
PropertyIndexQuery[] predicates = new PropertyIndexQuery[tuple.size()];
int[] propertyIds = indexDescriptor.schema().getPropertyIds();
for ( int i = 0; i < predicates.length; i++ )
{
predicates[i] = exact( propertyIds[i], tuple.valueAt( i ) );
}
return predicates;
}
}