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

io.fluo.stress.trie.Constants Maven / Gradle / Ivy

Go to download

This module contains Fluo stress tests. Stress tests are different than integration tests in that they are designed to run on a cluster while integration tests only run on MiniFluo in a local environment. This module produces the jar needed to run a stress test on a cluster. Currently, this module only has one stress test (the Trie test) but other tests could be added to this module in the future.

The newest version!
/*
 * Copyright 2014 Fluo authors (see AUTHORS)
 *
 * Licensed 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 io.fluo.stress.trie;

import io.fluo.api.data.Column;

import io.fluo.api.types.StringEncoder;
import io.fluo.api.types.TypeLayer;

/**
 * 
 */
public class Constants {
  
  public static final TypeLayer TYPEL = new TypeLayer(new StringEncoder());

  public static final Column COUNT_SEEN_COL = TYPEL.bc().fam("count").qual("seen").vis();
  public static final Column COUNT_WAIT_COL = TYPEL.bc().fam("count").qual("wait").vis();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy