Package sql.optimizers.name.manual_batching

Source Code of sql.optimizers.name.manual_batching.ManualBatchingCompGenFactory

package sql.optimizers.name.manual_batching;

import java.util.Map;

import sql.optimizers.name.NameCompGen;
import sql.schema.Schema;
import sql.util.TableAliasName;

/*
* It generates different NameCompGen for each partial query plan
*   NameCompGen is responsible for attaching operators to components
* Aggregation only on the last level.
*/
public class ManualBatchingCompGenFactory {
  private final Schema _schema;
  private final Map _map; // map is updates in place
  private final TableAliasName _tan;

  private ManualBatchingParallelismAssigner _parAssigner;

  /*
   * only plan, no parallelism
   */
  public ManualBatchingCompGenFactory(Map map, TableAliasName tan) {
    _map = map;
    _tan = tan;

    _schema = new Schema(map);
  }

  /*
   * generating plan + parallelism
   */
  public ManualBatchingCompGenFactory(Map map, TableAliasName tan, int totalSourcePar) {
    this(map, tan);
    setParAssignerMode(totalSourcePar);
  }

  public NameCompGen create() {
    return new NameCompGen(_schema, _map, _parAssigner);
  }

  public ManualBatchingParallelismAssigner getParAssigner() {
    return _parAssigner;
  }

  public final void setParAssignerMode(int totalSourcePar) {
    // in general there might be many NameComponentGenerators,
    // that's why CPA is computed before of NCG
    _parAssigner = new ManualBatchingParallelismAssigner(_schema, _tan, _map);

    // for the same _parAssigner, we might try with different totalSourcePar
    _parAssigner.computeSourcePar(totalSourcePar);
  }

}
TOP

Related Classes of sql.optimizers.name.manual_batching.ManualBatchingCompGenFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.