Questions tagged [cloudera-quickstart-vm]

Cloudera QuickStart VM contains a single-node Apache Hadoop cluster including Cloudera Manager, example data, queries, and scripts.

Cloudera QuickStart VM contains a single-node Apache Hadoop cluster including Cloudera Manager, example data, queries, and scripts. It is free software developed by Cloudera.

195 questions
0
votes
1 answer

Using jdbc to connect with hive in cloudera docker

I have a cloudera docker container installed in my local, also the hive port is configured, like this docker run --hostname=quickstart.cloudera --privileged=true -t -i -p 8888:8888 -p 80:80 -p 10000:10000 --name cloudera2 cloudera/quickstart…
Rong Han
  • 53
  • 5
0
votes
2 answers

Getting error in Sqoop when Import-all-tables in Cloudera Quickstart VM

I'm getting the following error when I try to import-all-tables via sqoop: sqoop import-all-tables -m 12 --connect enter code here"jdbc:mysql://quickstart.cloudera:3306/retail_db" --username=retail_dba --password=cloudera…
tmndungu
  • 320
  • 4
  • 17
0
votes
1 answer

Unable to load text data into Hive table as ORC through temporary Hive table

I want to load .csv file into Hive table as a ORC file. I came across one post which suggested a workaround to the problem to which I executed the below queries: 1) Creating and loading data as a text file into a temporary table: CREATE TABLE IF…
Chetan SP
  • 321
  • 1
  • 3
  • 15
0
votes
1 answer

Failed to load class when working with cloudera hadoop java training project

I'm using cloudera quickstart to implement an hadoop project in java: my cloudera-quickstart version is 5.8.0 here are the error messages: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP)…
paradox
  • 258
  • 4
  • 19
0
votes
1 answer

Hbase Scala connectivity issue in Cloudera Quick start VM CDH5.8.0

I am trying to connect HBase from a Scala code but getting below error. 17/03/28 11:40:53 INFO client.RpcRetryingCaller: Call exception, tries=30, retries=35, started=450502 ms ago, cancelled=false, msg= 17/03/28 11:41:13 INFO…
0
votes
1 answer

Hive : The application won't work without a running HiveServer2

I am new to this field. I was checking CDH 5.8 quick-start VM to try some basic hive/impala example. But I hit an issue, while I am opening HUE it's giving below error. I searched solution for but didnt get anything which can resolve my issue. …
newcoder
  • 464
  • 9
  • 23
0
votes
1 answer

Oozie-sqoop workflow hanging with Heart beat issue in cloudera

I'm trying to run a simple sqoop import using oozie from hue ( Cloudera VM ).Few seconds after submitting, the job gets hung with heart beat issue for ever, I did some search and found this thread…
user7343922
  • 316
  • 4
  • 17
0
votes
1 answer

Cloudera QuickStarts VM on Ubuntu

I am currently using ubuntu 14.04(no windows) on my laptop. Is it mandatory for me to install Virtualbox or VMware to use Cloudera QuickStarts Vm on it.
0
votes
1 answer

RHadoop - Rstudio - Install arulesViz library

I'm trying to install the arulesViz library using RStudion in Cloudera Machine. For that I'm executing: install.packages("arulesViz", type = "source") But I'm getting the following error: ERROR: configuration failed for package ‘curl’ * removing…
Pedro Alves
  • 1,004
  • 1
  • 21
  • 47
0
votes
1 answer

Sqoop free form query not working

Below is the query which I am trying in Cloudera quick start VM sqoop import --username training --password training --connect jdbc:mysql://localhost/loudacre --target-dir /sample --split-by accounts.acct_num --query 'select accounts.first_name…
0
votes
1 answer

Hue's Spark notebook not working on cloudera quickstart vm

Recently i installed cloudera quickstart vm 5.8 on my windows machine on top of VMware. By default Spark UI link and Zookeeper link was not there on Hue so, i just edited the hue.ini which had, app_blacklist = zookeeper, spark to app_blacklist =…
karthi
  • 549
  • 3
  • 15
  • 26
0
votes
1 answer

sqoop import-all-tables tool not working

When I run below script on Cloudera VM, I am getting below error. sqoop import-all-tables --connect "jdbc:mysql://quickstart.cloudera:3306/retail_db" -username =retail_dba --p 6/09/17 23:33:11 ERROR manager.CatalogQueryManager: Failed to list…
developer
  • 9,116
  • 29
  • 91
  • 150
0
votes
1 answer

Sqoop export inserting duplicate entries

I am trying to understand how sqoop export works.I have a table site in mysql which contains two columns id and url and contains two rows 1,www.yahoo.com 2,www.gmail.com The table has no primary key When i am exporting the entries from HDFS to…
0
votes
1 answer

Apache Spark GraphX using Cloudera Quickstart 5.7

I'm trying to use Spark GraphX using Cloudera Quickstart 5.7 from this website: http://kukuruku.co/hub/algorithms/social-network-analysis-spark-graphx The steps that I did: 1) Open Terminal 2) Run spark-shell 3) Run import…
0
votes
3 answers

To Verify if Cloudera Hadoop services are running or not in container

After starting all the cloudera services in a container through clouera/quickstart image, I need to verify if all services(like HDFS,HBase,Hive etc.) are up or not.. If any service did not come up,try restarting it again or display a message... Can…