MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Sammlungsbasierte Mandantenfähigkeit mit Spring Data MongoDB

Möglichkeit gefunden, die Indizes für einen bestimmten Mandanten neu zu erstellen:

String tenantName = ...;

MongoMappingContext mappingContext = (MongoMappingContext) mongoTemplate.getConverter().getMappingContext();
MongoPersistentEntityIndexResolver resolver = new MongoPersistentEntityIndexResolver(mappingContext);

for (BasicMongoPersistentEntity entity : mappingContext.getPersistentEntities()) {
    if (entity.findAnnotation(Document.class) == null) {
        // Keep only collection roots
        continue;
    }

    String collectionName = entity.getCollection();
    if (!collectionName.startsWith(tenantName)) {
        // Keep only dynamic entities
        continue;
    }

    IndexOperations indexOperations = mongoTemplate.indexOps(collectionName);
    for (MongoPersistentEntityIndexResolver.IndexDefinitionHolder holder : resolver.resolveIndexForEntity(entity)) {
        indexOperations.ensureIndex(holder.getIndexDefinition());
    }
}

Ich habe einige Zeit gebraucht, um das herauszufinden. Hoffe, das wird helfen. Verbesserungen willkommen.