本文整理汇总了Java中org.apache.cassandra.service.StorageProxy.applyCounterMutationOnLeader方法的典型用法代码示例。如果您正苦于以下问题:Java StorageProxy.applyCounterMutationOnLeader方法的具体用法?Java StorageProxy.applyCounterMutationOnLeader怎么用?Java StorageProxy.applyCounterMutationOnLeader使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.cassandra.service.StorageProxy
的用法示例。
在下文中一共展示了StorageProxy.applyCounterMutationOnLeader方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doVerb
import org.apache.cassandra.service.StorageProxy; //导入方法依赖的package包/类
public void doVerb(final MessageIn<CounterMutation> message, final int id)
{
final CounterMutation cm = message.payload;
logger.trace("Applying forwarded {}", cm);
String localDataCenter = DatabaseDescriptor.getEndpointSnitch().getDatacenter(FBUtilities.getBroadcastAddress());
// We should not wait for the result of the write in this thread,
// otherwise we could have a distributed deadlock between replicas
// running this VerbHandler (see #4578).
// Instead, we use a callback to send the response. Note that the callback
// will not be called if the request timeout, but this is ok
// because the coordinator of the counter mutation will timeout on
// it's own in that case.
StorageProxy.applyCounterMutationOnLeader(cm, localDataCenter, new Runnable()
{
public void run()
{
MessagingService.instance().sendReply(WriteResponse.createMessage(), id, message.from);
}
});
}
示例2: doVerb
import org.apache.cassandra.service.StorageProxy; //导入方法依赖的package包/类
public void doVerb(final MessageIn<CounterMutation> message, final int id)
{
try
{
final CounterMutation cm = message.payload;
logger.debug("Applying forwarded {}", cm);
String localDataCenter = DatabaseDescriptor.getEndpointSnitch().getDatacenter(FBUtilities.getBroadcastAddress());
// We should not wait for the result of the write in this thread,
// otherwise we could have a distributed deadlock between replicas
// running this VerbHandler (see #4578).
// Instead, we use a callback to send the response. Note that the callback
// will not be called if the request timeout, but this is ok
// because the coordinator of the counter mutation will timeout on
// it's own in that case.
StorageProxy.applyCounterMutationOnLeader(cm, localDataCenter, new Runnable()
{
public void run()
{
MessagingService.instance().sendReply(new WriteResponse().createMessage(), id, message.from);
}
});
}
catch (RequestExecutionException e)
{
// The coordinator will timeout on it's own so ignore
logger.debug("counter error", e);
}
}
示例3: doVerb
import org.apache.cassandra.service.StorageProxy; //导入方法依赖的package包/类
public void doVerb(final MessageIn<CounterMutation> message, final int id)
{
try
{
final CounterMutation cm = message.payload;
if (logger.isDebugEnabled())
logger.debug("Applying forwarded {}", cm);
String localDataCenter = DatabaseDescriptor.getEndpointSnitch().getDatacenter(FBUtilities.getBroadcastAddress());
// We should not wait for the result of the write in this thread,
// otherwise we could have a distributed deadlock between replicas
// running this VerbHandler (see #4578).
// Instead, we use a callback to send the response. Note that the callback
// will not be called if the request timeout, but this is ok
// because the coordinator of the counter mutation will timeout on
// it's own in that case.
StorageProxy.applyCounterMutationOnLeader(cm, localDataCenter, new Runnable(){
public void run()
{
WriteResponse response = new WriteResponse();
MessagingService.instance().sendReply(response.createMessage(), id, message.from);
}
});
}
catch (RequestExecutionException e)
{
// The coordinator will timeout on it's own so ignore
logger.debug("counter error", e);
}
}