Member since
09-08-2016
19
Posts
1
Kudos Received
4
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
946 | 01-26-2018 11:25 PM | |
17299 | 10-09-2017 04:23 PM | |
4774 | 07-18-2017 04:15 PM | |
25775 | 09-21-2016 10:55 AM |
11-02-2019
01:00 AM
Do you resolve this error ? I'm facing the same problem
... View more
04-03-2018
05:41 AM
can you post your maven dependencies for spark?
... View more
01-26-2018
11:25 PM
Ignore this, got is resolved by sending only schedule-related information in the put request, instead of whole processor configuration. This got resolved.
... View more
07-18-2017
04:15 PM
This issue has been resolved. While creating the controller service, it got all parameters set and returned the object. Returned object has a masked password (****). When application changing the controller service state from disabled to enabled, controller service entity is being updated with a masked password. Hence it fails to connect to the database. During the state change, we resend the original password to fix the issue. Thanks to Arpit Gupta who helped me in resolving this issue.
... View more
10-21-2017
12:41 PM
and please ensure that, there are no columns in salary ( if it is defined as Decimal/integer in Database)
... View more
03-02-2017
07:23 AM
2 Kudos
Bit late to reply, but if the cluster is secure, try pointing the hbase configuration to the spark driver and executor classpath explicitly using 'spark.executor.extraClassPath' and 'spark.driver.extraClassPath'. Also make sure that the host from where you are running the spark command has the gateway role added. Example: $ pyspark --jars /opt/cloudera/parcels/CDH/jars/spark-examples-1.6.0-cdh5.7.3-hadoop2.6.0-cdh5.7.3.jar,/opt/cloudera/parcels/CDH/jars/hbase-examples-1.2.0-cdh5.7.3.jar --conf "spark.executor.extraClassPath=/etc/hbase/conf/" --conf "spark.driver.extraClassPath=/etc/hbase/conf/"
... View more