Package org.apache.falcon.metadata

Examples of org.apache.falcon.metadata.MetadataMappingService


    }

    private void notifyMetadataMappingService(String entityName, String operation,
                                              String logDir) throws FalconException {
        if (Services.get().isRegistered(MetadataMappingService.SERVICE_NAME)) {
            MetadataMappingService service = Services.get().getService(MetadataMappingService.SERVICE_NAME);
            service.onSuccessfulWorkflowCompletion(entityName, operation, logDir);
        }
    }
View Full Code Here


        CurrentUser.authenticate(FALCON_USER);

        configStore = ConfigurationStore.get();

        StartupProperties.get().setProperty("falcon.graph.preserve.history", "true");
        service = new MetadataMappingService();
        service.init();
        Services.get().register(service);

        addClusterEntity();
        addFeedEntity();
View Full Code Here

TOP

Related Classes of org.apache.falcon.metadata.MetadataMappingService

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.