blob: 469fbd8e705e4298b4438db1b7921e483de0c236 [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.jackrabbit.oak.benchmark;
import org.apache.commons.io.FileUtils;
import org.apache.jackrabbit.oak.Oak;
import org.apache.jackrabbit.oak.benchmark.util.TestHelper;
import org.apache.jackrabbit.oak.fixture.JcrCreator;
import org.apache.jackrabbit.oak.fixture.OakRepositoryFixture;
import org.apache.jackrabbit.oak.fixture.RepositoryFixture;
import org.apache.jackrabbit.oak.jcr.Jcr;
import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticConnection;
import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticIndexDefinition;
import org.apache.jackrabbit.oak.plugins.index.elastic.ElasticMetricHandler;
import org.apache.jackrabbit.oak.plugins.index.elastic.index.ElasticIndexEditorProvider;
import org.apache.jackrabbit.oak.plugins.index.elastic.query.ElasticIndexProvider;
import org.apache.jackrabbit.oak.plugins.index.nodetype.NodeTypeIndexProvider;
import org.apache.jackrabbit.oak.plugins.index.property.PropertyIndexEditorProvider;
import org.apache.jackrabbit.oak.plugins.index.search.ExtractedTextCache;
import org.apache.jackrabbit.oak.spi.commit.Observer;
import org.apache.jackrabbit.oak.spi.query.QueryIndexProvider;
import org.apache.jackrabbit.oak.stats.StatisticsProvider;
import javax.jcr.Repository;
import javax.jcr.query.Query;
import java.io.File;
import static com.google.common.collect.ImmutableSet.of;
public class ElasticPropertyTextSearchTest extends SearchTest {
private ElasticConnection coordinate;
private String indexName;
ElasticPropertyTextSearchTest(File dump, boolean flat, boolean doReport, Boolean storageEnabled, ElasticConnection coordinate) {
super(dump, flat, doReport, storageEnabled);
this.coordinate = coordinate;
}
@Override
protected String getQuery(String word) {
return "SELECT * FROM [nt:base] WHERE [title] = \"" + word + "\"";
}
@Override
protected String queryType() {
return Query.JCR_SQL2;
}
@Override
protected boolean isFullTextSearch() {
return false;
}
@Override
protected Repository[] createRepository(RepositoryFixture fixture) throws Exception {
indexName = TestHelper.getUniqueIndexName("elasticTitle");
if (fixture instanceof OakRepositoryFixture) {
return ((OakRepositoryFixture) fixture).setUpCluster(1, new JcrCreator() {
@Override
public Jcr customize(Oak oak) {
ElasticIndexEditorProvider editorProvider = new ElasticIndexEditorProvider(coordinate,
new ExtractedTextCache(10 * FileUtils.ONE_MB, 100));
ElasticIndexProvider indexProvider = new ElasticIndexProvider(coordinate,
new ElasticMetricHandler(StatisticsProvider.NOOP));
oak.with(editorProvider)
.with((Observer) indexProvider)
.with((QueryIndexProvider) indexProvider)
.with(new PropertyIndexEditorProvider())
.with(new NodeTypeIndexProvider())
.with(new PropertyFullTextTest.FullTextPropertyInitialiser(indexName, of("title"),
ElasticIndexDefinition.TYPE_ELASTICSEARCH));
return new Jcr(oak);
}
});
}
return super.createRepository(fixture);
}
@Override
protected void afterSuite() throws Exception {
super.afterSuite();
TestHelper.cleanupRemoteElastic(coordinate, indexName);
}
}