mirror of https://github.com/apache/cassandra
228 lines
9.5 KiB
Java
228 lines
9.5 KiB
Java
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.apache.cassandra.db;
|
|
|
|
import java.util.concurrent.ExecutionException;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.concurrent.TimeoutException;
|
|
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
import org.junit.Before;
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
|
|
import org.apache.cassandra.SchemaLoader;
|
|
import org.apache.cassandra.ServerTestUtils;
|
|
import org.apache.cassandra.Util;
|
|
import org.apache.cassandra.db.partitions.PartitionUpdate;
|
|
import org.apache.cassandra.db.rows.BTreeRow;
|
|
import org.apache.cassandra.db.rows.BufferCell;
|
|
import org.apache.cassandra.db.rows.Cell;
|
|
import org.apache.cassandra.db.rows.Row;
|
|
import org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper;
|
|
import org.apache.cassandra.exceptions.InvalidRoutingException;
|
|
import org.apache.cassandra.exceptions.RequestFailure;
|
|
import org.apache.cassandra.metrics.StorageMetrics;
|
|
import org.apache.cassandra.net.IVerbHandler;
|
|
import org.apache.cassandra.net.Message;
|
|
import org.apache.cassandra.net.MessagingService;
|
|
import org.apache.cassandra.net.Verb;
|
|
import org.apache.cassandra.schema.ColumnMetadata;
|
|
import org.apache.cassandra.schema.Schema;
|
|
import org.apache.cassandra.schema.TableMetadata;
|
|
import org.apache.cassandra.service.StorageService;
|
|
import org.apache.cassandra.tcm.ClusterMetadata;
|
|
import org.apache.cassandra.tcm.membership.NodeState;
|
|
import org.apache.cassandra.utils.FBUtilities;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.fail;
|
|
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.MessageDelivery;
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.broadcastAddress;
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.bytesToken;
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.node1;
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.randomInt;
|
|
import static org.apache.cassandra.distributed.test.log.ClusterMetadataTestHelper.registerOutgoingMessageSink;
|
|
import static org.apache.cassandra.utils.ByteBufferUtil.bytes;
|
|
|
|
public class MutationVerbHandlerOutOfRangeTest
|
|
{
|
|
private static final String TEST_NAME = "mutation_vh_test_";
|
|
private static final String KEYSPACE = TEST_NAME + "cql_keyspace";
|
|
private static final String TABLE = "table1";
|
|
|
|
private ColumnFamilyStore cfs;
|
|
private long startingTotalMetricCount;
|
|
private long startingKeyspaceMetricCount;
|
|
|
|
@BeforeClass
|
|
public static void init() throws Exception
|
|
{
|
|
ServerTestUtils.prepareServerNoRegister();
|
|
SchemaLoader.schemaDefinition(TEST_NAME);
|
|
ServerTestUtils.markCMS();
|
|
StorageService.instance.unsafeSetInitialized();
|
|
}
|
|
|
|
@Before
|
|
public void setup() throws Exception
|
|
{
|
|
ServerTestUtils.resetCMS();
|
|
ClusterMetadataTestHelper.addEndpoint(broadcastAddress, bytesToken(100));
|
|
ClusterMetadataTestHelper.addEndpoint(node1, bytesToken(0));
|
|
|
|
MessagingService.instance().inboundSink.clear();
|
|
MessagingService.instance().outboundSink.clear();
|
|
|
|
cfs = Keyspace.open(KEYSPACE).getColumnFamilyStore(TABLE);
|
|
startingKeyspaceMetricCount = keyspaceMetricValue(cfs);
|
|
startingTotalMetricCount = StorageMetrics.totalOpsForInvalidToken.getCount();
|
|
}
|
|
|
|
@Test
|
|
public void acceptMutationForNaturalEndpoint() throws Exception
|
|
{
|
|
acceptMutationForNaturalEndpoint(new MutationVerbHandler());
|
|
}
|
|
|
|
@Test
|
|
public void acceptReadRepairForNaturalEndpoint() throws Exception
|
|
{
|
|
acceptMutationForNaturalEndpoint(new ReadRepairVerbHandler());
|
|
}
|
|
|
|
private void acceptMutationForNaturalEndpoint(IVerbHandler<Mutation> handler) throws Exception
|
|
{
|
|
ListenableFuture<MessageDelivery> messageSink = registerOutgoingMessageSink();
|
|
int messageId = randomInt();
|
|
int value = randomInt();
|
|
int key = 50;
|
|
Mutation mutation = mutation(key, value);
|
|
handler.doVerb(Message.builder(Verb.MUTATION_REQ, mutation).from(node1).withId(messageId).build());
|
|
getAndVerifyResponse(messageSink, messageId, key, value, false);
|
|
}
|
|
|
|
@Test
|
|
public void acceptMutationForPendingEndpoint() throws Exception
|
|
{
|
|
acceptMutationForPendingEndpoint(new MutationVerbHandler());
|
|
}
|
|
|
|
@Test
|
|
public void acceptReadRepairForPendingEndpoint() throws Exception
|
|
{
|
|
acceptMutationForPendingEndpoint(new ReadRepairVerbHandler());
|
|
}
|
|
|
|
private void acceptMutationForPendingEndpoint(IVerbHandler<Mutation> handler ) throws Exception
|
|
{
|
|
// reset ClusterMetadata then join the remote node and partially
|
|
// join the localhost one to emulate pending ranges
|
|
ServerTestUtils.resetCMS();
|
|
ClusterMetadataTestHelper.addEndpoint(node1, bytesToken(0));
|
|
ClusterMetadataTestHelper.register(broadcastAddress);
|
|
ClusterMetadataTestHelper.joinPartially(broadcastAddress, bytesToken(100));
|
|
assertEquals(NodeState.BOOTSTRAPPING, ClusterMetadata.current().directory.peerState(broadcastAddress));
|
|
|
|
ListenableFuture<MessageDelivery> messageSink = registerOutgoingMessageSink();
|
|
int messageId = randomInt();
|
|
int value = randomInt();
|
|
int key = 50;
|
|
Mutation mutation = mutation(key, value);
|
|
handler.doVerb(Message.builder(Verb.MUTATION_REQ, mutation).from(node1).withId(messageId).build());
|
|
getAndVerifyResponse(messageSink, messageId, key, value, false);
|
|
}
|
|
|
|
@Test
|
|
public void rejectMutationForTokenOutOfRange() throws Exception
|
|
{
|
|
rejectMutationForTokenOutOfRange(new MutationVerbHandler());
|
|
}
|
|
|
|
@Test
|
|
public void rejectReadRepairForTokenOutOfRange() throws Exception
|
|
{
|
|
rejectMutationForTokenOutOfRange(new ReadRepairVerbHandler());
|
|
}
|
|
|
|
private void rejectMutationForTokenOutOfRange(IVerbHandler<Mutation> handler) throws Exception
|
|
{
|
|
// reject a mutation for a token the node neither owns nor is pending
|
|
int messageId = randomInt();
|
|
int value = randomInt();
|
|
int key = 200;
|
|
Mutation mutation = mutation(key, value);
|
|
try
|
|
{
|
|
// note that the failure response is now sent by the InboundSink, so we can't use getAndVerifyResponse
|
|
handler.doVerb(Message.builder(Verb.MUTATION_REQ, mutation).from(node1).withId(messageId).build());
|
|
fail("mutation verb handler now throws exception");
|
|
}
|
|
catch (InvalidRoutingException ignore)
|
|
{
|
|
assertEquals(startingTotalMetricCount + 1, StorageMetrics.totalOpsForInvalidToken.getCount());
|
|
assertEquals(startingKeyspaceMetricCount + 1, keyspaceMetricValue(cfs));
|
|
}
|
|
}
|
|
|
|
static <V> int toInt(Cell<V> cell)
|
|
{
|
|
return cell.accessor().toInt(cell.value());
|
|
}
|
|
|
|
private void getAndVerifyResponse(ListenableFuture<MessageDelivery> messageSink,
|
|
int messageId,
|
|
int key,
|
|
int value,
|
|
boolean isOutOfRange) throws InterruptedException, ExecutionException, TimeoutException
|
|
{
|
|
MessageDelivery response = messageSink.get(100, TimeUnit.MILLISECONDS);
|
|
assertEquals(isOutOfRange ? Verb.FAILURE_RSP : Verb.MUTATION_RSP, response.message.verb());
|
|
assertEquals(broadcastAddress, response.message.from());
|
|
assertEquals(isOutOfRange, response.message.payload instanceof RequestFailure);
|
|
assertEquals(messageId, response.message.id());
|
|
assertEquals(node1, response.to);
|
|
assertEquals(startingTotalMetricCount + (isOutOfRange ? 1 : 0), StorageMetrics.totalOpsForInvalidToken.getCount());
|
|
assertEquals(startingKeyspaceMetricCount + (isOutOfRange ? 1 : 0), keyspaceMetricValue(cfs));
|
|
if (!isOutOfRange)
|
|
{
|
|
ReadCommand read = Util.cmd(cfs, bytes(key)).build();
|
|
ColumnMetadata col = cfs.metadata().getColumn(bytes("v1"));
|
|
assertEquals(value, toInt(Util.getOnlyRow(read).getCell(col)));
|
|
}
|
|
}
|
|
|
|
private static long keyspaceMetricValue(ColumnFamilyStore cfs)
|
|
{
|
|
return cfs.keyspace.metric.outOfRangeTokenWrites.getCount();
|
|
}
|
|
|
|
private Mutation mutation(int key, int columnValue)
|
|
{
|
|
TableMetadata cfm = Schema.instance.getTableMetadata(KEYSPACE, TABLE);
|
|
DecoratedKey dk = cfs.decorateKey(bytes(key));
|
|
ColumnMetadata col = cfs.metadata().getColumn(bytes("v1"));
|
|
Cell cell = BufferCell.live(col, FBUtilities.timestampMicros(), bytes(columnValue));
|
|
Row row = BTreeRow.singleCellRow(Clustering.EMPTY, cell);
|
|
PartitionUpdate update = PartitionUpdate.singleRowUpdate(cfm, dk, row);
|
|
return new Mutation(update);
|
|
}
|
|
}
|