All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.benchmark.byTask.feeds.RandomFacetSource Maven / Gradle / Ivy

/*
 * 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.lucene.benchmark.byTask.feeds;


import java.io.IOException;
import java.util.List;
import java.util.Random;

import org.apache.lucene.benchmark.byTask.utils.Config;
import org.apache.lucene.facet.FacetField;
import org.apache.lucene.facet.FacetsConfig;

/**
 * Simple implementation of a random facet source
 * 

* Supports the following parameters: *

    *
  • rand.seed - defines the seed to initialize {@link Random} with * (default: 13). *
  • max.doc.facet.dims - Max number of random dimensions to * create (default: 5); actual number of dimensions * would be anything between 1 and that number. *
  • max.doc.facets - maximal #facets per doc (default: 10). * Actual number of facets in a certain doc would be anything between 1 and that * number. *
  • max.facet.depth - maximal #components in a facet (default: * 3). Actual number of components in a certain facet would be anything * between 1 and that number. *
*/ public class RandomFacetSource extends FacetSource { private Random random; private int maxDocFacets; private int maxFacetDepth; private int maxDims; private int maxValue = maxDocFacets * maxFacetDepth; @Override public void getNextFacets(List facets) throws NoMoreDataException, IOException { facets.clear(); int numFacets = 1 + random.nextInt(maxDocFacets); // at least one facet to each doc for (int i = 0; i < numFacets; i++) { int depth; if (maxFacetDepth == 2) { depth = 2; } else { depth = 2 + random.nextInt(maxFacetDepth-2); // depth < 2 is not useful } String dim = Integer.toString(random.nextInt(maxDims)); String[] components = new String[depth-1]; for (int k = 0; k < depth-1; k++) { components[k] = Integer.toString(random.nextInt(maxValue)); addItem(); } FacetField ff = new FacetField(dim, components); facets.add(ff); addBytes(ff.toString().length()); // very rough approximation } } @Override public void configure(FacetsConfig config) { for(int i=0;i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy