Member since
09-21-2015
28
Posts
40
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5562 | 12-02-2016 05:54 PM | |
1103 | 07-22-2016 04:12 PM | |
1774 | 04-22-2016 04:28 PM | |
32038 | 04-22-2016 07:58 AM | |
7585 | 10-08-2015 10:32 PM |
02-19-2020
10:49 PM
with newer versions of spark, the sqlContext is not load by default, you have to specify it explicitly : scala> val sqlContext = new org.apache.spark.sql.SQLContext(sc) warning: there was one deprecation warning; re-run with -deprecation for details sqlContext: org.apache.spark.sql.SQLContext = org.apache.spark.sql.SQLContext@6179af64 scala> import sqlContext.implicits._ import sqlContext.implicits._ scala> sqlContext.sql("describe mytable") res2: org.apache.spark.sql.DataFrame = [col_name: string, data_type: string ... 1 more field] I'm working with spark 2.3.2
... View more
12-21-2016
03:01 AM
I've placed more ram, added jar path missing and worked perfect. Thanks for your help
... View more
07-22-2016
04:12 PM
The Hadoop Group can be changed with the following command: /var/lib/ambari-server/resources/scripts/configs.sh \
-u admin -p admin set localhost cluster_name cluster-env user_group new_group This assumes it is running from the Ambari host with the default credentials. Replace cluster_name with the name of the cluster. Details here: https://cwiki.apache.org/confluence/display/AMBARI/Update+Service-Accounts+After+Install
... View more
11-17-2015
04:53 PM
3 Kudos
JP, go for 2-3 typical enterprise-class servers to meet these numbers. Rough starting point is around 200MB/s per node.
... View more
09-01-2016
05:08 PM
I'm interested in the telecom use case, too.... We're dealing with hourly ingests that result in a number of small files we'd like regularly compacted...
... View more
10-10-2015
12:12 AM
1 Kudo
That was it. Thanks ! Used http://tweeterid.com/ to convert from username to user id.
... View more
05-18-2016
01:47 PM
2 Kudos
@Ancil McBarnett check out the repo i've been maintianing that uses maven to pull the required jars. https://community.hortonworks.com/repos/33592/hive-jdbc-uber-jar.html
... View more