blob: 6a58de7d9f0d75a0c124eb3c0cf1d11f6d6bcdcf [file] [log] [blame]
/*
* 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.ignite.client;
import static org.apache.ignite.client.AbstractClientTest.getClient;
import static org.apache.ignite.client.AbstractClientTest.getClusterNodes;
import static org.apache.ignite.compute.JobState.COMPLETED;
import static org.apache.ignite.compute.JobState.FAILED;
import static org.apache.ignite.internal.testframework.matchers.CompletableFutureExceptionMatcher.willThrowFast;
import static org.apache.ignite.internal.testframework.matchers.CompletableFutureMatcher.willBe;
import static org.apache.ignite.internal.testframework.matchers.JobStatusMatcher.jobStatusWithState;
import static org.apache.ignite.internal.util.IgniteUtils.closeAll;
import static org.apache.ignite.lang.ErrorGroups.Table.TABLE_NOT_FOUND_ERR;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.function.Function;
import org.apache.ignite.client.fakes.FakeCompute;
import org.apache.ignite.client.fakes.FakeIgnite;
import org.apache.ignite.client.fakes.FakeIgniteTables;
import org.apache.ignite.compute.DeploymentUnit;
import org.apache.ignite.compute.JobExecution;
import org.apache.ignite.compute.version.Version;
import org.apache.ignite.internal.client.table.ClientTable;
import org.apache.ignite.internal.testframework.BaseIgniteAbstractTest;
import org.apache.ignite.internal.testframework.IgniteTestUtils;
import org.apache.ignite.lang.IgniteException;
import org.apache.ignite.lang.TableNotFoundException;
import org.apache.ignite.table.Tuple;
import org.apache.ignite.table.mapper.Mapper;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
/**
* Compute tests.
*/
@SuppressWarnings("AssignmentToStaticFieldFromInstanceMethod")
public class ClientComputeTest extends BaseIgniteAbstractTest {
private static final String TABLE_NAME = "tbl1";
private FakeIgnite ignite;
private TestServer server1;
private TestServer server2;
private TestServer server3;
@AfterEach
void tearDown() throws Exception {
closeAll(server1, server2, server3);
FakeCompute.future = null;
}
@Test
public void testClientSendsComputeJobToTargetNodeWhenDirectConnectionExists() throws Exception {
initServers(reqId -> false);
// Provide same node multiple times to check this case as well.
try (var client = getClient(server1, server2, server3, server1, server2)) {
assertTrue(IgniteTestUtils.waitForCondition(() -> client.connections().size() == 3, 3000));
JobExecution<String> execution1 = client.compute().submit(getClusterNodes("s1"), List.of(), "job");
JobExecution<String> execution2 = client.compute().submit(getClusterNodes("s2"), List.of(), "job");
JobExecution<String> execution3 = client.compute().submit(getClusterNodes("s3"), List.of(), "job");
assertThat(execution1.resultAsync(), willBe("s1"));
assertThat(execution2.resultAsync(), willBe("s2"));
assertThat(execution3.resultAsync(), willBe("s3"));
assertThat(execution1.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
assertThat(execution2.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
assertThat(execution3.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
}
}
@Test
public void testClientSendsComputeJobToDefaultNodeWhenDirectConnectionToTargetDoesNotExist() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server3)) {
JobExecution<String> execution1 = client.compute().submit(getClusterNodes("s1"), List.of(), "job");
JobExecution<String> execution2 = client.compute().submit(getClusterNodes("s2"), List.of(), "job");
JobExecution<String> execution3 = client.compute().submit(getClusterNodes("s3"), List.of(), "job");
assertThat(execution1.resultAsync(), willBe("s3"));
assertThat(execution2.resultAsync(), willBe("s3"));
assertThat(execution3.resultAsync(), willBe("s3"));
assertThat(execution1.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
assertThat(execution2.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
assertThat(execution3.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
}
}
@Test
public void testClientRetriesComputeJobOnPrimaryAndDefaultNodes() throws Exception {
initServers(reqId -> reqId % 3 == 0);
try (var client = getClient(server3)) {
for (int i = 0; i < 100; i++) {
var nodeId = i % 3 + 1;
var nodeName = "s" + nodeId;
CompletableFuture<String> fut = client.compute().executeAsync(getClusterNodes(nodeName), List.of(), "job");
assertThat(fut, willBe("s3"));
}
}
}
@Test
public void testExecuteColocated() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server2)) {
Tuple key = Tuple.create().set("key", "k");
String res1 = client.compute().executeColocated(TABLE_NAME, key, List.of(), "job");
String res2 = client.compute().executeColocated(TABLE_NAME, 1L, Mapper.of(Long.class), List.of(), "job");
assertEquals("s2", res1);
assertEquals("s2", res2);
}
}
@Test
public void testExecuteColocatedAsync() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server2)) {
Tuple key = Tuple.create().set("key", "k");
JobExecution<String> execution1 = client.compute()
.submitColocated(TABLE_NAME, key, List.of(), "job");
JobExecution<String> execution2 = client.compute()
.submitColocated(TABLE_NAME, 1L, Mapper.of(Long.class), List.of(), "job");
assertThat(execution1.resultAsync(), willBe("s2"));
assertThat(execution2.resultAsync(), willBe("s2"));
assertThat(execution1.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
assertThat(execution2.statusAsync(), willBe(jobStatusWithState(COMPLETED)));
}
}
@Test
public void testExecuteColocatedThrowsTableNotFoundExceptionWhenTableDoesNotExist() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server1)) {
Tuple key = Tuple.create().set("key", "k");
var ex = assertThrows(CompletionException.class,
() -> client.compute().executeColocatedAsync("bad-tbl", key, List.of(), "job").join());
var tblNotFoundEx = (TableNotFoundException) ex.getCause();
assertThat(tblNotFoundEx.getMessage(), containsString("The table does not exist [name=\"PUBLIC\".\"bad-tbl\"]"));
assertEquals(TABLE_NOT_FOUND_ERR, tblNotFoundEx.code());
}
}
@ParameterizedTest
@ValueSource(booleans = {true, false})
void testExecuteColocatedUpdatesTableCacheOnTableDrop(boolean forceLoadAssignment) throws Exception {
String tableName = "drop-me";
initServers(reqId -> false);
((FakeIgniteTables) ignite.tables()).createTable(tableName);
try (var client = getClient(server3)) {
Tuple key = Tuple.create().set("key", "k");
String res1 = client.compute().executeColocated(tableName, key, List.of(), "job");
// Drop table and create a new one with a different ID.
((FakeIgniteTables) ignite.tables()).dropTable(tableName);
((FakeIgniteTables) ignite.tables()).createTable(tableName);
if (forceLoadAssignment) {
Map<String, ClientTable> tables = IgniteTestUtils.getFieldValue(client.compute(), "tableCache");
ClientTable table = tables.get(tableName);
assertNotNull(table);
IgniteTestUtils.setFieldValue(table, "partitionAssignment", null);
}
String res2 = client.compute().executeColocated(tableName, 1L, Mapper.of(Long.class), List.of(), "job");
assertEquals("s3", res1);
assertEquals("s3", res2);
}
}
@Test
void testUnitsPropagation() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server1)) {
assertThat(getUnits(client, List.of()), is(""));
assertThat(getUnits(client, List.of(new DeploymentUnit("u1", "1.2.3"))), is("u1:1.2.3"));
assertThat(getUnits(client, List.of(new DeploymentUnit("u", "LaTeSt"))), is("u:latest"));
assertThat(
getUnits(client, List.of(new DeploymentUnit("u1", "1.2.3"), new DeploymentUnit("unit2", Version.LATEST))),
is("u1:1.2.3,unit2:latest")
);
}
}
private static String getUnits(IgniteClient client, List<DeploymentUnit> units) {
return client.compute().execute(getClusterNodes("s1"), units, FakeCompute.GET_UNITS);
}
@Test
void testExceptionInJob() throws Exception {
initServers(reqId -> false);
try (var client = getClient(server1)) {
FakeCompute.future = CompletableFuture.failedFuture(new RuntimeException("job failed"));
JobExecution<String> execution = client.compute().submit(getClusterNodes("s1"), List.of(), "job");
assertThat(execution.resultAsync(), willThrowFast(IgniteException.class));
assertThat(execution.statusAsync(), willBe(jobStatusWithState(FAILED)));
}
}
private void initServers(Function<Integer, Boolean> shouldDropConnection) {
ignite = new FakeIgnite();
((FakeIgniteTables) ignite.tables()).createTable(TABLE_NAME);
var clusterId = UUID.randomUUID();
server1 = new TestServer(0, ignite, shouldDropConnection, null, "s1", clusterId, null, null);
server2 = new TestServer(0, ignite, shouldDropConnection, null, "s2", clusterId, null, null);
server3 = new TestServer(0, ignite, shouldDropConnection, null, "s3", clusterId, null, null);
}
}