Github user WeichenXu123 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13242#discussion_r64147805
  
    --- Diff: python/pyspark/ml/clustering.py ---
    @@ -933,21 +933,20 @@ def getKeepLastCheckpoint(self):
     if __name__ == "__main__":
         import doctest
         import pyspark.ml.clustering
    -    from pyspark.context import SparkContext
    -    from pyspark.sql import SQLContext
    +    from pyspark.sql import SparkSession
         globs = pyspark.ml.clustering.__dict__.copy()
         # The small batch size here ensures that we see multiple batches,
         # even in these small test examples:
    -    sc = SparkContext("local[2]", "ml.clustering tests")
    -    sqlContext = SQLContext(sc)
    +    spark = SparkSession.builder.master("local[2]").appName("ml.clustering 
tests").getOrCreate()
    --- End diff --
    
    @techaddict Done.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to