blob: 161ed1b1316e33e19eff6695ceebb8134d629f2c [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Hive Mirroring
=======================
Overview
---------
Falcon provides feature to replicate Hive metadata and data events from source cluster to destination cluster. This is supported for both secure and unsecure cluster through Falcon extensions.
Prerequisites
-------------
Following is the prerequisites to use Hive mirrroing
* Hive 1.2.0+
* Oozie 4.2.0+
*Note:* Set following properties in hive-site.xml for replicating the Hive events:
<property>
<name>hive.metastore.event.listeners</name>
<value>org.apache.hive.hcatalog.listener.DbNotificationListener</value>
<description>event listeners that are notified of any metastore changes</description>
</property>
<property>
<name>hive.metastore.dml.events</name>
<value>true</value>
</property>
Usage
------
a. Perform initial bootstrap of Table and Database from one Hadoop cluster to another Hadoop cluster
Table Bootstrap
----------------
For bootstrapping table replication, essentially after having turned on the DbNotificationListener
on the source db, we should do an EXPORT of the table, distcp the export over to the destination
warehouse, and do an IMPORT over there. Check following Hive Export-Import link for syntax details
and examples.
This will set up the destination table so that the events on the source cluster that modify the table
will then be replicated over.
Database Bootstrap
------------------
For bootstrapping DB replication, first destination DB should be created. This step is expected,
since DB replication definitions can be set up by users only on pre-existing DBs. Second, we need
to export all tables in the source db and import them in the destination db, as described above.
b. Setup cluster definition
$FALCON_HOME/bin/falcon entity -submit -type cluster -file /cluster/definition.xml
c. Submit Hive mirroring extension
$FALCON_HOME/bin/falcon extension -submitAndSchedule -extensionName hive-mirroring -file /process/definition.xml
Please Refer to Falcon CLI and REST API twiki in the Falcon documentation for more details on usage of CLI and REST API's for extension jobs and instances management.