Fix for ALF-10561 SOLR stops indexing if it is given a property that is neither indexed or stored - it throws an exception

Fix ALF-10358 	SOLR No easy way to get the current last TX indexed to monitor how the SOLR index is building

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30857 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2011-09-29 14:28:46 +00:00
parent c3fe5d4b53
commit c5f94ae12e
6 changed files with 357 additions and 1 deletions

View File

@@ -796,4 +796,13 @@ public class SOLRTrackingComponentImpl implements SOLRTrackingComponent
more = callback.handleNodeMetaData(row);
}
}
/* (non-Javadoc)
* @see org.alfresco.repo.solr.SOLRTrackingComponent#getLastTransactionTimestamp()
*/
@Override
public Long getMaxTxnCommitTime()
{
return nodeDAO.getMaxTxnCommitTime();
}
}