/* * Licensed to Crate under one or more contributor license agreements. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. Crate 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. * * However, if you have executed another commercial license agreement * with Crate these terms will supersede the license and you may use the * software solely pursuant to the terms of the relevant commercial * agreement. */ package io.crate.integrationtests; import io.crate.testing.TestingHelpers; import io.crate.testing.UseJdbc; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.test.ESIntegTestCase; import org.junit.After; import org.junit.Test; import java.io.IOException; import java.nio.file.Path; import static org.hamcrest.Matchers.is; @ESIntegTestCase.ClusterScope(numDataNodes = 0, numClientNodes = 0) @UseJdbc public class SysShardMinLuceneVersionTest extends SQLTransportIntegrationTest { private void startUpNodeWithDataDir(String dataPath) throws IOException { Path zippedIndexDir = getDataPath(dataPath); Settings nodeSettings = prepareBackwardsDataDir(zippedIndexDir); internalCluster().startNode(nodeSettings); ensureYellow(); } @After public void shutdown() throws IOException { internalCluster().stopCurrentMasterNode(); } @Test public void testMinLuceneVersion() throws Exception { startUpNodeWithDataDir("/indices/data_home/cratedata_lucene_min_version.zip"); execute("select table_name, routing_state, min_lucene_version, count(*) from sys.shards " + "where schema_name IN ('doc', 'blob') " + "group by table_name, routing_state, min_lucene_version order by 1, 2, 3"); assertThat(TestingHelpers.printedTable(response.rows()), is("test_blob_no_upgrade_required| STARTED| 6.2.1| 2\n" + "test_blob_no_upgrade_required| UNASSIGNED| NULL| 2\n" + "test_blob_upgrade_required| STARTED| 6.2.1| 2\n" + "test_blob_upgrade_required| UNASSIGNED| NULL| 2\n" + "test_no_upgrade_required| STARTED| 6.2.1| 2\n" + "test_no_upgrade_required| UNASSIGNED| NULL| 2\n" + "test_no_upgrade_required_parted| STARTED| 6.2.1| 10\n" + "test_no_upgrade_required_parted| UNASSIGNED| NULL| 10\n" + "test_upgrade_required| STARTED| 5.5.2| 2\n" + "test_upgrade_required| UNASSIGNED| NULL| 2\n" + "test_upgrade_required_parted| STARTED| 5.5.2| 5\n" + "test_upgrade_required_parted| STARTED| 6.2.1| 5\n" + "test_upgrade_required_parted| UNASSIGNED| NULL| 10\n")); } @Test public void testUpgradeSegments() throws Exception { startUpNodeWithDataDir("/indices/data_home/cratedata_lucene_min_version.zip"); execute("select table_name, routing_state, min_lucene_version, count(*) from sys.shards " + "where table_name IN " + "('test_upgrade_required', 'test_upgrade_required_parted', 'test_blob_upgrade_required') AND " + "routing_state = 'STARTED' AND min_lucene_version <> '6.2.1' " + "group by table_name, routing_state, min_lucene_version order by 1, 2, 3"); assertThat(TestingHelpers.printedTable(response.rows()), is("test_upgrade_required| STARTED| 5.5.2| 2\n" + "test_upgrade_required_parted| STARTED| 5.5.2| 5\n")); execute("optimize table test_upgrade_required, test_upgrade_required_parted, " + "blob.test_blob_upgrade_required with (upgrade_segments=true)"); execute("select * from sys.shards " + "where table_name IN " + "('test_upgrade_required', 'test_upgrade_required_parted', 'test_blob_upgrade_required') " + "AND min_lucene_version <> '6.2.1'"); assertThat(response.rowCount(), is(0L)); } }