use of org.neo4j.internal.schema.IndexDescriptor in project neo4j by neo4j.
the class IntegrityValidator method validateSchemaRule.
void validateSchemaRule(SchemaRule schemaRule) throws TransactionFailureException {
Preconditions.checkState(indexValidator != null, "No index validator installed");
KernelVersion currentVersion = neoStores.getMetaDataStore().kernelVersion();
if (currentVersion.isLessThan(VERSION_IN_WHICH_TOKEN_INDEXES_ARE_INTRODUCED)) {
if (schemaRule instanceof IndexDescriptor) {
IndexDescriptor index = (IndexDescriptor) schemaRule;
if (index.isTokenIndex() || isBtreeRelationshipPropertyIndex(index)) {
throw new TransactionFailureException(Status.General.UpgradeRequired, "Index operation on index '%s' not allowed. " + "Required kernel version for this transaction is %s, but actual version was %s.", index, VERSION_IN_WHICH_TOKEN_INDEXES_ARE_INTRODUCED.name(), currentVersion.name());
}
}
}
if (schemaRule instanceof ConstraintDescriptor) {
ConstraintDescriptor constraint = (ConstraintDescriptor) schemaRule;
if (constraint.isIndexBackedConstraint()) {
long ownedIndex = constraint.asIndexBackedConstraint().ownedIndexId();
try {
indexValidator.validateIndex(ownedIndex);
} catch (KernelException e) {
// and have recovery performed. It's the safest bet to avoid loosing data.
throw new TransactionFailureException(Status.Transaction.TransactionValidationFailed, e, "Index validation of " + schemaRule + " failed, specifically for its owned index " + ownedIndex, e);
}
}
}
}
use of org.neo4j.internal.schema.IndexDescriptor in project neo4j by neo4j.
the class FulltextIndexConsistencyCheckIT method mustDiscoverNodeInStoreMissingFromIndex.
@Test
void mustDiscoverNodeInStoreMissingFromIndex() throws Exception {
GraphDatabaseService db = createDatabase();
try (Transaction tx = db.beginTx()) {
tx.execute(format(NODE_CREATE, "nodes", asStrList("Label"), asStrList("prop"))).close();
tx.commit();
}
IndexDescriptor indexDescriptor;
long nodeId;
try (Transaction tx = db.beginTx()) {
tx.schema().awaitIndexesOnline(2, TimeUnit.MINUTES);
indexDescriptor = getFulltextIndexDescriptor(tx.schema().getIndexes());
Node node = tx.createNode(Label.label("Label"));
node.setProperty("prop", "value");
nodeId = node.getId();
tx.commit();
}
IndexingService indexes = getIndexingService(db);
IndexProxy indexProxy = indexes.getIndexProxy(indexDescriptor);
try (IndexUpdater updater = indexProxy.newUpdater(IndexUpdateMode.ONLINE, NULL)) {
updater.process(IndexEntryUpdate.remove(nodeId, indexDescriptor, Values.stringValue("value")));
}
managementService.shutdown();
ConsistencyCheckService.Result result = checkConsistency();
assertFalse(result.isSuccessful());
}
use of org.neo4j.internal.schema.IndexDescriptor in project neo4j by neo4j.
the class StartOldDbOnCurrentVersionAndCreateFusionIndexIT method verifyExpectedProvider.
private static void verifyExpectedProvider(GraphDatabaseAPI db, Label label, IndexProviderDescriptor expectedDescriptor) throws TransactionFailureException {
try (InternalTransaction tx = (InternalTransaction) db.beginTx();
KernelTransaction kernelTransaction = tx.kernelTransaction()) {
TokenRead tokenRead = kernelTransaction.tokenRead();
SchemaRead schemaRead = kernelTransaction.schemaRead();
int labelId = tokenRead.nodeLabel(label.name());
int key1Id = tokenRead.propertyKey(KEY1);
int key2Id = tokenRead.propertyKey(KEY2);
IndexDescriptor index = single(schemaRead.index(SchemaDescriptor.forLabel(labelId, key1Id)));
assertIndexHasExpectedProvider(expectedDescriptor, index);
index = single(schemaRead.index(SchemaDescriptor.forLabel(labelId, key1Id, key2Id)));
assertIndexHasExpectedProvider(expectedDescriptor, index);
tx.commit();
}
}
use of org.neo4j.internal.schema.IndexDescriptor in project neo4j by neo4j.
the class ConstraintIndexConcurrencyTest method shouldNotAllowConcurrentViolationOfConstraint.
@Test
void shouldNotAllowConcurrentViolationOfConstraint() throws Exception {
// Given
Label label = label("Foo");
String propertyKey = "bar";
String conflictingValue = "baz";
String constraintName = "MyConstraint";
// a constraint
try (Transaction tx = db.beginTx()) {
tx.schema().constraintFor(label).assertPropertyIsUnique(propertyKey).withName(constraintName).create();
tx.commit();
}
// When
try (Transaction tx = db.beginTx()) {
KernelTransaction ktx = ((InternalTransaction) tx).kernelTransaction();
int labelId = ktx.tokenRead().nodeLabel(label.name());
int propertyKeyId = ktx.tokenRead().propertyKey(propertyKey);
Read read = ktx.dataRead();
try (NodeValueIndexCursor cursor = ktx.cursors().allocateNodeValueIndexCursor(ktx.cursorContext(), ktx.memoryTracker())) {
IndexDescriptor index = ktx.schemaRead().indexGetForName(constraintName);
IndexReadSession indexSession = ktx.dataRead().indexReadSession(index);
read.nodeIndexSeek(indexSession, cursor, unconstrained(), PropertyIndexQuery.exact(propertyKeyId, "The value is irrelevant, we just want to perform some sort of lookup against this " + "index"));
}
// then let another thread come in and create a node
threads.execute(db -> {
try (Transaction transaction = db.beginTx()) {
transaction.createNode(label).setProperty(propertyKey, conflictingValue);
transaction.commit();
}
return null;
}, db).get();
// before we create a node with the same property ourselves - using the same statement that we have
// already used for lookup against that very same index
long node = ktx.dataWrite().nodeCreate();
ktx.dataWrite().nodeAddLabel(node, labelId);
var e = assertThrows(UniquePropertyValueValidationException.class, () -> ktx.dataWrite().nodeSetProperty(node, propertyKeyId, Values.of(conflictingValue)));
assertEquals(ConstraintDescriptorFactory.uniqueForLabel(labelId, propertyKeyId), e.constraint());
IndexEntryConflictException conflict = Iterators.single(e.conflicts().iterator());
assertEquals(Values.stringValue(conflictingValue), conflict.getSinglePropertyValue());
tx.commit();
}
}
use of org.neo4j.internal.schema.IndexDescriptor in project neo4j by neo4j.
the class IndexConfigMigrationIT method getIndexConfig.
private static Map<String, Value> getIndexConfig(GraphDatabaseAPI db, Transaction tx, String indexName) throws IndexNotFoundKernelException {
IndexingService indexingService = getIndexingService(db);
IndexDescriptor indexReference = schemaRead(tx).indexGetForName(indexName);
IndexProxy indexProxy = indexingService.getIndexProxy(indexReference);
return indexProxy.indexConfig();
}
Aggregations