Package com.alimama.mdrill.index.utils

Examples of com.alimama.mdrill.index.utils.DocumentConverter


      TermInfosWriter.setSkipInterVal(16);
    }
    TermInfosWriter.setNotUseQuick(false);
    String fieldStrs = conf.get("higo.index.fields");
    String[] fieldslist = fieldStrs.split(",");
    this.documentConverter = new DocumentConverter(fieldslist,"solrconfig.xml", "schema.xml");
    heartBeater = new HeartBeater(context);
    heartBeater.needHeartBeat();

    shardWriter = this.initShardWriter(context);
    shardWriter.getDir().setAllowLinks(true);
View Full Code Here


    heartBeater.needHeartBeat();
    this.doclistcache=new DocumentList();
    this.ramMerger = new RamWriter();

    String[] fieldslist = fieldStrs.split(",");
    this.documentConverter = new DocumentConverter(fieldslist,"solrconfig.xml", "schema.xml");
    shardWriter = this.initShardWriter(context);
    LOG.info("end initShardWriter");

    try {
      this.analyzer = this.documentConverter .getAnalyzer();JobIndexPublic.setAnalyzer(conf);
View Full Code Here

TOP

Related Classes of com.alimama.mdrill.index.utils.DocumentConverter

Copyright © 2018 www.massapicom. 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.