git clone https://git-wip-us.apache.org/repos/asf/falcon.git falcon cd falcon export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=256m" && mvn clean install [optionally -Dhadoop.version=<<hadoop.version>> can be appended to build for a specific version of hadoop] *Note:* Falcon drops support for Hadoop-1 and only supports Hadoop-2 from Falcon 0.6 onwards [optionally -Doozie.version=<<oozie version>> can be appended to build with a specific version of oozie. Oozie versions >= 4 are supported]
Once the build successfully completes, artifacts can be packaged for deployment. The package can be built in embedded or distributed mode.
Embedded Mode
mvn clean assembly:assembly -DskipTests -DskipCheck=true
Tar can be found in {project dir}/target/apache-falcon-${project.version}-bin.tar.gz
Tar is structured as follows
|- bin |- falcon |- falcon-start |- falcon-stop |- falcon-config.sh |- service-start.sh |- service-stop.sh |- conf |- startup.properties |- runtime.properties |- client.properties |- log4j.xml |- falcon-env.sh |- docs |- client |- lib (client support libs) |- server |- webapp |- falcon.war |- hadooplibs |- README |- NOTICE.txt |- LICENSE.txt |- DISCLAIMER.txt |- CHANGES.txt
Distributed Mode
mvn clean assembly:assembly -DskipTests -DskipCheck=true -Pdistributed,hadoop-2
Tar can be found in {project dir}/target/apache-falcon-distributed-${project.version}-server.tar.gz
Tar is structured as follows
|- bin |- falcon |- falcon-start |- falcon-stop |- falcon-config.sh |- service-start.sh |- service-stop.sh |- prism-stop |- prism-start |- conf |- startup.properties |- runtime.properties |- client.properties |- log4j.xml |- falcon-env.sh |- docs |- client |- lib (client support libs) |- server |- webapp |- falcon.war |- prism.war |- hadooplibs |- README |- NOTICE.txt |- LICENSE.txt |- DISCLAIMER.txt |- CHANGES.txt
Installing falcon
tar -xzvf {falcon package} cd falcon-distributed-${project.version} or falcon-${project.version}
Configuring Falcon
By default config directory used by falcon is {package dir}/conf. To override this set environment variable FALCON_CONF to the path of the conf dir.
falcon-env.sh has been added to the falcon conf. This file can be used to set various environment variables that you need for you services. In addition you can set any other environment variables you might need. This file will be sourced by falcon scripts before any commands are executed. The following environment variables are available to set.
# The java implementation to use. If JAVA_HOME is not found we expect java and jar to be in path #export JAVA_HOME= # any additional java opts you want to set. This will apply to both client and server operations #export FALCON_OPTS= # any additional java opts that you want to set for client only #export FALCON_CLIENT_OPTS= # java heap size we want to set for the client. Default is 1024MB #export FALCON_CLIENT_HEAP= # any additional opts you want to set for prism service. #export FALCON_PRISM_OPTS= # java heap size we want to set for the prism service. Default is 1024MB #export FALCON_PRISM_HEAP= # any additional opts you want to set for falcon service. #export FALCON_SERVER_OPTS= # java heap size we want to set for the falcon server. Default is 1024MB #export FALCON_SERVER_HEAP= # What is is considered as falcon home dir. Default is the base location of the installed software #export FALCON_HOME_DIR= # Where log files are stored. Default is logs directory under the base install location #export FALCON_LOG_DIR= # Where pid files are stored. Default is logs directory under the base install location #export FALCON_PID_DIR= # where the falcon active mq data is stored. Default is logs/data directory under the base install location #export FALCON_DATA_DIR= # Where do you want to expand the war file. By Default it is in /server/webapp dir under the base install dir. #export FALCON_EXPANDED_WEBAPP_DIR=
NOTE for Mac OS users
If you are using a Mac OS, you will need to configure the FALCON_SERVER_OPTS (explained above). In {package dir}/conf/falcon-env.sh uncomment the following line #export FALCON_SERVER_OPTS= and change it to look as below export FALCON_SERVER_OPTS="-Djava.awt.headless=true -Djava.security.krb5.realm= -Djava.security.krb5.kdc="
Starting Falcon Server
bin/falcon-start [-port <port>]
By default, * If falcon.enableTLS is set to true explicitly or not set at all, falcon starts at port 15443 on https:// by default. * If falcon.enableTLS is set to false explicitly, falcon starts at port 15000 on http://. * To change the port, use -port option.
Adding Extension Libraries Library extensions allows users to add custom libraries to entity lifecycles such as feed retention, feed replication and process execution. This is useful for usecases such as adding filesystem extensions. To enable this, add the following configs to startup.properties: *.libext.paths=<paths to be added to all entity lifecycles> *.libext.feed.paths=<paths to be added to all feed lifecycles> *.libext.feed.retentions.paths=<paths to be added to feed retention workflow> *.libext.feed.replication.paths=<paths to be added to feed replication workflow> *.libext.process.paths=<paths to be added to process workflow>
The configured jars are added to falcon classpath and the corresponding workflows
Starting Prism
bin/prism-start [-port <port>]
By default, * prism server starts at port 16443. To change the port, use -port option
Using Falcon
bin/falcon admin -version Falcon server build version: {Version:"0.6-incubating-rd7e2be9afa2a5dc96acd1ec9e325f39c6b2f17f7",Mode:"embedded"} ---- bin/falcon help (for more details about falcon cli usage)
Dashboard
Once falcon / prism is started, you can view the status of falcon entities using the Web-based dashboard. The web UI works in both distributed and embedded mode. You can open your browser at the corresponding port to use the web UI.
Falcon dashboard makes the REST api calls as user "falcon-dashboard". If this user does not exist on your falcon and oozie servers, please create the user.
## create user. [root@falconhost ~] useradd -U -m falcon-dashboard -G users ## verify user is created with membership in correct groups. [root@falconhost ~] groups falcon-dashboard falcon-dashboard : falcon-dashboard users [root@falconhost ~]
Stopping Falcon Server
bin/falcon-stop
Stopping Prism
bin/prism-stop
cd <<project home>> src/bin/package.sh <<hadoop-version>> <<oozie-version>> >> ex. src/bin/package.sh 1.1.2 4.0.1 or src/bin/package.sh 0.20.2-cdh3u5 4.0.1 >> ex. src/bin/package.sh 2.5.0 4.0.0 >> Falcon package is available in <<falcon home>>/target/apache-falcon-<<version>>-bin.tar.gz >> Oozie package is available in <<falcon home>>/target/oozie-4.0.1-distro.tar.gz
bin/falcon-start
Make sure the hadoop and oozie endpoints are according to your setup in examples/entity/filesystem/standalone-cluster.xml The cluster locations,staging and working dirs, MUST be created prior to submitting a cluster entity to Falcon. staging must have 777 permissions and the parent dirs must have execute permissions working must have 755 permissions and the parent dirs must have execute permissions
bin/falcon entity -submit -type cluster -file examples/entity/filesystem/standalone-cluster.xml
Submit input and output feeds:
bin/falcon entity -submit -type feed -file examples/entity/filesystem/in-feed.xml bin/falcon entity -submit -type feed -file examples/entity/filesystem/out-feed.xml
Set-up workflow for the process:
hadoop fs -put examples/app /
Submit and schedule the process:
bin/falcon entity -submitAndSchedule -type process -file examples/entity/filesystem/oozie-mr-process.xml bin/falcon entity -submitAndSchedule -type process -file examples/entity/filesystem/pig-process.xml
Generate input data:
examples/data/generate.sh <<hdfs endpoint>>
Get status of instances:
bin/falcon instance -status -type process -name oozie-mr-process -start 2013-11-15T00:05Z -end 2013-11-15T01:00Z
HCat based example entities are in examples/entity/hcat.