• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TombstoneOverwhelmingException类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.cassandra.db.filter.TombstoneOverwhelmingException的典型用法代码示例。如果您正苦于以下问题:Java TombstoneOverwhelmingException类的具体用法?Java TombstoneOverwhelmingException怎么用?Java TombstoneOverwhelmingException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



TombstoneOverwhelmingException类属于org.apache.cassandra.db.filter包,在下文中一共展示了TombstoneOverwhelmingException类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: doVerb

import org.apache.cassandra.db.filter.TombstoneOverwhelmingException; //导入依赖的package包/类
public void doVerb(MessageIn<AbstractRangeCommand> message, int id)
{
    try
    {
        if (StorageService.instance.isBootstrapMode())
        {
            /* Don't service reads! */
            throw new RuntimeException("Cannot service reads while bootstrapping!");
        }
        RangeSliceReply reply = new RangeSliceReply(message.payload.executeLocally());
        Tracing.trace("Enqueuing response to {}", message.from);
        MessagingService.instance().sendReply(reply.createMessage(), id, message.from);
    }
    catch (TombstoneOverwhelmingException e)
    {
        // error already logged.  Drop the request
    }
    catch (Exception ex)
    {
        throw new RuntimeException(ex);
    }
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:23,代码来源:RangeSliceVerbHandler.java


示例2: doVerb

import org.apache.cassandra.db.filter.TombstoneOverwhelmingException; //导入依赖的package包/类
public void doVerb(MessageIn<ReadCommand> message, int id)
{
    if (StorageService.instance.isBootstrapMode())
    {
        throw new RuntimeException("Cannot service reads while bootstrapping!");
    }

    ReadCommand command = message.payload;
    Keyspace keyspace = Keyspace.open(command.ksName);
    Row row;
    try
    {
        row = command.getRow(keyspace);
    }
    catch (TombstoneOverwhelmingException e)
    {
        // error already logged.  Drop the request
        return;
    }

    MessageOut<ReadResponse> reply = new MessageOut<ReadResponse>(MessagingService.Verb.REQUEST_RESPONSE,
                                                                  getResponse(command, row),
                                                                  ReadResponse.serializer);
    Tracing.trace("Enqueuing response to {}", message.from);
    MessagingService.instance().sendReply(reply, id, message.from);
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:27,代码来源:ReadVerbHandler.java


示例3: runMayThrow

import org.apache.cassandra.db.filter.TombstoneOverwhelmingException; //导入依赖的package包/类
protected void runMayThrow()
{
    try
    {
        try (ReadOrderGroup orderGroup = command.startOrderGroup(); UnfilteredPartitionIterator iterator = command.executeLocally(orderGroup))
        {
            handler.response(command.createResponse(iterator));
        }
        MessagingService.instance().addLatency(FBUtilities.getBroadcastAddress(), TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - start));
    }
    catch (Throwable t)
    {
        handler.onFailure(FBUtilities.getBroadcastAddress());
        if (t instanceof TombstoneOverwhelmingException)
            logger.error(t.getMessage());
        else
            throw t;
    }
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:20,代码来源:StorageProxy.java


示例4: testBeyondThresholdSelect

import org.apache.cassandra.db.filter.TombstoneOverwhelmingException; //导入依赖的package包/类
@Test
public void testBeyondThresholdSelect() throws Throwable
{
    createTable("CREATE TABLE %s (a text, b text, c text, PRIMARY KEY (a, b));");

    // insert exactly the amount of tombstones that *SHOULD* trigger an exception
    for (int i = 0; i < THRESHOLD + 1; i++)
        execute("INSERT INTO %s (a, b, c) VALUES ('key', 'column" + i + "', null);");

    try
    {
        execute("SELECT * FROM %s WHERE a = 'key';");
        fail("SELECT with tombstones beyond the threshold should have failed, but hasn't");
    }
    catch (Throwable e)
    {
        String error = "Expected exception instanceof TombstoneOverwhelmingException instead got "
                      + System.lineSeparator()
                      + Throwables.getStackTraceAsString(e);
        assertTrue(error, e instanceof TombstoneOverwhelmingException);
    }
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:23,代码来源:TombstonesTest.java


示例5: run

import org.apache.cassandra.db.filter.TombstoneOverwhelmingException; //导入依赖的package包/类
public void run()
{
    MessagingService.Verb verb = message.verb;
    if (MessagingService.DROPPABLE_VERBS.contains(verb)
        && System.currentTimeMillis() > constructionTime + message.getTimeout())
    {
        MessagingService.instance().incrementDroppedMessages(verb, isCrossNodeTimestamp);
        return;
    }

    IVerbHandler verbHandler = MessagingService.instance().getVerbHandler(verb);
    if (verbHandler == null)
    {
        logger.trace("Unknown verb {}", verb);
        return;
    }

    try
    {
        verbHandler.doVerb(message, id);
    }
    catch (IOException ioe)
    {
        handleFailure(ioe);
        throw new RuntimeException(ioe);
    }
    catch (TombstoneOverwhelmingException | IndexNotAvailableException e)
    {
        handleFailure(e);
        logger.error(e.getMessage());
    }
    catch (Throwable t)
    {
        handleFailure(t);
        throw t;
    }

    if (GOSSIP_VERBS.contains(message.verb))
        Gossiper.instance.setLastProcessedMessageAt(constructionTime);
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:41,代码来源:MessageDeliveryTask.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java NBTTagInt类代码示例发布时间:2022-05-22
下一篇:
Java AsyncServerSocket类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap