/* * 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.beam.sdk.io.elasticsearch; import static java.net.InetAddress.getByName; import java.io.IOException; import org.apache.beam.sdk.io.common.IOTestPipelineOptions; import org.apache.beam.sdk.options.PipelineOptionsFactory; import org.elasticsearch.client.transport.TransportClient; import org.elasticsearch.common.transport.InetSocketTransportAddress; /** * Manipulates test data used by the {@link ElasticsearchIO} * integration tests. * * <p>This is independent from the tests so that for read tests it can be run separately after data * store creation rather than every time (which can be more fragile.) */ public class ElasticsearchTestDataSet { public static final String ES_INDEX = "beam"; public static final String ES_TYPE = "test"; public static final long NUM_DOCS = 60000; public static final int AVERAGE_DOC_SIZE = 25; public static final int MAX_DOC_SIZE = 35; private static String writeIndex = ES_INDEX + org.joda.time.Instant.now().getMillis(); /** * Use this to create the index for reading before IT read tests. * * <p>To invoke this class, you can use this command line from elasticsearch io module directory: * * <pre> * mvn test-compile exec:java \ * -Dexec.mainClass=org.apache.beam.sdk.io.elasticsearch.ElasticsearchTestDataSet \ * -Dexec.args="--elasticsearchServer=1.2.3.4 \ * --elasticsearchHttpPort=9200 \ * --elasticsearchTcpPort=9300" \ * -Dexec.classpathScope=test * </pre> * * @param args Please pass options from ElasticsearchTestOptions used for connection to * Elasticsearch as shown above. */ public static void main(String[] args) throws Exception { PipelineOptionsFactory.register(IOTestPipelineOptions.class); IOTestPipelineOptions options = PipelineOptionsFactory.fromArgs(args).as(IOTestPipelineOptions.class); createAndPopulateIndex(getClient(options), ReadOrWrite.READ); } private static void createAndPopulateIndex(TransportClient client, ReadOrWrite rOw) throws Exception { // automatically creates the index and insert docs ElasticSearchIOTestUtils.insertTestDocuments( (rOw == ReadOrWrite.READ) ? ES_INDEX : writeIndex, ES_TYPE, NUM_DOCS, client); } public static TransportClient getClient(IOTestPipelineOptions options) throws Exception { TransportClient client = TransportClient.builder() .build() .addTransportAddress( new InetSocketTransportAddress( getByName(options.getElasticsearchServer()), options.getElasticsearchTcpPort())); return client; } public static ElasticsearchIO.ConnectionConfiguration getConnectionConfiguration( IOTestPipelineOptions options, ReadOrWrite rOw) throws IOException { ElasticsearchIO.ConnectionConfiguration connectionConfiguration = ElasticsearchIO.ConnectionConfiguration.create( new String[] { "http://" + options.getElasticsearchServer() + ":" + options.getElasticsearchHttpPort() }, (rOw == ReadOrWrite.READ) ? ES_INDEX : writeIndex, ES_TYPE); return connectionConfiguration; } public static void deleteIndex(TransportClient client, ReadOrWrite rOw) throws Exception { ElasticSearchIOTestUtils.deleteIndex((rOw == ReadOrWrite.READ) ? ES_INDEX : writeIndex, client); } /** Enum that tells whether we use the index for reading or for writing. */ public enum ReadOrWrite { READ, WRITE } }