Member since
04-20-2016
34
Posts
11
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
9591 | 06-02-2016 11:50 AM | |
2117 | 06-02-2016 10:17 AM |
05-30-2016
06:04 AM
Thanks @Predrag Minovic
... View more
05-27-2016
12:14 PM
Labels:
- Labels:
-
Apache Oozie
05-27-2016
03:19 AM
Hi @Kuldeep Kulkarni here is my work flow <workflow-app name="sqoop-wf" xmlns="uri:oozie:workflow:0.2"> <start to="sqoop-import"/> <action name="sqoop-import"> <sqoop xmlns="uri:oozie:sqoop-action:0.2"> <job-tracker>${jobTracker}</job-tracker> <name-node>${nameNode}</name-node> <prepare> <delete path="${nameNode}/user/${wf:user()}/${examplesRoot}/output-data/sqoop"/> <mkdir path="${nameNode}/user/${wf:user()}/${examplesRoot}/output-data"/> </prepare> <configuration> <property> <name>mapred.job.queue.name</name> <value>${queueName}</value> </property> </configuration> <job-xml>/user/root/hbase-site.xml</job-xml> <command>import --connect "jdbc:sqlserver://<ip:port>;database=ESP_MFR" --table bundle --username uname --password password --incremental append --check-column packageid --hbase-table bundle --column-family bundleid</command> <file>/user/root/sqljdbc4.jar#sqljdbc4.jar</file> <file>/user/root/hbase/hbase-client.jar#hbase-client.jar</file> <file>/user/root/hbase/hbase-common.jar#hbase-common.jar</file> <file>/user/root/hbase/hbase-protocol.jar#hbase/hbase-protocol.jar</file> <file>/user/root/hbase/htrace-core3.1.0-incubating.jar#htrace-core3.1.0-incubating.jar</file> <file>/user/root/hbase/hbase-server.jar#hbase-server.jar</file> <file>/user/root/hbase/hbase-hadoop-compat.jar#hbase-hadoop-compat.jar</file> <file>/user/root/hbase/high-scale-lib-1.1.1.jar#high-scale-lib-1.1.1.jar</file> </sqoop> <ok to="end"/> <error to="fail"/> </action> <kill name="fail"> <message>Sqoop failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message> </kill> <end name="end"/> </workflow-app>
... View more
05-26-2016
01:27 PM
In apache oozie book i found this and please help me how to XML version 0.4 my XML version is 0.2 Common
Errors and Debugging In
this section, we cover some common errors and give various tips and solutions. We
hope this section will save you some time by being a quick reference guide for some
of the common mistakes we have seen repeated on Oozie. A
lot of the Oozie-level errors that the server throws are usually E0710
or E0701. You will see these errors in the Oozie UI and these errors
usually mean it’s not a Hadoop issue, but something in the Oozie system. Workflow
XML schema errors: Always
be aware of the XML schema version and features.
When you see errors like the one shown here, check the schema: Error:
E0701 : E0701: XML schema error, cvc-complex-type.2.4.a: Invalid
content was found starting with element 'global'. One of '{"uri:oozie:workflow:0.3":credentials,
"uri:oozie:workflow:0.3":start}' is
expected. Issues
with the <global> section: The
example error previously shown relates to support for
the <global> section. It’s only supported in workflow XML
version 0.4 or higher,
as shown here: <workflow-app
xmlns="uri:oozie:workflow:0.4" name="my-test-wf"> Also, with some of
the extension actions like hive or shell, the <global> section might not work.
Remember that the action definitions have their own schema version as well and confirm
that you are using supported features both at the workflow level and the action level. Schema
version errors with action types: The action schema
versions are different and often a lower
number than the workflow schema version. Sometimes, users cut and paste the same
version from the workflow header and that may not be the right version number. If
you see the following error with a Hive action for instance, you should check the
version number (it is probably too high): Error: E0701 : E0701:
XML schema error, cvc-complex-type.2.4.c: The matching wildcard
is strict, but no declaration can be found for element
... View more
Labels:
- Labels:
-
Apache Oozie
05-24-2016
06:32 AM
Thank you Very Much @Josh Elser
... View more
05-24-2016
04:33 AM
capture.png1.pngcapture2.png
... View more
Labels:
- Labels:
-
Apache Hadoop
-
Apache HBase
-
Apache Sqoop
05-23-2016
10:58 AM
Labels:
- Labels:
-
Apache HBase
05-20-2016
09:55 AM
Labels:
- Labels:
-
Apache HBase
05-13-2016
03:54 AM
1 Kudo
Labels:
- Labels:
-
Apache Hive
04-29-2016
08:39 AM
capture.png
... View more
Labels:
- Labels:
-
Apache Sqoop
- « Previous
-
- 1
- 2
- Next »