Skip to content
Snippets Groups Projects
Commit 4962b5ba authored by srosse's avatar srosse
Browse files

OO-3022: commit after every synchronization of a user or rollback if the sync failed

parent bc43c7cc
No related branches found
No related tags found
No related merge requests found
...@@ -1177,15 +1177,15 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe ...@@ -1177,15 +1177,15 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
} else { } else {
log.warn(errors.get(), null); log.warn(errors.get(), null);
} }
} catch (Exception e) { } catch (Exception e) {
// catch here to go on with other users on exeptions! // catch here to go on with other users on exeptions!
log.error("some error occured in looping over set of changed user-attributes, actual user " + user + ". Will still continue with others.", e); log.error("some error occured in looping over set of changed user-attributes, actual user " + user + ". Will still continue with others.", e);
} errors.insert("Cannot sync user: " + user);
} finally {
if(count % 10 == 0) { dbInstance.commit();
dbInstance.commitAndCloseSession(); if(count % 10 == 0) {
dbInstance.closeSession();
}
} }
if(count % 1000 == 0) { if(count % 1000 == 0) {
log.info("Retrieve " + count + "/" + ldapUserList.size() + " users in LDAP server"); log.info("Retrieve " + count + "/" + ldapUserList.size() + " users in LDAP server");
...@@ -1200,11 +1200,16 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe ...@@ -1200,11 +1200,16 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
int syncCount = 0; int syncCount = 0;
for (IdentityRef ident : changedMapIdentityMap.keySet()) { for (IdentityRef ident : changedMapIdentityMap.keySet()) {
// sync user is exception save, no try/catch needed // sync user is exception save, no try/catch needed
syncUser(changedMapIdentityMap.get(ident), ident); try {
syncCount++;
syncCount++; syncUser(changedMapIdentityMap.get(ident), ident);
if(syncCount % 20 == 0) { } catch (Exception e) {
dbInstance.commitAndCloseSession(); errors.insert("Cannot sync user: " + ident);
} finally {
dbInstance.commit();
if(syncCount % 20 == 0) {
dbInstance.closeSession();
}
} }
if(syncCount % 1000 == 0) { if(syncCount % 1000 == 0) {
log.info("Update " + syncCount + "/" + changedMapIdentityMap.size() + " LDAP users"); log.info("Update " + syncCount + "/" + changedMapIdentityMap.size() + " LDAP users");
...@@ -1218,26 +1223,27 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe ...@@ -1218,26 +1223,27 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
log.info("LDAP batch sync: no users to create" + sinceSentence); log.info("LDAP batch sync: no users to create" + sinceSentence);
} else { } else {
int newCount = 0; int newCount = 0;
for (LDAPUser ldapUser: newLdapUserList) { for (LDAPUser ldapUser: newLdapUserList) {
Attributes userAttrs = ldapUser.getAttributes(); Attributes userAttrs = ldapUser.getAttributes();
try { try {
newCount++;
Identity identity = createAndPersistUser(userAttrs); Identity identity = createAndPersistUser(userAttrs);
if(StringHelper.containsNonWhitespace(ldapUser.getDn())) { if(StringHelper.containsNonWhitespace(ldapUser.getDn())) {
dnToIdentityKeyMap.put(ldapUser.getDn(), ldapUser); dnToIdentityKeyMap.put(ldapUser.getDn(), ldapUser);
ldapUser.setCachedIdentity(new IdentityRefImpl(identity.getKey())); ldapUser.setCachedIdentity(new IdentityRefImpl(identity.getKey()));
} }
newCount++;
if(newCount % 20 == 0) {
dbInstance.intermediateCommit();
}
if(newCount % 1000 == 0) {
log.info("Create " + count + "/" + newLdapUserList.size() + " LDAP users");
}
} catch (Exception e) { } catch (Exception e) {
// catch here to go on with other users on exeptions! // catch here to go on with other users on exeptions!
log.error("some error occured while creating new users, actual userAttribs " + userAttrs + ". Will still continue with others.", e); log.error("some error occured while creating new users, actual userAttribs " + userAttrs + ". Will still continue with others.", e);
} finally {
dbInstance.commit();
if(newCount % 20 == 0) {
dbInstance.closeSession();
}
}
if(newCount % 1000 == 0) {
log.info("Create " + count + "/" + newLdapUserList.size() + " LDAP users");
} }
} }
log.info("LDAP batch sync: " + newLdapUserList.size() + " users created" + sinceSentence); log.info("LDAP batch sync: " + newLdapUserList.size() + " users created" + sinceSentence);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment