blob: fb53214e560fc512c4a2d1037f84346920e97360 [file] [log] [blame]
/*
* Copyright 2015 Webindex 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 webindex.data;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.util.Iterator;
import org.apache.fluo.api.config.FluoConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import webindex.core.WebIndexConfig;
import webindex.data.spark.IndexEnv;
public class Configure {
private static final Logger log = LoggerFactory.getLogger(Configure.class);
public static void main(String[] args) throws Exception {
if (args.length != 1) {
log.error("Usage: Configure");
System.exit(1);
}
WebIndexConfig webIndexConfig = WebIndexConfig.load();
IndexEnv env = new IndexEnv(webIndexConfig);
env.initAccumuloIndexTable();
FluoConfiguration connectionConfig =
new FluoConfiguration(new File(webIndexConfig.getFluoPropsPath()));
FluoConfiguration appConfig = new FluoConfiguration();
env.configureApplication(connectionConfig, appConfig);
Iterator<String> iter = appConfig.getKeys();
try (PrintWriter out =
new PrintWriter(new BufferedWriter(new FileWriter(webIndexConfig.getFluoPropsPath(), true)))) {
while (iter.hasNext()) {
String key = iter.next();
out.println(key + " = " + appConfig.getRawString(key));
}
}
}
}