snowpark-connect 0.24.0__py3-none-any.whl → 0.25.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of snowpark-connect might be problematic. Click here for more details.
- snowflake/snowpark_connect/column_name_handler.py +116 -4
- snowflake/snowpark_connect/config.py +13 -0
- snowflake/snowpark_connect/constants.py +0 -29
- snowflake/snowpark_connect/dataframe_container.py +6 -0
- snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
- snowflake/snowpark_connect/expression/literal.py +13 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
- snowflake/snowpark_connect/expression/map_udf.py +26 -8
- snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
- snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
- snowflake/snowpark_connect/expression/map_unresolved_function.py +825 -353
- snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
- snowflake/snowpark_connect/hidden_column.py +39 -0
- snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
- snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
- snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
- snowflake/snowpark_connect/relation/map_extension.py +52 -11
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- snowflake/snowpark_connect/relation/map_sql.py +88 -11
- snowflake/snowpark_connect/relation/map_udtf.py +4 -2
- snowflake/snowpark_connect/relation/read/map_read.py +3 -3
- snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
- snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
- snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
- snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
- snowflake/snowpark_connect/relation/write/map_write.py +62 -53
- snowflake/snowpark_connect/resources_initializer.py +29 -1
- snowflake/snowpark_connect/server.py +18 -3
- snowflake/snowpark_connect/type_mapping.py +29 -25
- snowflake/snowpark_connect/typed_column.py +14 -0
- snowflake/snowpark_connect/utils/artifacts.py +23 -0
- snowflake/snowpark_connect/utils/context.py +6 -1
- snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
- snowflake/snowpark_connect/utils/telemetry.py +6 -17
- snowflake/snowpark_connect/utils/udf_helper.py +2 -0
- snowflake/snowpark_connect/utils/udf_utils.py +38 -7
- snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
- snowflake/snowpark_connect/version.py +1 -1
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
- snowpark_connect-0.25.0.dist-info/RECORD +477 -0
- snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
- snowpark_connect-0.24.0.dist-info/RECORD +0 -898
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
from __future__ import absolute_import, division, print_function
|
|
19
|
-
|
|
20
|
-
import contextlib
|
|
21
|
-
from six import StringIO
|
|
22
|
-
import sys
|
|
23
|
-
import time
|
|
24
|
-
from typing import Any, Callable
|
|
25
|
-
import unittest
|
|
26
|
-
|
|
27
|
-
import pyspark.ml.torch.log_communication
|
|
28
|
-
from pyspark.ml.torch.log_communication import (
|
|
29
|
-
LogStreamingServer,
|
|
30
|
-
LogStreamingClient,
|
|
31
|
-
LogStreamingClientBase,
|
|
32
|
-
_SERVER_POLL_INTERVAL,
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
@contextlib.contextmanager
|
|
37
|
-
def patch_stderr() -> StringIO:
|
|
38
|
-
"""patch stdout and give an output"""
|
|
39
|
-
sys_stderr = sys.stderr
|
|
40
|
-
io_out = StringIO()
|
|
41
|
-
sys.stderr = io_out
|
|
42
|
-
try:
|
|
43
|
-
yield io_out
|
|
44
|
-
finally:
|
|
45
|
-
sys.stderr = sys_stderr
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class LogStreamingServiceTestCase(unittest.TestCase):
|
|
49
|
-
def setUp(self) -> None:
|
|
50
|
-
self.default_truncate_msg_len = pyspark.ml.torch.log_communication._TRUNCATE_MSG_LEN
|
|
51
|
-
pyspark.ml.torch.log_communication._TRUNCATE_MSG_LEN = 10
|
|
52
|
-
|
|
53
|
-
def tearDown(self) -> None:
|
|
54
|
-
pyspark.ml.torch.log_communication._TRUNCATE_MSG_LEN = self.default_truncate_msg_len
|
|
55
|
-
|
|
56
|
-
def basic_test(self) -> None:
|
|
57
|
-
server = LogStreamingServer()
|
|
58
|
-
server.start()
|
|
59
|
-
time.sleep(1)
|
|
60
|
-
client = LogStreamingClient("localhost", server.port)
|
|
61
|
-
with patch_stderr() as output:
|
|
62
|
-
client.send("msg 001")
|
|
63
|
-
client.send("msg 002")
|
|
64
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
65
|
-
output = output.getvalue()
|
|
66
|
-
self.assertIn("msg 001\nmsg 002\n", output)
|
|
67
|
-
client.close()
|
|
68
|
-
server.shutdown()
|
|
69
|
-
|
|
70
|
-
def test_truncate_message(self) -> None:
|
|
71
|
-
msg1 = "abc"
|
|
72
|
-
assert LogStreamingClientBase._maybe_truncate_msg(msg1) == msg1
|
|
73
|
-
msg2 = "abcdefghijkl"
|
|
74
|
-
assert LogStreamingClientBase._maybe_truncate_msg(msg2) == "abcdefghij...(truncated)"
|
|
75
|
-
|
|
76
|
-
def test_multiple_clients(self) -> None:
|
|
77
|
-
server = LogStreamingServer()
|
|
78
|
-
server.start()
|
|
79
|
-
time.sleep(1)
|
|
80
|
-
client1 = LogStreamingClient("localhost", server.port)
|
|
81
|
-
client2 = LogStreamingClient("localhost", server.port)
|
|
82
|
-
with patch_stderr() as output:
|
|
83
|
-
client1.send("c1 msg1")
|
|
84
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
85
|
-
client2.send("c2 msg1")
|
|
86
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
87
|
-
client1.send("c1 msg2")
|
|
88
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
89
|
-
client2.send("c2 msg2")
|
|
90
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
91
|
-
output = output.getvalue()
|
|
92
|
-
self.assertIn("c1 msg1\nc2 msg1\nc1 msg2\nc2 msg2\n", output)
|
|
93
|
-
client1.close()
|
|
94
|
-
client2.close()
|
|
95
|
-
server.shutdown()
|
|
96
|
-
|
|
97
|
-
def test_client_should_fail_gracefully(self) -> None:
|
|
98
|
-
server = LogStreamingServer()
|
|
99
|
-
server.start()
|
|
100
|
-
time.sleep(1)
|
|
101
|
-
client = LogStreamingClient("localhost", server.port)
|
|
102
|
-
client.send("msg 001")
|
|
103
|
-
server.shutdown()
|
|
104
|
-
for i in range(5):
|
|
105
|
-
client.send("msg 002")
|
|
106
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
107
|
-
self.assertTrue(client.failed)
|
|
108
|
-
client.close()
|
|
109
|
-
|
|
110
|
-
def test_client_send_intermittently(self) -> None:
|
|
111
|
-
server = LogStreamingServer()
|
|
112
|
-
server.start()
|
|
113
|
-
time.sleep(1)
|
|
114
|
-
client = LogStreamingClient("localhost", server.port)
|
|
115
|
-
with patch_stderr() as output:
|
|
116
|
-
client._connect()
|
|
117
|
-
# test client send half message first
|
|
118
|
-
client.send("msg part1")
|
|
119
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
120
|
-
# test client send another half message
|
|
121
|
-
client.send(" msg part2")
|
|
122
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
123
|
-
output = output.getvalue()
|
|
124
|
-
self.assertIn("msg part1\n msg part2\n", output)
|
|
125
|
-
client.close()
|
|
126
|
-
server.shutdown()
|
|
127
|
-
|
|
128
|
-
@staticmethod
|
|
129
|
-
def test_server_shutdown() -> None:
|
|
130
|
-
def run_test(client_ops: Callable) -> None:
|
|
131
|
-
server = LogStreamingServer()
|
|
132
|
-
server.start()
|
|
133
|
-
time.sleep(1)
|
|
134
|
-
client = LogStreamingClient("localhost", server.port)
|
|
135
|
-
client_ops(client)
|
|
136
|
-
server.shutdown()
|
|
137
|
-
client.close()
|
|
138
|
-
|
|
139
|
-
def client_ops_close(client: Any) -> None:
|
|
140
|
-
client.close()
|
|
141
|
-
|
|
142
|
-
def client_ops_send_half_msg(client: Any) -> None:
|
|
143
|
-
# Test server only recv incomplete message from client can exit.
|
|
144
|
-
client._connect()
|
|
145
|
-
client.sock.sendall(b"msg part1 ")
|
|
146
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
147
|
-
|
|
148
|
-
def client_ops_send_a_msg(client: Any) -> None:
|
|
149
|
-
client.send("msg1")
|
|
150
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
151
|
-
|
|
152
|
-
def client_ops_send_a_msg_and_close(client: Any) -> None:
|
|
153
|
-
client.send("msg1")
|
|
154
|
-
client.close()
|
|
155
|
-
time.sleep(_SERVER_POLL_INTERVAL + 1)
|
|
156
|
-
|
|
157
|
-
run_test(client_ops_close)
|
|
158
|
-
run_test(client_ops_send_half_msg)
|
|
159
|
-
run_test(client_ops_send_a_msg)
|
|
160
|
-
run_test(client_ops_send_a_msg_and_close)
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
if __name__ == "__main__":
|
|
164
|
-
from pyspark.ml.torch.tests.test_log_communication import * # noqa: F401,F403
|
|
165
|
-
|
|
166
|
-
try:
|
|
167
|
-
import xmlrunner
|
|
168
|
-
|
|
169
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
170
|
-
except ImportError:
|
|
171
|
-
testRunner = None
|
|
172
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
@@ -1,353 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
3
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
4
|
-
# this work for additional information regarding copyright ownership.
|
|
5
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
6
|
-
# (the "License"); you may not use this file except in compliance with
|
|
7
|
-
# the License. You may obtain a copy of the License at
|
|
8
|
-
#
|
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
#
|
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
# See the License for the specific language governing permissions and
|
|
15
|
-
# limitations under the License.
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
import os
|
|
19
|
-
import tempfile
|
|
20
|
-
from shutil import rmtree
|
|
21
|
-
import unittest
|
|
22
|
-
|
|
23
|
-
from numpy import array, array_equal
|
|
24
|
-
from py4j.protocol import Py4JJavaError
|
|
25
|
-
|
|
26
|
-
from pyspark.mllib.fpm import FPGrowth
|
|
27
|
-
from pyspark.mllib.recommendation import Rating
|
|
28
|
-
from pyspark.mllib.regression import LabeledPoint
|
|
29
|
-
from pyspark.serializers import CPickleSerializer
|
|
30
|
-
from pyspark.testing.mllibutils import MLlibTestCase
|
|
31
|
-
from pyspark.testing.utils import eventually
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
class ListTests(MLlibTestCase):
|
|
35
|
-
|
|
36
|
-
"""
|
|
37
|
-
Test MLlib algorithms on plain lists, to make sure they're passed through
|
|
38
|
-
as NumPy arrays.
|
|
39
|
-
"""
|
|
40
|
-
|
|
41
|
-
def test_bisecting_kmeans(self):
|
|
42
|
-
from pyspark.mllib.clustering import BisectingKMeans
|
|
43
|
-
|
|
44
|
-
data = array([0.0, 0.0, 1.0, 1.0, 9.0, 8.0, 8.0, 9.0]).reshape(4, 2)
|
|
45
|
-
bskm = BisectingKMeans()
|
|
46
|
-
model = bskm.train(self.sc.parallelize(data, 2), k=4)
|
|
47
|
-
p = array([0.0, 0.0])
|
|
48
|
-
rdd_p = self.sc.parallelize([p])
|
|
49
|
-
self.assertEqual(model.predict(p), model.predict(rdd_p).first())
|
|
50
|
-
self.assertEqual(model.computeCost(p), model.computeCost(rdd_p))
|
|
51
|
-
self.assertEqual(model.k, len(model.clusterCenters))
|
|
52
|
-
|
|
53
|
-
def test_kmeans(self):
|
|
54
|
-
from pyspark.mllib.clustering import KMeans
|
|
55
|
-
|
|
56
|
-
data = [
|
|
57
|
-
[0, 1.1],
|
|
58
|
-
[0, 1.2],
|
|
59
|
-
[1.1, 0],
|
|
60
|
-
[1.2, 0],
|
|
61
|
-
]
|
|
62
|
-
clusters = KMeans.train(
|
|
63
|
-
self.sc.parallelize(data),
|
|
64
|
-
2,
|
|
65
|
-
initializationMode="k-means||",
|
|
66
|
-
initializationSteps=7,
|
|
67
|
-
epsilon=1e-4,
|
|
68
|
-
)
|
|
69
|
-
self.assertEqual(clusters.predict(data[0]), clusters.predict(data[1]))
|
|
70
|
-
self.assertEqual(clusters.predict(data[2]), clusters.predict(data[3]))
|
|
71
|
-
|
|
72
|
-
def test_kmeans_deterministic(self):
|
|
73
|
-
from pyspark.mllib.clustering import KMeans
|
|
74
|
-
|
|
75
|
-
X = range(0, 100, 10)
|
|
76
|
-
Y = range(0, 100, 10)
|
|
77
|
-
data = [[x, y] for x, y in zip(X, Y)]
|
|
78
|
-
clusters1 = KMeans.train(
|
|
79
|
-
self.sc.parallelize(data),
|
|
80
|
-
3,
|
|
81
|
-
initializationMode="k-means||",
|
|
82
|
-
seed=42,
|
|
83
|
-
initializationSteps=7,
|
|
84
|
-
epsilon=1e-4,
|
|
85
|
-
)
|
|
86
|
-
clusters2 = KMeans.train(
|
|
87
|
-
self.sc.parallelize(data),
|
|
88
|
-
3,
|
|
89
|
-
initializationMode="k-means||",
|
|
90
|
-
seed=42,
|
|
91
|
-
initializationSteps=7,
|
|
92
|
-
epsilon=1e-4,
|
|
93
|
-
)
|
|
94
|
-
centers1 = clusters1.centers
|
|
95
|
-
centers2 = clusters2.centers
|
|
96
|
-
for c1, c2 in zip(centers1, centers2):
|
|
97
|
-
# TODO: Allow small numeric difference.
|
|
98
|
-
self.assertTrue(array_equal(c1, c2))
|
|
99
|
-
|
|
100
|
-
def test_gmm(self):
|
|
101
|
-
from pyspark.mllib.clustering import GaussianMixture
|
|
102
|
-
|
|
103
|
-
def condition():
|
|
104
|
-
data = self.sc.parallelize(
|
|
105
|
-
[
|
|
106
|
-
[1, 2],
|
|
107
|
-
[8, 9],
|
|
108
|
-
[-4, -3],
|
|
109
|
-
[-6, -7],
|
|
110
|
-
]
|
|
111
|
-
)
|
|
112
|
-
clusters = GaussianMixture.train(
|
|
113
|
-
data, 2, convergenceTol=0.001, maxIterations=10, seed=1
|
|
114
|
-
)
|
|
115
|
-
labels = clusters.predict(data).collect()
|
|
116
|
-
self.assertEqual(labels[0], labels[1])
|
|
117
|
-
self.assertEqual(labels[2], labels[3])
|
|
118
|
-
return True
|
|
119
|
-
|
|
120
|
-
eventually(condition, timeout=60, catch_assertions=True)
|
|
121
|
-
|
|
122
|
-
def test_gmm_deterministic(self):
|
|
123
|
-
from pyspark.mllib.clustering import GaussianMixture
|
|
124
|
-
|
|
125
|
-
x = range(0, 100, 10)
|
|
126
|
-
y = range(0, 100, 10)
|
|
127
|
-
data = self.sc.parallelize([[a, b] for a, b in zip(x, y)])
|
|
128
|
-
clusters1 = GaussianMixture.train(data, 5, convergenceTol=0.001, maxIterations=10, seed=63)
|
|
129
|
-
clusters2 = GaussianMixture.train(data, 5, convergenceTol=0.001, maxIterations=10, seed=63)
|
|
130
|
-
for c1, c2 in zip(clusters1.weights, clusters2.weights):
|
|
131
|
-
self.assertEqual(round(c1, 7), round(c2, 7))
|
|
132
|
-
|
|
133
|
-
def test_gmm_with_initial_model(self):
|
|
134
|
-
from pyspark.mllib.clustering import GaussianMixture
|
|
135
|
-
|
|
136
|
-
data = self.sc.parallelize([(-10, -5), (-9, -4), (10, 5), (9, 4)])
|
|
137
|
-
|
|
138
|
-
gmm1 = GaussianMixture.train(data, 2, convergenceTol=0.001, maxIterations=10, seed=63)
|
|
139
|
-
gmm2 = GaussianMixture.train(
|
|
140
|
-
data, 2, convergenceTol=0.001, maxIterations=10, seed=63, initialModel=gmm1
|
|
141
|
-
)
|
|
142
|
-
self.assertAlmostEqual((gmm1.weights - gmm2.weights).sum(), 0.0)
|
|
143
|
-
|
|
144
|
-
def test_classification(self):
|
|
145
|
-
from pyspark.mllib.classification import LogisticRegressionWithSGD, SVMWithSGD, NaiveBayes
|
|
146
|
-
from pyspark.mllib.tree import (
|
|
147
|
-
DecisionTree,
|
|
148
|
-
DecisionTreeModel,
|
|
149
|
-
RandomForest,
|
|
150
|
-
RandomForestModel,
|
|
151
|
-
GradientBoostedTrees,
|
|
152
|
-
GradientBoostedTreesModel,
|
|
153
|
-
)
|
|
154
|
-
|
|
155
|
-
data = [
|
|
156
|
-
LabeledPoint(0.0, [1, 0, 0]),
|
|
157
|
-
LabeledPoint(1.0, [0, 1, 1]),
|
|
158
|
-
LabeledPoint(0.0, [2, 0, 0]),
|
|
159
|
-
LabeledPoint(1.0, [0, 2, 1]),
|
|
160
|
-
]
|
|
161
|
-
rdd = self.sc.parallelize(data)
|
|
162
|
-
features = [p.features.tolist() for p in data]
|
|
163
|
-
|
|
164
|
-
temp_dir = tempfile.mkdtemp()
|
|
165
|
-
|
|
166
|
-
lr_model = LogisticRegressionWithSGD.train(rdd, iterations=10)
|
|
167
|
-
self.assertTrue(lr_model.predict(features[0]) <= 0)
|
|
168
|
-
self.assertTrue(lr_model.predict(features[1]) > 0)
|
|
169
|
-
self.assertTrue(lr_model.predict(features[2]) <= 0)
|
|
170
|
-
self.assertTrue(lr_model.predict(features[3]) > 0)
|
|
171
|
-
|
|
172
|
-
svm_model = SVMWithSGD.train(rdd, iterations=10)
|
|
173
|
-
self.assertTrue(svm_model.predict(features[0]) <= 0)
|
|
174
|
-
self.assertTrue(svm_model.predict(features[1]) > 0)
|
|
175
|
-
self.assertTrue(svm_model.predict(features[2]) <= 0)
|
|
176
|
-
self.assertTrue(svm_model.predict(features[3]) > 0)
|
|
177
|
-
|
|
178
|
-
nb_model = NaiveBayes.train(rdd)
|
|
179
|
-
self.assertTrue(nb_model.predict(features[0]) <= 0)
|
|
180
|
-
self.assertTrue(nb_model.predict(features[1]) > 0)
|
|
181
|
-
self.assertTrue(nb_model.predict(features[2]) <= 0)
|
|
182
|
-
self.assertTrue(nb_model.predict(features[3]) > 0)
|
|
183
|
-
|
|
184
|
-
categoricalFeaturesInfo = {0: 3} # feature 0 has 3 categories
|
|
185
|
-
dt_model = DecisionTree.trainClassifier(
|
|
186
|
-
rdd, numClasses=2, categoricalFeaturesInfo=categoricalFeaturesInfo, maxBins=4
|
|
187
|
-
)
|
|
188
|
-
self.assertTrue(dt_model.predict(features[0]) <= 0)
|
|
189
|
-
self.assertTrue(dt_model.predict(features[1]) > 0)
|
|
190
|
-
self.assertTrue(dt_model.predict(features[2]) <= 0)
|
|
191
|
-
self.assertTrue(dt_model.predict(features[3]) > 0)
|
|
192
|
-
|
|
193
|
-
dt_model_dir = os.path.join(temp_dir, "dt")
|
|
194
|
-
dt_model.save(self.sc, dt_model_dir)
|
|
195
|
-
same_dt_model = DecisionTreeModel.load(self.sc, dt_model_dir)
|
|
196
|
-
self.assertEqual(same_dt_model.toDebugString(), dt_model.toDebugString())
|
|
197
|
-
|
|
198
|
-
rf_model = RandomForest.trainClassifier(
|
|
199
|
-
rdd,
|
|
200
|
-
numClasses=2,
|
|
201
|
-
categoricalFeaturesInfo=categoricalFeaturesInfo,
|
|
202
|
-
numTrees=10,
|
|
203
|
-
maxBins=4,
|
|
204
|
-
seed=1,
|
|
205
|
-
)
|
|
206
|
-
self.assertTrue(rf_model.predict(features[0]) <= 0)
|
|
207
|
-
self.assertTrue(rf_model.predict(features[1]) > 0)
|
|
208
|
-
self.assertTrue(rf_model.predict(features[2]) <= 0)
|
|
209
|
-
self.assertTrue(rf_model.predict(features[3]) > 0)
|
|
210
|
-
|
|
211
|
-
rf_model_dir = os.path.join(temp_dir, "rf")
|
|
212
|
-
rf_model.save(self.sc, rf_model_dir)
|
|
213
|
-
same_rf_model = RandomForestModel.load(self.sc, rf_model_dir)
|
|
214
|
-
self.assertEqual(same_rf_model.toDebugString(), rf_model.toDebugString())
|
|
215
|
-
|
|
216
|
-
gbt_model = GradientBoostedTrees.trainClassifier(
|
|
217
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numIterations=4
|
|
218
|
-
)
|
|
219
|
-
self.assertTrue(gbt_model.predict(features[0]) <= 0)
|
|
220
|
-
self.assertTrue(gbt_model.predict(features[1]) > 0)
|
|
221
|
-
self.assertTrue(gbt_model.predict(features[2]) <= 0)
|
|
222
|
-
self.assertTrue(gbt_model.predict(features[3]) > 0)
|
|
223
|
-
|
|
224
|
-
gbt_model_dir = os.path.join(temp_dir, "gbt")
|
|
225
|
-
gbt_model.save(self.sc, gbt_model_dir)
|
|
226
|
-
same_gbt_model = GradientBoostedTreesModel.load(self.sc, gbt_model_dir)
|
|
227
|
-
self.assertEqual(same_gbt_model.toDebugString(), gbt_model.toDebugString())
|
|
228
|
-
|
|
229
|
-
try:
|
|
230
|
-
rmtree(temp_dir)
|
|
231
|
-
except OSError:
|
|
232
|
-
pass
|
|
233
|
-
|
|
234
|
-
def test_regression(self):
|
|
235
|
-
from pyspark.mllib.regression import (
|
|
236
|
-
LinearRegressionWithSGD,
|
|
237
|
-
LassoWithSGD,
|
|
238
|
-
RidgeRegressionWithSGD,
|
|
239
|
-
)
|
|
240
|
-
from pyspark.mllib.tree import DecisionTree, RandomForest, GradientBoostedTrees
|
|
241
|
-
|
|
242
|
-
data = [
|
|
243
|
-
LabeledPoint(-1.0, [0, -1]),
|
|
244
|
-
LabeledPoint(1.0, [0, 1]),
|
|
245
|
-
LabeledPoint(-1.0, [0, -2]),
|
|
246
|
-
LabeledPoint(1.0, [0, 2]),
|
|
247
|
-
]
|
|
248
|
-
rdd = self.sc.parallelize(data)
|
|
249
|
-
features = [p.features.tolist() for p in data]
|
|
250
|
-
|
|
251
|
-
lr_model = LinearRegressionWithSGD.train(rdd, iterations=10)
|
|
252
|
-
self.assertTrue(lr_model.predict(features[0]) <= 0)
|
|
253
|
-
self.assertTrue(lr_model.predict(features[1]) > 0)
|
|
254
|
-
self.assertTrue(lr_model.predict(features[2]) <= 0)
|
|
255
|
-
self.assertTrue(lr_model.predict(features[3]) > 0)
|
|
256
|
-
|
|
257
|
-
lasso_model = LassoWithSGD.train(rdd, iterations=10)
|
|
258
|
-
self.assertTrue(lasso_model.predict(features[0]) <= 0)
|
|
259
|
-
self.assertTrue(lasso_model.predict(features[1]) > 0)
|
|
260
|
-
self.assertTrue(lasso_model.predict(features[2]) <= 0)
|
|
261
|
-
self.assertTrue(lasso_model.predict(features[3]) > 0)
|
|
262
|
-
|
|
263
|
-
rr_model = RidgeRegressionWithSGD.train(rdd, iterations=10)
|
|
264
|
-
self.assertTrue(rr_model.predict(features[0]) <= 0)
|
|
265
|
-
self.assertTrue(rr_model.predict(features[1]) > 0)
|
|
266
|
-
self.assertTrue(rr_model.predict(features[2]) <= 0)
|
|
267
|
-
self.assertTrue(rr_model.predict(features[3]) > 0)
|
|
268
|
-
|
|
269
|
-
categoricalFeaturesInfo = {0: 2} # feature 0 has 2 categories
|
|
270
|
-
dt_model = DecisionTree.trainRegressor(
|
|
271
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, maxBins=4
|
|
272
|
-
)
|
|
273
|
-
self.assertTrue(dt_model.predict(features[0]) <= 0)
|
|
274
|
-
self.assertTrue(dt_model.predict(features[1]) > 0)
|
|
275
|
-
self.assertTrue(dt_model.predict(features[2]) <= 0)
|
|
276
|
-
self.assertTrue(dt_model.predict(features[3]) > 0)
|
|
277
|
-
|
|
278
|
-
rf_model = RandomForest.trainRegressor(
|
|
279
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numTrees=10, maxBins=4, seed=1
|
|
280
|
-
)
|
|
281
|
-
self.assertTrue(rf_model.predict(features[0]) <= 0)
|
|
282
|
-
self.assertTrue(rf_model.predict(features[1]) > 0)
|
|
283
|
-
self.assertTrue(rf_model.predict(features[2]) <= 0)
|
|
284
|
-
self.assertTrue(rf_model.predict(features[3]) > 0)
|
|
285
|
-
|
|
286
|
-
gbt_model = GradientBoostedTrees.trainRegressor(
|
|
287
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numIterations=4
|
|
288
|
-
)
|
|
289
|
-
self.assertTrue(gbt_model.predict(features[0]) <= 0)
|
|
290
|
-
self.assertTrue(gbt_model.predict(features[1]) > 0)
|
|
291
|
-
self.assertTrue(gbt_model.predict(features[2]) <= 0)
|
|
292
|
-
self.assertTrue(gbt_model.predict(features[3]) > 0)
|
|
293
|
-
|
|
294
|
-
try:
|
|
295
|
-
LinearRegressionWithSGD.train(rdd, initialWeights=array([1.0, 1.0]), iterations=10)
|
|
296
|
-
LassoWithSGD.train(rdd, initialWeights=array([1.0, 1.0]), iterations=10)
|
|
297
|
-
RidgeRegressionWithSGD.train(rdd, initialWeights=array([1.0, 1.0]), iterations=10)
|
|
298
|
-
except ValueError:
|
|
299
|
-
self.fail()
|
|
300
|
-
|
|
301
|
-
# Verify that maxBins is being passed through
|
|
302
|
-
GradientBoostedTrees.trainRegressor(
|
|
303
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numIterations=4, maxBins=32
|
|
304
|
-
)
|
|
305
|
-
with self.assertRaises(Exception):
|
|
306
|
-
GradientBoostedTrees.trainRegressor(
|
|
307
|
-
rdd, categoricalFeaturesInfo=categoricalFeaturesInfo, numIterations=4, maxBins=1
|
|
308
|
-
)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class ALSTests(MLlibTestCase):
|
|
312
|
-
def test_als_ratings_serialize(self):
|
|
313
|
-
ser = CPickleSerializer()
|
|
314
|
-
r = Rating(7, 1123, 3.14)
|
|
315
|
-
jr = self.sc._jvm.org.apache.spark.mllib.api.python.SerDe.loads(bytearray(ser.dumps(r)))
|
|
316
|
-
nr = ser.loads(bytes(self.sc._jvm.org.apache.spark.mllib.api.python.SerDe.dumps(jr)))
|
|
317
|
-
self.assertEqual(r.user, nr.user)
|
|
318
|
-
self.assertEqual(r.product, nr.product)
|
|
319
|
-
self.assertAlmostEqual(r.rating, nr.rating, 2)
|
|
320
|
-
|
|
321
|
-
def test_als_ratings_id_long_error(self):
|
|
322
|
-
ser = CPickleSerializer()
|
|
323
|
-
r = Rating(1205640308657491975, 50233468418, 1.0)
|
|
324
|
-
# rating user id exceeds max int value, should fail when pickled
|
|
325
|
-
self.assertRaises(
|
|
326
|
-
Py4JJavaError,
|
|
327
|
-
self.sc._jvm.org.apache.spark.mllib.api.python.SerDe.loads,
|
|
328
|
-
bytearray(ser.dumps(r)),
|
|
329
|
-
)
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
class FPGrowthTest(MLlibTestCase):
|
|
333
|
-
def test_fpgrowth(self):
|
|
334
|
-
data = [["a", "b", "c"], ["a", "b", "d", "e"], ["a", "c", "e"], ["a", "c", "f"]]
|
|
335
|
-
rdd = self.sc.parallelize(data, 2)
|
|
336
|
-
model1 = FPGrowth.train(rdd, 0.6, 2)
|
|
337
|
-
# use default data partition number when numPartitions is not specified
|
|
338
|
-
model2 = FPGrowth.train(rdd, 0.6)
|
|
339
|
-
self.assertEqual(
|
|
340
|
-
sorted(model1.freqItemsets().collect()), sorted(model2.freqItemsets().collect())
|
|
341
|
-
)
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
if __name__ == "__main__":
|
|
345
|
-
from pyspark.mllib.tests.test_algorithms import * # noqa: F401
|
|
346
|
-
|
|
347
|
-
try:
|
|
348
|
-
import xmlrunner
|
|
349
|
-
|
|
350
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
351
|
-
except ImportError:
|
|
352
|
-
testRunner = None
|
|
353
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|