Member since
11-18-2014
196
Posts
18
Kudos Received
8
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
8630 | 03-16-2016 05:54 AM | |
3974 | 02-05-2016 04:49 AM | |
2829 | 01-08-2016 06:55 AM | |
16266 | 09-29-2015 01:31 AM | |
1714 | 05-06-2015 01:50 AM |
03-17-2015
03:45 AM
Hello, I created a project in my documents (the home icon) but I cannot delete it! When I press the minus sign, I get the popup for asking if I'm sure, and saying that the existing workflows will be moved to default, but when I press the "yes" button nothing happens. Thank you! Alina
... View more
03-16-2015
12:28 AM
Hello, No, I export it and import it after, in order to be able to share it 🙂 Alina
... View more
02-12-2015
11:49 PM
Hello, I also had this problem ( impala -f only support <local>path) . As for myself, I did a shell script that downloads the file from hdfs to /tmp/somedirectory. Afterwards, I call the impala -f command. (I did something like) FILE_TO_LAUNCH_LOCAL='/tmp'
FILE_TO_LAUNCH_LOCAL_WITH_TIMESTAMP=${FILE_TO_LAUNCH_LOCAL}/Oozie${TIMESTAMP}
export PYTHON_EGG_CACHE=./myeggs
mkdir ${FILE_TO_LAUNCH_LOCAL_WITH_TIMESTAMP}
mkdir ${FILE_TO_LAUNCH_LOCAL_WITH_TIMESTAMP}
hdfs dfs -copyToLocal ${FILE_TO_LAUNCH} ${FILE_TO_LAUNCH_LOCAL_WITH_TIMESTAMP}/
impala-shell -f ${FILE_TO_LAUNCH_LOCAL_WITH_TIMESTAMP}/myfile;
rm ${FILE_TO_LAUNCH_LOCAL_COMPLETE} Alina
... View more
02-03-2015
06:01 AM
In the select there was a ',' missing.
... View more
01-30-2015
02:19 AM
I added the high-scale-lib-1.1.1.jar in order to make it work. 😄
... View more
01-29-2015
08:50 AM
Hello, I'm trying to join one table that is stored in hbase with another table that is stored as json. I added the needed jars that I added while creating the hbase table and the serde jar for the join. When I join the two tables in the hive beeswax everithing works fine. However, when I do it in an oozie action I get: 15/01/29 17:13:30 INFO mr.ExecDriver: adding libjars: /user/agherman/scripts/General/Hive/json-serde-1.3-jar-with-dependencies.jar
java.lang.NoClassDefFoundError: org/cliffc/high_scale_lib/Counter
at org.apache.hadoop.hive.hbase.HBaseStorageHandler.configureJobConf(HBaseStorageHandler.java:500)
at org.apache.hadoop.hive.ql.plan.PlanUtils.configureJobConf(PlanUtils.java:849)
at org.apache.hadoop.hive.ql.plan.MapWork.configureJobConf(MapWork.java:503)
at org.apache.hadoop.hive.ql.plan.MapredWork.configureJobConf(MapredWork.java:68)
at org.apache.hadoop.hive.ql.exec.mr.ExecDriver.execute(ExecDriver.java:368)
at org.apache.hadoop.hive.ql.exec.mr.MapRedTask.execute(MapRedTask.java:136)
at org.apache.hadoop.hive.ql.exec.Task.executeTask(Task.java:153)
at org.apache.hadoop.hive.ql.exec.TaskRunner.runSequential(TaskRunner.java:85)
at org.apache.hadoop.hive.ql.Driver.launchTask(Driver.java:1554)
at org.apache.hadoop.hive.ql.Driver.execute(Driver.java:1321)
at org.apache.hadoop.hive.ql.Driver.runInternal(Driver.java:1139)
at org.apache.hadoop.hive.ql.Driver.run(Driver.java:962)
at org.apache.hadoop.hive.ql.Driver.run(Driver.java:952)
at org.apache.hadoop.hive.cli.CliDriver.processLocalCmd(CliDriver.java:269)
at org.apache.hadoop.hive.cli.CliDriver.processCmd(CliDriver.java:221)
at org.apache.hadoop.hive.cli.CliDriver.processLine(CliDriver.java:431)
at org.apache.hadoop.hive.cli.CliDriver.processLine(CliDriver.java:367)
at org.apache.hadoop.hive.cli.CliDriver.processReader(CliDriver.java:464)
at org.apache.hadoop.hive.cli.CliDriver.processFile(CliDriver.java:474)
at org.apache.hadoop.hive.cli.CliDriver.executeDriver(CliDriver.java:756)
at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:694)
at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:633)
at org.apache.oozie.action.hadoop.HiveMain.runHive(HiveMain.java:323)
at org.apache.oozie.action.hadoop.HiveMain.run(HiveMain.java:284)
at org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:39)
at org.apache.oozie.action.hadoop.HiveMain.main(HiveMain.java:66)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.apache.oozie.action.hadoop.LauncherMapper.map(LauncherMapper.java:227)
at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:54)
at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:450)
at org.apache.hadoop.mapred.MapTask.run(MapTask.java:343)
at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:168)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:415)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1642)
at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:163)
Caused by: java.lang.ClassNotFoundException: org.cliffc.high_scale_lib.Counter
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425) Where should I look for? Thank you!
... View more
Labels:
01-27-2015
05:11 AM
But.. I get this only with this table! I don't thing is a hive configuration (We installed everything with Cloudera Manager and we didn't changed the default settings)
... View more
01-27-2015
02:28 AM
However, with this solution I have a problem… I do not know on which instance from my cluster is the file downloaded (I want shedule my task with oozie)
... View more
01-26-2015
08:08 AM
With beeline I get the same error: Error: java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer (state=,code=0) Thank you!
... View more
01-26-2015
02:51 AM
Hello, It was with beeswax : http://<ip of my namenode>:8888/beeswax/#query Thank you!
... View more