mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
Merged HEAD (5.1) to 5.1.N (5.1.1)
114044 ahind: Fix for ACE-4412 Dynamic shard registration should be an enterprise only feature git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.1.N/root@114313 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,583 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2015 Alfresco Software Limited.
|
||||
*
|
||||
* This file is part of Alfresco
|
||||
*
|
||||
* Alfresco is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Alfresco is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package org.alfresco.repo.index.shard;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
import java.util.Set;
|
||||
|
||||
import org.alfresco.repo.cache.SimpleCache;
|
||||
import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
|
||||
import org.alfresco.service.cmr.attributes.AttributeService;
|
||||
import org.alfresco.service.cmr.attributes.AttributeService.AttributeQueryCallback;
|
||||
import org.alfresco.service.cmr.search.SearchParameters;
|
||||
import org.alfresco.service.transaction.TransactionService;
|
||||
import org.alfresco.util.GUID;
|
||||
import org.alfresco.util.Pair;
|
||||
|
||||
import com.hazelcast.util.ConcurrentHashSet;
|
||||
|
||||
/**
|
||||
* @author Andy
|
||||
*/
|
||||
public class ShardRegistryImpl implements ShardRegistry
|
||||
{
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public static final String INSTANCE_STATE = "instance.state";
|
||||
|
||||
public enum ReplicaState {ACTIVE, LAGGING, SILENT };
|
||||
|
||||
/**
|
||||
* The best shard sould be at the top;
|
||||
* @author Andy
|
||||
*
|
||||
*/
|
||||
public static class FlocComparator implements Comparator<Pair<Floc, HashMap<Shard, HashSet<ShardState>>>>
|
||||
{
|
||||
public FlocComparator()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int compare(Pair<Floc, HashMap<Shard, HashSet<ShardState>>> left, Pair<Floc, HashMap<Shard, HashSet<ShardState>>> right)
|
||||
{
|
||||
double leftTxCount = 0;
|
||||
for(HashSet<ShardState> states : left.getSecond().values())
|
||||
{
|
||||
long shardMaxTxCount = 0;
|
||||
for(ShardState state : states)
|
||||
{
|
||||
shardMaxTxCount = Math.max(shardMaxTxCount, state.getLastIndexedTxId());
|
||||
}
|
||||
leftTxCount += ((double)shardMaxTxCount)/left.getFirst().getNumberOfShards();
|
||||
}
|
||||
|
||||
double rightTxCount = 0;
|
||||
for(HashSet<ShardState> states : right.getSecond().values())
|
||||
{
|
||||
long shardMaxTxCount = 0;
|
||||
for(ShardState state : states)
|
||||
{
|
||||
shardMaxTxCount = Math.max(shardMaxTxCount, state.getLastIndexedTxId());
|
||||
}
|
||||
rightTxCount += ((double)shardMaxTxCount)/right.getFirst().getNumberOfShards();
|
||||
}
|
||||
return (int)(rightTxCount - leftTxCount);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static String SHARD_STATE_KEY = ".SHARD_STATE";
|
||||
|
||||
private AttributeService attributeService;
|
||||
|
||||
private SimpleCache<ShardInstance, ShardState> shardStateCache;
|
||||
|
||||
private SimpleCache<ShardInstance, String> shardToGuidCache;
|
||||
|
||||
private ConcurrentHashSet<Floc> knownFlocks = new ConcurrentHashSet<Floc>();
|
||||
|
||||
private Random random = new Random(123);
|
||||
|
||||
private boolean purgeOnInit = false;
|
||||
|
||||
TransactionService transactionService;
|
||||
|
||||
private long shardInstanceTimeoutInSeconds = 300;
|
||||
|
||||
private long maxAllowedReplicaTxCountDifference = 1000;
|
||||
|
||||
public ShardRegistryImpl()
|
||||
{
|
||||
}
|
||||
|
||||
public void init()
|
||||
{
|
||||
if(purgeOnInit && (transactionService != null))
|
||||
{
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback<Object>()
|
||||
{
|
||||
|
||||
@Override
|
||||
public Object execute() throws Throwable
|
||||
{
|
||||
purge();
|
||||
return null;
|
||||
}
|
||||
}, false, true);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void setAttributeService(AttributeService attributeService)
|
||||
{
|
||||
this.attributeService = attributeService;
|
||||
}
|
||||
|
||||
public void setShardStateCache(SimpleCache<ShardInstance, ShardState> shardStateCache)
|
||||
{
|
||||
this.shardStateCache = shardStateCache;
|
||||
}
|
||||
|
||||
public void setShardToGuidCache(SimpleCache<ShardInstance, String> shardToGuidCache)
|
||||
{
|
||||
this.shardToGuidCache = shardToGuidCache;
|
||||
}
|
||||
|
||||
public void setPurgeOnInit(boolean purgeOnInit)
|
||||
{
|
||||
this.purgeOnInit = purgeOnInit;
|
||||
}
|
||||
|
||||
public void setShardInstanceTimeoutInSeconds(int shardInstanceTimeoutInSeconds)
|
||||
{
|
||||
this.shardInstanceTimeoutInSeconds = shardInstanceTimeoutInSeconds;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @param maxAllowedReplicaTxCountDifference the maxAllowedReplicaTxCountDifference to set
|
||||
*/
|
||||
public void setMaxAllowedReplicaTxCountDifference(long maxAllowedReplicaTxCountDifference)
|
||||
{
|
||||
this.maxAllowedReplicaTxCountDifference = maxAllowedReplicaTxCountDifference;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param transactionService the transactionService to set
|
||||
*/
|
||||
public void setTransactionService(TransactionService transactionService)
|
||||
{
|
||||
this.transactionService = transactionService;
|
||||
}
|
||||
|
||||
public void purge()
|
||||
{
|
||||
ShardStateCollector shardStates = getPersistedShardStates();
|
||||
for(String guid : shardStates.shardGuids.values())
|
||||
{
|
||||
DeleteCallBack dcb = new DeleteCallBack(attributeService, guid);
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(dcb, false, true);
|
||||
}
|
||||
}
|
||||
|
||||
private static class DeleteCallBack implements RetryingTransactionCallback<Object>
|
||||
{
|
||||
AttributeService attributeService;
|
||||
|
||||
String guid;
|
||||
|
||||
DeleteCallBack(AttributeService attributeService, String guid)
|
||||
{
|
||||
this.attributeService = attributeService;
|
||||
this.guid = guid;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback#execute()
|
||||
*/
|
||||
@Override
|
||||
public Object execute() throws Throwable
|
||||
{
|
||||
attributeService.removeAttributes(SHARD_STATE_KEY, guid);
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param shardState
|
||||
*/
|
||||
public void registerShardState(final ShardState shardState)
|
||||
{
|
||||
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(new RetryingTransactionCallback<Object>()
|
||||
{
|
||||
|
||||
@Override
|
||||
public Object execute() throws Throwable
|
||||
{
|
||||
String guid = getPersistedShardStatusGuid(shardState.getShardInstance());
|
||||
attributeService.setAttribute(shardState, SHARD_STATE_KEY, guid);
|
||||
shardStateCache.put(shardState.getShardInstance(), shardState);
|
||||
knownFlocks.add(shardState.getShardInstance().getShard().getFloc());
|
||||
return null;
|
||||
}
|
||||
}, false, true);
|
||||
|
||||
|
||||
}
|
||||
|
||||
public List<ShardInstance> getIndexSlice(SearchParameters searchParameters)
|
||||
{
|
||||
Set<Floc> flocs = findFlocsFromKnown(searchParameters);
|
||||
if (flocs.size() == 0)
|
||||
{
|
||||
updateKnownFlocs();
|
||||
flocs = findFlocsFromKnown(searchParameters);
|
||||
}
|
||||
return selectShardInstancesForBestFlock(flocs);
|
||||
|
||||
}
|
||||
|
||||
private ArrayList<Pair<Floc, HashMap<Shard, HashSet<ShardState>>>> buildIndexes(Set<Floc> flocs, boolean excludeTimedOut)
|
||||
{
|
||||
ArrayList<Pair<Floc, HashMap<Shard, HashSet<ShardState>>>> indexes = new ArrayList<Pair<Floc, HashMap<Shard, HashSet<ShardState>>>> ();
|
||||
|
||||
for(Floc floc : flocs)
|
||||
{
|
||||
HashMap<Shard, HashSet<ShardState>> index = new HashMap<Shard, HashSet<ShardState>>();
|
||||
getShardStatesFromCache(floc, index, excludeTimedOut);
|
||||
if (index.size() < floc.getNumberOfShards())
|
||||
{
|
||||
updateShardStateCache(floc);
|
||||
getShardStatesFromCache(floc, index, excludeTimedOut);
|
||||
}
|
||||
indexes.add(new Pair<Floc, HashMap<Shard, HashSet<ShardState>>>(floc, index));
|
||||
}
|
||||
return indexes;
|
||||
}
|
||||
|
||||
|
||||
private List<ShardInstance> selectShardInstancesForBestFlock(Set<Floc> flocs)
|
||||
{
|
||||
ArrayList<Pair<Floc, HashMap<Shard, HashSet<ShardState>>>> indexes = buildIndexes(flocs, true);
|
||||
|
||||
Collections.sort(indexes, new FlocComparator());
|
||||
|
||||
Pair<Floc, HashMap<Shard, HashSet<ShardState>>> best = indexes.get(0);
|
||||
ArrayList<ShardInstance> slice = new ArrayList<ShardInstance>(best.getFirst().getNumberOfShards());
|
||||
for (Shard shard : best.getSecond().keySet())
|
||||
{
|
||||
// Only allow replicas within some fraction of the max TxId
|
||||
ShardState[] allowedInstances = getAllowedInstances(best.getSecond().get(shard));
|
||||
int position = random.nextInt(allowedInstances.length);
|
||||
ShardInstance instance = allowedInstances[position].getShardInstance();
|
||||
slice.add(instance);
|
||||
}
|
||||
return slice;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param hashSet
|
||||
* @return
|
||||
*/
|
||||
private ShardState[] getAllowedInstances(HashSet<ShardState> states)
|
||||
{
|
||||
HashSet<ShardState> allowed = new HashSet<ShardState>();
|
||||
|
||||
long maxTxId = 0;
|
||||
for(ShardState state :states)
|
||||
{
|
||||
maxTxId = Math.max(maxTxId, state.getLastIndexedTxId());
|
||||
}
|
||||
|
||||
for(ShardState state :states)
|
||||
{
|
||||
if( isShardAllowed(maxTxId, state))
|
||||
{
|
||||
allowed.add(state);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return allowed.toArray(new ShardState[] {});
|
||||
}
|
||||
|
||||
/**
|
||||
* @param maxTxId
|
||||
* @param state
|
||||
* @return
|
||||
*/
|
||||
private boolean isShardAllowed(long maxTxId, ShardState state)
|
||||
{
|
||||
return (maxTxId - state.getLastIndexedTxId()) <= maxAllowedReplicaTxCountDifference;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param floc
|
||||
*/
|
||||
private void updateShardStateCache(Floc floc)
|
||||
{
|
||||
ShardStateCollector shardStates = getPersistedShardStates();
|
||||
HashMap<Shard, HashSet<ShardState>> shards = shardStates.getIndexes().get(floc);
|
||||
if(shards != null)
|
||||
{
|
||||
for (HashSet<ShardState> set : shards.values())
|
||||
{
|
||||
for (ShardState instance : set)
|
||||
{
|
||||
shardStateCache.put(instance.getShardInstance(), instance);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param floc
|
||||
* @param index
|
||||
*/
|
||||
private void getShardStatesFromCache(Floc floc, HashMap<Shard, HashSet<ShardState>> index, boolean excludeTimedOut)
|
||||
{
|
||||
long now = System.currentTimeMillis();
|
||||
for (ShardInstance instance : shardStateCache.getKeys())
|
||||
{
|
||||
ShardState state = shardStateCache.get(instance);
|
||||
if(excludeTimedOut && isShardTimedOut(now, state) )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (instance.getShard().getFloc().equals(floc))
|
||||
{
|
||||
HashSet<ShardState> replicas = index.get(instance.getShard());
|
||||
if (replicas == null)
|
||||
{
|
||||
replicas = new HashSet<ShardState>();
|
||||
index.put(instance.getShard(), replicas);
|
||||
}
|
||||
replicas.add(state);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param now
|
||||
* @param state
|
||||
* @return
|
||||
*/
|
||||
private boolean isShardTimedOut(long now, ShardState state)
|
||||
{
|
||||
return (now - state.getLastUpdated()) > (shardInstanceTimeoutInSeconds * 1000);
|
||||
}
|
||||
|
||||
private void updateKnownFlocs()
|
||||
{
|
||||
ShardStateCollector shardStates = getPersistedShardStates();
|
||||
knownFlocks.addAll(shardStates.getIndexes().keySet());
|
||||
}
|
||||
|
||||
private HashSet<Floc> findFlocsFromKnown(SearchParameters searchParameters)
|
||||
{
|
||||
HashSet<Floc> flocs = new HashSet<Floc>();
|
||||
for (Floc floc : knownFlocks)
|
||||
{
|
||||
if (floc.getStoreRefs().containsAll(searchParameters.getStores()))
|
||||
{
|
||||
flocs.add(floc);
|
||||
}
|
||||
}
|
||||
return flocs;
|
||||
}
|
||||
|
||||
private Floc getBestFloc(Floc best, Floc floc)
|
||||
{
|
||||
if (best == null)
|
||||
{
|
||||
return floc;
|
||||
}
|
||||
|
||||
|
||||
if (best.getNumberOfShards() >= floc.getNumberOfShards())
|
||||
{
|
||||
return best;
|
||||
}
|
||||
else
|
||||
{
|
||||
return floc;
|
||||
}
|
||||
}
|
||||
|
||||
private String getPersistedShardStatusGuid(ShardInstance shardInstance)
|
||||
{
|
||||
String guid = shardToGuidCache.get(shardInstance);
|
||||
if (guid == null)
|
||||
{
|
||||
ShardStateCollector shardStates = getPersistedShardStates();
|
||||
for (ShardInstance instance : shardStates.getShardGuids().keySet())
|
||||
{
|
||||
if (!shardToGuidCache.contains(instance))
|
||||
{
|
||||
shardToGuidCache.put(instance, shardStates.getShardGuids().get(instance));
|
||||
}
|
||||
}
|
||||
guid = shardToGuidCache.get(shardInstance);
|
||||
}
|
||||
if(guid == null)
|
||||
{
|
||||
guid = GUID.generate();
|
||||
shardToGuidCache.put(shardInstance, guid);
|
||||
}
|
||||
return guid;
|
||||
}
|
||||
|
||||
private ShardStateCollector getPersistedShardStates()
|
||||
{
|
||||
ShardStateCollector shardStateCollector = new ShardStateCollector();
|
||||
attributeService.getAttributes(shardStateCollector, SHARD_STATE_KEY);
|
||||
knownFlocks.addAll(shardStateCollector.getIndexes().keySet());
|
||||
return shardStateCollector;
|
||||
}
|
||||
|
||||
protected static class ShardStateCollector implements AttributeQueryCallback
|
||||
{
|
||||
HashMap<ShardInstance, String> shardGuids = new HashMap<ShardInstance, String>();
|
||||
|
||||
HashMap<Floc, HashMap<Shard, HashSet<ShardState>>> indexes = new HashMap<Floc, HashMap<Shard, HashSet<ShardState>>>();
|
||||
|
||||
public ShardStateCollector()
|
||||
{
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean handleAttribute(Long id, Serializable value, Serializable[] keys)
|
||||
{
|
||||
if(value == null)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
String shardInstanceGuid = (String) keys[1];
|
||||
|
||||
ShardState shardState = (ShardState) value;
|
||||
|
||||
shardGuids.put(shardState.getShardInstance(), shardInstanceGuid);
|
||||
|
||||
HashMap<Shard, HashSet<ShardState>> shards = indexes.get(shardState.getShardInstance().getShard().getFloc());
|
||||
if (shards == null)
|
||||
{
|
||||
shards = new HashMap<Shard, HashSet<ShardState>>();
|
||||
indexes.put(shardState.getShardInstance().getShard().getFloc(), shards);
|
||||
}
|
||||
HashSet<ShardState> shardInstances = shards.get(shardState.getShardInstance().getShard());
|
||||
if (shardInstances == null)
|
||||
{
|
||||
shardInstances = new HashSet<ShardState>();
|
||||
shards.put(shardState.getShardInstance().getShard(), shardInstances);
|
||||
}
|
||||
shardInstances.add(shardState);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the shardGuids
|
||||
*/
|
||||
public HashMap<ShardInstance, String> getShardGuids()
|
||||
{
|
||||
return shardGuids;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the indexes
|
||||
*/
|
||||
public HashMap<Floc, HashMap<Shard, HashSet<ShardState>>> getIndexes()
|
||||
{
|
||||
return indexes;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.alfresco.repo.index.shard.ShardRegistry#getFlocs()
|
||||
*/
|
||||
@Override
|
||||
public HashMap<Floc, HashMap<Shard, HashSet<ShardState>>> getFlocs()
|
||||
{
|
||||
ShardStateCollector shardStatesCollector = getPersistedShardStates();
|
||||
HashMap<Floc, HashMap<Shard, HashSet<ShardState>>> flocs = shardStatesCollector.getIndexes();
|
||||
|
||||
long now = System.currentTimeMillis();
|
||||
for (Floc floc : flocs.keySet())
|
||||
{
|
||||
HashMap<Shard, HashSet<ShardState>> shards = flocs.get(floc);
|
||||
for(Shard shard : shards.keySet())
|
||||
{
|
||||
HashSet<ShardState> instances = shards.get(shard);
|
||||
|
||||
|
||||
long minTxId = Long.MAX_VALUE;
|
||||
long maxTxId = 0;
|
||||
for(ShardState state : instances)
|
||||
{
|
||||
minTxId = Math.min(minTxId, state.getLastIndexedTxId());
|
||||
maxTxId = Math.max(maxTxId, state.getLastIndexedTxId());
|
||||
}
|
||||
|
||||
for(ShardState state : instances)
|
||||
{
|
||||
if(isShardTimedOut(now, state))
|
||||
{
|
||||
state.getPropertyBag().put(INSTANCE_STATE, ReplicaState.SILENT.toString());
|
||||
}
|
||||
else if(isShardAllowed(maxTxId, state))
|
||||
{
|
||||
state.getPropertyBag().put(INSTANCE_STATE, ReplicaState.ACTIVE.toString());
|
||||
}
|
||||
else
|
||||
{
|
||||
state.getPropertyBag().put(INSTANCE_STATE, ReplicaState.LAGGING.toString());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
return flocs;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.alfresco.repo.index.shard.ShardRegistry#purgeAgedOutShards()
|
||||
*/
|
||||
@Override
|
||||
public void purgeAgedOutShards()
|
||||
{
|
||||
long now = System.currentTimeMillis();
|
||||
ShardStateCollector shardStates = getPersistedShardStates();
|
||||
|
||||
for(Floc floc : shardStates.indexes.keySet())
|
||||
{
|
||||
HashMap<Shard, HashSet<ShardState>> shards = shardStates.indexes.get(floc);
|
||||
for(Shard shard : shards.keySet())
|
||||
{
|
||||
HashSet<ShardState> states = shards.get(shard);
|
||||
for(ShardState state : states)
|
||||
{
|
||||
if(isShardTimedOut(now, state))
|
||||
{
|
||||
String guid = shardStates.shardGuids.get(state.getShardInstance());
|
||||
DeleteCallBack dcb = new DeleteCallBack(attributeService, guid);
|
||||
transactionService.getRetryingTransactionHelper().doInTransaction(dcb, false, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -140,6 +140,9 @@ public class ChildApplicationContextFactory extends AbstractPropertyBackedBean i
|
||||
|
||||
/** The suffix to the context file search path. */
|
||||
private static final String CONTEXT_SUFFIX = "/*-context.xml";
|
||||
|
||||
/** The suffix to the enterprise context file search path. */
|
||||
private static final String ENTERPRISE_CONTEXT_SUFFIX = "/*-enterprise-context.xml";
|
||||
|
||||
/** The prefix to default file search paths. */
|
||||
private static final String CLASSPATH_PREFIX = "classpath*:alfresco/subsystems/";
|
||||
@@ -448,6 +451,8 @@ public class ChildApplicationContextFactory extends AbstractPropertyBackedBean i
|
||||
{
|
||||
ChildApplicationContextFactory.CLASSPATH_PREFIX + getCategory() + '/' + getTypeName()
|
||||
+ ChildApplicationContextFactory.CONTEXT_SUFFIX,
|
||||
ChildApplicationContextFactory.CLASSPATH_PREFIX + getCategory() + '/' + getTypeName()
|
||||
+ ChildApplicationContextFactory.ENTERPRISE_CONTEXT_SUFFIX,
|
||||
ChildApplicationContextFactory.EXTENSION_CLASSPATH_PREFIX
|
||||
+ getCategory()
|
||||
+ '/'
|
||||
|
@@ -86,12 +86,17 @@ import org.json.JSONTokener;
|
||||
import org.springframework.beans.BeansException;
|
||||
import org.springframework.beans.factory.BeanFactory;
|
||||
import org.springframework.beans.factory.BeanFactoryAware;
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
|
||||
import org.springframework.beans.factory.config.ListFactoryBean;
|
||||
import org.springframework.context.ApplicationListener;
|
||||
import org.springframework.context.event.ContextRefreshedEvent;
|
||||
import org.springframework.extensions.surf.util.I18NUtil;
|
||||
|
||||
/**
|
||||
* @author Andy
|
||||
*/
|
||||
public class SolrQueryHTTPClient implements BeanFactoryAware
|
||||
public class SolrQueryHTTPClient implements BeanFactoryAware, InitializingBean
|
||||
{
|
||||
static Log s_logger = LogFactory.getLog(SolrQueryHTTPClient.class);
|
||||
|
||||
@@ -144,10 +149,6 @@ public class SolrQueryHTTPClient implements BeanFactoryAware
|
||||
PropertyCheck.mandatory(this, "StoreMappings", storeMappings);
|
||||
PropertyCheck.mandatory(this, "RepositoryState", repositoryState);
|
||||
|
||||
for(SolrStoreMapping mapping : storeMappings)
|
||||
{
|
||||
mappingLookup.put(mapping.getStoreRef(), new ExplicitSolrStoreMappingWrapper(mapping, beanFactory));
|
||||
}
|
||||
}
|
||||
|
||||
public void setAlternativeDictionary(String alternativeDictionary)
|
||||
@@ -781,7 +782,7 @@ public class SolrQueryHTTPClient implements BeanFactoryAware
|
||||
|
||||
private SolrStoreMappingWrapper extractMapping(StoreRef store)
|
||||
{
|
||||
if(useDynamicShardRegistration)
|
||||
if((shardRegistry != null) && useDynamicShardRegistration)
|
||||
{
|
||||
SearchParameters sp = new SearchParameters();
|
||||
sp.addStore(store);
|
||||
@@ -820,4 +821,17 @@ public class SolrQueryHTTPClient implements BeanFactoryAware
|
||||
this.beanFactory = beanFactory;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet()
|
||||
*/
|
||||
@Override
|
||||
public void afterPropertiesSet() throws Exception
|
||||
{
|
||||
mappingLookup.clear();
|
||||
for(SolrStoreMapping mapping : storeMappings)
|
||||
{
|
||||
mappingLookup.put(mapping.getStoreRef(), new ExplicitSolrStoreMappingWrapper(mapping, beanFactory));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -43,7 +43,6 @@ import org.alfresco.repo.domain.permissions.AclDAO;
|
||||
import org.alfresco.repo.domain.qname.QNameDAO;
|
||||
import org.alfresco.repo.domain.solr.SOLRDAO;
|
||||
import org.alfresco.repo.index.shard.ShardRegistry;
|
||||
import org.alfresco.repo.index.shard.ShardRegistryImpl;
|
||||
import org.alfresco.repo.index.shard.ShardState;
|
||||
import org.alfresco.repo.search.AspectIndexFilter;
|
||||
import org.alfresco.repo.search.TypeIndexFilter;
|
||||
|
Reference in New Issue
Block a user