Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

77237: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      76111: ACE-1691: SOLR 4 - Find and index nodes that require content indexing.
         - Separated InformationServer interface from the solr client
         - Added log4j-solr.properties
         - Added tracker state to each tracker
         - TODO: perhaps break up the tracker state object into more specific objects
         - Read and write to SolrContentStore cache from within SolrInformationServer
         - Initial attempt at getting the Solr documents that need to be updated by ContentTracker
         - TODO: Update ContentTracker to get the needed documents and update the SolrContentStore cache


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@78093 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-07-23 16:46:20 +00:00
parent 233ed7edc1
commit ed135157fb

View File

@@ -65,8 +65,6 @@ public interface InformationServer
void deleteByNodeId(Long nodeId) throws IOException;
void indexNode(Node node, boolean overwrite) throws IOException, AuthenticationException, JSONException;
void indexNodes(List<Node> nodes, boolean overwrite) throws IOException, AuthenticationException, JSONException;
NodeReport checkNodeCommon(NodeReport nodeReport);
@@ -114,5 +112,4 @@ public interface InformationServer
IndexHealthReport checkIndexTransactions(IndexHealthReport indexHealthReport, Long minTxId, Long minAclTxId,
IOpenBitSet txIdsInDb, long maxTxId, IOpenBitSet aclTxIdsInDb, long maxAclTxId) throws IOException;
}