Member since
03-10-2017
2
Posts
1
Kudos Received
0
Solutions
05-27-2021
10:07 PM
Hello @jmbohl , @zuoseven , @napoleon , Please note that this is a known bug, but not yet fixed. Please check if the below properties in CM > HDFS > Configuration is set to an asterisk (*): -------------------------------- HDFS Proxy User Hosts HDFS Proxy User Groups Hue Proxy User Hosts Hue Proxy User Groups -------------------------------- If the above is set to asterisk, please let me know if the below workaround works: 1_). Create the user and group of the HDFS directory in HUE, then log in to HUE with the user of HDFS and then go to HUE to create an ACL for the HDFS directory 2_). Because there is a BUG in HUE for HDFS ACL, it is not recommended to use it this way. It is recommended that you still use the acl command line to create on HDFS. Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
12-29-2016
03:00 PM
1 Kudo
weightCol is not part of RandomForestClassifier,its part of logisticrregression @inherit_doc
[docs]class RandomForestClassifier(JavaEstimator, HasFeaturesCol, HasLabelCol, HasPredictionCol, HasSeed,
HasRawPredictionCol, HasProbabilityCol, RandomForestParams, TreeClassifierParams, HasCheckpointInterval): @inherit_doc
[docs]class LogisticRegression(JavaEstimator, HasFeaturesCol, HasLabelCol, HasPredictionCol, HasMaxIter,
HasRegParam, HasTol, HasProbabilityCol, HasRawPredictionCol,
HasElasticNetParam, HasFitIntercept, HasStandardization, HasThresholds,
HasWeightCol):
"""
http://spark.apache.org/docs/1.6.1/api/python/_modules/pyspark/ml/classification.html
... View more