use of org.apache.rya.export.api.MergerException in project incubator-rya by apache.
the class AccumuloParentMetadataRepository method set.
@Override
public void set(final MergeParentMetadata metadata) throws ParentMetadataExistsException {
try {
createTableIfNeeded();
writeMetadata(metadata);
} catch (final MergerException e) {
throw new ParentMetadataExistsException("Unable to set MergeParentMetadata", e);
}
}
use of org.apache.rya.export.api.MergerException in project incubator-rya by apache.
the class AccumuloParentMetadataRepository method createTableIfNeeded.
private void createTableIfNeeded() throws MergerException {
try {
if (!doesMetadataTableExist()) {
log.debug("Creating table: " + mergeParentMetadataTableName);
connector.tableOperations().create(mergeParentMetadataTableName);
log.debug("Created table: " + mergeParentMetadataTableName);
log.debug("Granting authorizations to table: " + mergeParentMetadataTableName);
final String username = accumuloRyaDao.getConf().get(MRUtils.AC_USERNAME_PROP);
connector.securityOperations().grantTablePermission(username, mergeParentMetadataTableName, TablePermission.WRITE);
log.debug("Granted authorizations to table: " + mergeParentMetadataTableName);
}
} catch (final TableExistsException | AccumuloException | AccumuloSecurityException e) {
throw new MergerException("Could not create a new MergeParentMetadata table named: " + mergeParentMetadataTableName, e);
}
}
use of org.apache.rya.export.api.MergerException in project incubator-rya by apache.
the class AccumuloParentMetadataRepository method writeMetadata.
private void writeMetadata(final MergeParentMetadata metadata) throws MergerException {
BatchWriter writer = null;
try {
// Write each result.
final List<Mutation> mutations = makeWriteMetadataMutations(metadata);
writer = connector.createBatchWriter(mergeParentMetadataTableName, new BatchWriterConfig());
writer.addMutations(mutations);
} catch (final AccumuloException | TableNotFoundException e) {
throw new MergerException("Unable to set MergeParentMetadata in Accumulo", e);
} finally {
if (writer != null) {
try {
writer.close();
} catch (final MutationsRejectedException e) {
throw new MergerException("Could not add results to a MergeParentMetadata table because some of the mutations were rejected.", e);
}
}
}
}
use of org.apache.rya.export.api.MergerException in project incubator-rya by apache.
the class MergeDriverClient method main.
public static void main(final String[] args) throws ParseException, MergeConfigurationException, UnknownHostException, MergerException, java.text.ParseException, SailException, AccumuloException, AccumuloSecurityException, InferenceEngineException, RepositoryException, MalformedQueryException, UpdateExecutionException {
final String log4jConfiguration = System.getProperties().getProperty("log4j.configuration");
if (StringUtils.isNotBlank(log4jConfiguration)) {
final String parsedConfiguration = PathUtils.clean(StringUtils.removeStart(log4jConfiguration, "file:"));
final File configFile = new File(parsedConfiguration);
if (configFile.exists()) {
DOMConfigurator.configure(parsedConfiguration);
} else {
BasicConfigurator.configure();
}
}
final MergeConfigurationCLI config = new MergeConfigurationCLI(args);
try {
configuration = config.createConfiguration();
} catch (final MergeConfigurationException e) {
LOG.error("Configuration failed.", e);
}
final boolean useTimeSync = configuration.getUseNtpServer();
Optional<Long> offset = Optional.absent();
if (useTimeSync) {
final String tomcat = configuration.getChildTomcatUrl();
final String ntpHost = configuration.getNtpServerHost();
try {
offset = Optional.<Long>fromNullable(TimeUtils.getNtpServerAndMachineTimeDifference(ntpHost, tomcat));
} catch (final IOException e) {
LOG.error("Unable to get time difference between time server: " + ntpHost + " and the server: " + tomcat, e);
}
}
final StatementStoreFactory storeFactory = new StatementStoreFactory(configuration);
try {
final RyaStatementStore parentStore = storeFactory.getParentStatementStore();
final RyaStatementStore childStore = storeFactory.getChildStatementStore();
LOG.info("Starting Merge Tool");
if (configuration.getParentDBType() == ACCUMULO && configuration.getChildDBType() == ACCUMULO) {
final AccumuloRyaStatementStore childAStore = (AccumuloRyaStatementStore) childStore;
final AccumuloRyaStatementStore parentAStore = (AccumuloRyaStatementStore) parentStore;
// do map reduce merging.
// TODO: Run Merger
} else {
if (configuration.getMergePolicy() == TIMESTAMP) {
final TimestampPolicyMergeConfiguration timeConfig = (TimestampPolicyMergeConfiguration) configuration;
final Long timeOffset;
if (offset.isPresent()) {
timeOffset = offset.get();
} else {
timeOffset = 0L;
}
final MemoryTimeMerger merger = new MemoryTimeMerger(parentStore, childStore, new VisibilityStatementMerger(), timeConfig.getToolStartTime(), configuration.getParentRyaInstanceName(), timeOffset);
merger.runJob();
}
}
} catch (final Exception e) {
LOG.error("Something went wrong creating a Rya Statement Store connection.", e);
}
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@Override
public void uncaughtException(final Thread thread, final Throwable throwable) {
LOG.error("Uncaught exception in " + thread.getName(), throwable);
}
});
LOG.info("Finished running Merge Tool");
System.exit(1);
}
Aggregations