当前位置: 首页>>代码示例>>Java>>正文


Java StorageProxy.applyCounterMutationOnLeader方法代码示例

本文整理汇总了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);
        }
    });
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:22,代码来源:CounterMutationVerbHandler.java

示例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);
    }
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:30,代码来源:CounterMutationVerbHandler.java

示例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);
    }
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:31,代码来源:CounterMutationVerbHandler.java


注:本文中的org.apache.cassandra.service.StorageProxy.applyCounterMutationOnLeader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。