Repository: falcon Updated Branches: refs/heads/master c36a1397c -> f241255f8
FALCON-2211 Falcon Fails to start in distributed mode Author: Praveen Adlakha <[email protected]> Reviewers: @pallavi-rao Closes #318 from PraveenAdlakha/2211 and squashes the following commits: 99bd6ee [Praveen Adlakha] comments addressed 6b2ab19 [Praveen Adlakha] FALCON-2211 Falcon Fails to start in distributed mode Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/f241255f Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/f241255f Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/f241255f Branch: refs/heads/master Commit: f241255f8c72921600ef2e567cd5ab9f8afd7056 Parents: c36a139 Author: Praveen Adlakha <[email protected]> Authored: Tue Dec 13 10:45:21 2016 +0530 Committer: Pallavi Rao <[email protected]> Committed: Tue Dec 13 10:45:21 2016 +0530 ---------------------------------------------------------------------- common/src/main/resources/startup.properties | 12 +++++++++++- src/conf/startup.properties | 11 +++++++++-- src/main/assemblies/distributed-package.xml | 10 ---------- 3 files changed, 20 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/f241255f/common/src/main/resources/startup.properties ---------------------------------------------------------------------- diff --git a/common/src/main/resources/startup.properties b/common/src/main/resources/startup.properties index f91f3b6..01386f1 100644 --- a/common/src/main/resources/startup.properties +++ b/common/src/main/resources/startup.properties @@ -35,7 +35,6 @@ org.apache.falcon.workflow.WorkflowJobEndNotificationService, \ org.apache.falcon.service.ProcessSubscriberService,\ org.apache.falcon.service.FalconJPAService,\ - org.apache.falcon.extensions.ExtensionService,\ org.apache.falcon.service.EntitySLAMonitoringService,\ org.apache.falcon.service.LifecyclePolicyMap,\ org.apache.falcon.entity.store.ConfigurationStore,\ @@ -45,6 +44,17 @@ org.apache.falcon.service.LogCleanupService,\ org.apache.falcon.service.GroupsService,\ org.apache.falcon.service.ProxyUserService + + +##Add if you want to use Metadata Service +## Also enable all the properties which starts with falcon.graph prefix +#org.apache.falcon.metadata.MetadataMappingService,\ + +##Add if you want to use Trusted or User Extensions +## In case of distributed Mode enable ExtensionService only on Prism +## It should come after FalconJPAService in application services +#org.apache.falcon.extensions.ExtensionService,\ + ##Add if you want to send data to graphite # org.apache.falcon.metrics.MetricNotificationService\ ## Add if you want to use Falcon Azure integration ## http://git-wip-us.apache.org/repos/asf/falcon/blob/f241255f/src/conf/startup.properties ---------------------------------------------------------------------- diff --git a/src/conf/startup.properties b/src/conf/startup.properties index 901c3a9..67347cd 100644 --- a/src/conf/startup.properties +++ b/src/conf/startup.properties @@ -43,16 +43,23 @@ org.apache.falcon.workflow.WorkflowJobEndNotificationService, \ org.apache.falcon.service.ProcessSubscriberService,\ org.apache.falcon.service.FalconJPAService,\ - org.apache.falcon.extensions.ExtensionService,\ org.apache.falcon.service.LifecyclePolicyMap,\ org.apache.falcon.entity.store.ConfigurationStore,\ org.apache.falcon.rerun.service.RetryService,\ org.apache.falcon.rerun.service.LateRunService,\ - org.apache.falcon.metadata.MetadataMappingService,\ org.apache.falcon.service.LogCleanupService,\ org.apache.falcon.service.GroupsService,\ org.apache.falcon.service.ProxyUserService +##Add if you want to use Metadata Service +## Also enable all the properties which starts with falcon.graph prefix +#org.apache.falcon.metadata.MetadataMappingService,\ + +##Add if you want to use Trusted or User Extensions +## In case of distributed Mode enable ExtensionService only on Prism +## It should come after FalconJPAService in application services +#org.apache.falcon.extensions.ExtensionService,\ + ##For feed SLA monitoring enable these two # org.apache.falcon.service.FalconJPAService,\ # org.apache.falcon.service.EntitySLAMonitoringService,\ http://git-wip-us.apache.org/repos/asf/falcon/blob/f241255f/src/main/assemblies/distributed-package.xml ---------------------------------------------------------------------- diff --git a/src/main/assemblies/distributed-package.xml b/src/main/assemblies/distributed-package.xml index 09665dc..4683a81 100644 --- a/src/main/assemblies/distributed-package.xml +++ b/src/main/assemblies/distributed-package.xml @@ -248,16 +248,6 @@ </fileSet> <fileSet> - <directory>../</directory> - <outputDirectory>extensions/mirroring</outputDirectory> - <excludes> - <exclude>*/**</exclude> - </excludes> - <fileMode>0770</fileMode> - <directoryMode>0770</directoryMode> - </fileSet> - - <fileSet> <directory>../examples/app</directory> <outputDirectory>examples/app</outputDirectory> <directoryMode>0755</directoryMode>
