Repository: falcon Updated Branches: refs/heads/master f191ea540 -> ef57d29ad
FALCON-2148 Entries not removed from sla list when instance succeeds Author: Praveen Adlakha <[email protected]> Reviewers: @pallavi-rao Closes #284 from PraveenAdlakha/2148 and squashes the following commits: a3ac9fd [Praveen Adlakha] comments addressed e41462c [Praveen Adlakha] FALCON-2148 Entries not removed from sla list when instance succeeds Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/ef57d29a Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/ef57d29a Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/ef57d29a Branch: refs/heads/master Commit: ef57d29ad01de7b60f12900df04e8b738ba80a69 Parents: f191ea5 Author: Praveen Adlakha <[email protected]> Authored: Thu Oct 20 09:22:50 2016 +0530 Committer: Pallavi Rao <[email protected]> Committed: Thu Oct 20 09:22:50 2016 +0530 ---------------------------------------------------------------------- common/src/main/resources/statestore.properties | 4 ++++ src/conf/statestore.properties | 4 ++++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/ef57d29a/common/src/main/resources/statestore.properties ---------------------------------------------------------------------- diff --git a/common/src/main/resources/statestore.properties b/common/src/main/resources/statestore.properties index 7686426..56c6062 100644 --- a/common/src/main/resources/statestore.properties +++ b/common/src/main/resources/statestore.properties @@ -24,6 +24,10 @@ ## Falcon currently supports derby, mysql and postgreSQL, change url based on DB. #*.falcon.statestore.jdbc.url=jdbc:derby:data/falcon.db;create=true +##Note : In case you are using mysql or postgres please specify URL as +## jdbc:mysql://localhost:3306/dbname?serverTimezone=UTC +## serverTimezone should be same as that of Oozie server. + ## StateStore credentials file where username,password and other properties can be stored securely. ## Set this credentials file permission 400 and make sure user who starts falcon should only have read permission. ## Give Absolute path to credentials file along with file name or put in classpath with filename statestore.credentials. http://git-wip-us.apache.org/repos/asf/falcon/blob/ef57d29a/src/conf/statestore.properties ---------------------------------------------------------------------- diff --git a/src/conf/statestore.properties b/src/conf/statestore.properties index b08096e..4590166 100644 --- a/src/conf/statestore.properties +++ b/src/conf/statestore.properties @@ -26,6 +26,10 @@ ## $FALCON_HOME/server/webapp/falcon/WEB-INF/lib and $FALCON_HOME/client/lib #*.falcon.statestore.jdbc.url=jdbc:derby:data/falcon.db;create=true +##Note : In case you are using mysql or postgres please specify URL as +## jdbc:mysql://localhost:3306/dbname?serverTimezone=UTC +## serverTimezone should be same as that of Oozie server. + ## StateStore credentials file where username,password and other properties can be stored securely. ## Set this credentials file permission 400 and make sure user who starts falcon should only have read permission. ## Give Absolute path to credentials file along with file name or put in classpath with filename statestore.credentials.
