本文整理汇总了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);
}
}
示例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);
}
示例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;
}
}
示例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);
}
}
示例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);
}