LOG.info("port: " + port);
LOG.info("forward index: " + indexFile);
FileSystem fs = FileSystem.get(conf);
FSDataInputStream in = fs.open(new Path(indexFile));
String indexClass = in.readUTF();
in.close();
LOG.info("index class: " + indexClass);
INDEX = (DocumentForwardIndex<Indexable>) Class.forName(indexClass).newInstance();