We are using .Net with Nhibernate and Castle for IOC (for all services and repositories). Something strange has started happening with the most recent deployment and I'm having trouble tracking the issue down.
We have the following chunk of code in the repository that is called from a service after an ObjA is created:
public void Save(IList<ObjA> listA, IList<ObjB> listB, ObjC c, Objd d) {
using (var session = GetSession()) {
using (var tx = session.BeginTransaction()) {
try {
session.Save(c);
foreach (var a in listA) {
session.Update(a);
}
foreach (var b in listB) {
// unrelated field updates here
session.Save(b);
}
session.Update(d);
if (!tx.WasCommitted) {
tx.Commit();
}
} catch (Exception) {
if (tx != null) {
tx.Rollback();
}
throw;
}
}
}
}
This code is called passing 1 ObjA in listA, 1 ObjB in listB, plus ObjC and ObjD.
We are finding that randomly (for about half of the time it's called) we are getting duplicate ObjB and ObjC records (the only objects here that are being created instead of updated). Since ObjC has a datetime field I can track when the records are created and there are anywhere from 5-100 duplicate records created sometimes over a period of ~12-18 hours. This is the only code that is creating ObjB and ObjC records in the database.
I've never seen anything like this before, it seems like something is stuck in memory and keeps calling this function (or the Nhibernate calls) intermittently. I restarted IIS on one of the servers that seemed to be having this issue and the issue stopped, but then started up the next day on a different server.
Does anyone have any ideas on what could be causing this? Is there something in the configuration for either Castle or Nhibernate that could be causing these calls to get stuck and repeated over 12-18 hours (over 100 times?)?
Any help is appreciated :)
Service(){
_saveLater = null;
CalledByWS(){
CreateObjA();
CreateOtherObjs();
}
CreateObjA(){
//Do a lot of stuff here
var a = new ObjA{ };
listToBeSaved.Add(a, SaveOrUpdate.Save);
//Update other objects & add to the list
if(xyz){
_saveLater.ObjA = a
_saveLater.ObjB = GetObjB(a);
_saveLater.ObjC = GetObjC(a);
}
_repo.SaveOrUpdate(listToBeSaved);
}
CreateOtherObjs(){
if(_saveLater == null) return;
Save(new List<ObjA> {_saveLater.ObjA}, new List<ObjB> {_saveLater.ObjB},
_saveLater.Objc, _saveLater.ObjD); //The original function posted
}
}
Repo(){
SaveOrUpdate(Dictionary<IEntity, SaveOrUpdate> objs){
using (var session = GetSession()){
using (var tx = session.BeginTransaction()) {
try {
foreach (var o in objs) {
if (o.Key == null) continue;
if (o.Value == SaveOrUpdate.Update)
session.Update(o.Key);
else
session.Save(o.Key);
}
if (!tx.WasCommitted) {
tx.Commit();
}
} catch (Exception) {
if (tx != null) {
tx.Rollback();
}
throw;
}
}
}
}
}
