snowpark-connect 0.23.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/function_defaults.py +207 -0
- snowflake/snowpark_connect/expression/literal.py +18 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- snowflake/snowpark_connect/expression/map_expression.py +10 -1
- snowflake/snowpark_connect/expression/map_extension.py +12 -2
- 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 +836 -365
- 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 +18 -36
- snowflake/snowpark_connect/relation/map_extension.py +56 -15
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- snowflake/snowpark_connect/relation/map_row_ops.py +2 -29
- 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/read/utils.py +6 -7
- snowflake/snowpark_connect/relation/utils.py +1 -170
- 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.23.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/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.23.0.dist-info/RECORD +0 -893
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,130 +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
|
-
from pyspark.statcounter import StatCounter
|
|
18
|
-
from pyspark.testing.utils import ReusedPySparkTestCase
|
|
19
|
-
import math
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class StatCounterTests(ReusedPySparkTestCase):
|
|
23
|
-
def test_base(self):
|
|
24
|
-
stats = self.sc.parallelize([1.0, 2.0, 3.0, 4.0]).stats()
|
|
25
|
-
self.assertEqual(stats.count(), 4)
|
|
26
|
-
self.assertEqual(stats.max(), 4.0)
|
|
27
|
-
self.assertEqual(stats.mean(), 2.5)
|
|
28
|
-
self.assertEqual(stats.min(), 1.0)
|
|
29
|
-
self.assertAlmostEqual(stats.stdev(), 1.118033988749895)
|
|
30
|
-
self.assertAlmostEqual(stats.sampleStdev(), 1.2909944487358056)
|
|
31
|
-
self.assertEqual(stats.sum(), 10.0)
|
|
32
|
-
self.assertAlmostEqual(stats.variance(), 1.25)
|
|
33
|
-
self.assertAlmostEqual(stats.sampleVariance(), 1.6666666666666667)
|
|
34
|
-
|
|
35
|
-
def test_as_dict(self):
|
|
36
|
-
stats = self.sc.parallelize([1.0, 2.0, 3.0, 4.0]).stats().asDict()
|
|
37
|
-
self.assertEqual(stats["count"], 4)
|
|
38
|
-
self.assertEqual(stats["max"], 4.0)
|
|
39
|
-
self.assertEqual(stats["mean"], 2.5)
|
|
40
|
-
self.assertEqual(stats["min"], 1.0)
|
|
41
|
-
self.assertAlmostEqual(stats["stdev"], 1.2909944487358056)
|
|
42
|
-
self.assertEqual(stats["sum"], 10.0)
|
|
43
|
-
self.assertAlmostEqual(stats["variance"], 1.6666666666666667)
|
|
44
|
-
|
|
45
|
-
stats = self.sc.parallelize([1.0, 2.0, 3.0, 4.0]).stats().asDict(sample=True)
|
|
46
|
-
self.assertEqual(stats["count"], 4)
|
|
47
|
-
self.assertEqual(stats["max"], 4.0)
|
|
48
|
-
self.assertEqual(stats["mean"], 2.5)
|
|
49
|
-
self.assertEqual(stats["min"], 1.0)
|
|
50
|
-
self.assertAlmostEqual(stats["stdev"], 1.118033988749895)
|
|
51
|
-
self.assertEqual(stats["sum"], 10.0)
|
|
52
|
-
self.assertAlmostEqual(stats["variance"], 1.25)
|
|
53
|
-
|
|
54
|
-
def test_merge(self):
|
|
55
|
-
stats = StatCounter([1.0, 2.0, 3.0, 4.0])
|
|
56
|
-
stats.merge(5.0)
|
|
57
|
-
self.assertEqual(stats.count(), 5)
|
|
58
|
-
self.assertEqual(stats.max(), 5.0)
|
|
59
|
-
self.assertEqual(stats.mean(), 3.0)
|
|
60
|
-
self.assertEqual(stats.min(), 1.0)
|
|
61
|
-
self.assertAlmostEqual(stats.stdev(), 1.414213562373095)
|
|
62
|
-
self.assertAlmostEqual(stats.sampleStdev(), 1.5811388300841898)
|
|
63
|
-
self.assertEqual(stats.sum(), 15.0)
|
|
64
|
-
self.assertAlmostEqual(stats.variance(), 2.0)
|
|
65
|
-
self.assertAlmostEqual(stats.sampleVariance(), 2.5)
|
|
66
|
-
|
|
67
|
-
def test_merge_stats(self):
|
|
68
|
-
stats1 = StatCounter([1.0, 2.0, 3.0, 4.0])
|
|
69
|
-
stats2 = StatCounter([1.0, 2.0, 3.0, 4.0])
|
|
70
|
-
stats = stats1.mergeStats(stats2)
|
|
71
|
-
self.assertEqual(stats.count(), 8)
|
|
72
|
-
self.assertEqual(stats.max(), 4.0)
|
|
73
|
-
self.assertEqual(stats.mean(), 2.5)
|
|
74
|
-
self.assertEqual(stats.min(), 1.0)
|
|
75
|
-
self.assertAlmostEqual(stats.stdev(), 1.118033988749895)
|
|
76
|
-
self.assertAlmostEqual(stats.sampleStdev(), 1.1952286093343936)
|
|
77
|
-
self.assertEqual(stats.sum(), 20.0)
|
|
78
|
-
self.assertAlmostEqual(stats.variance(), 1.25)
|
|
79
|
-
self.assertAlmostEqual(stats.sampleVariance(), 1.4285714285714286)
|
|
80
|
-
execution_statements = [
|
|
81
|
-
StatCounter([1.0, 2.0]).mergeStats(StatCounter(range(1, 301))),
|
|
82
|
-
StatCounter(range(1, 301)).mergeStats(StatCounter([1.0, 2.0])),
|
|
83
|
-
]
|
|
84
|
-
for stats in execution_statements:
|
|
85
|
-
self.assertEqual(stats.count(), 302)
|
|
86
|
-
self.assertEqual(stats.max(), 300.0)
|
|
87
|
-
self.assertEqual(stats.min(), 1.0)
|
|
88
|
-
self.assertAlmostEqual(stats.mean(), 149.51324503311)
|
|
89
|
-
self.assertAlmostEqual(stats.variance(), 7596.302804701549)
|
|
90
|
-
self.assertAlmostEqual(stats.sampleVariance(), 7621.539691095905)
|
|
91
|
-
|
|
92
|
-
def test_variance_when_size_zero(self):
|
|
93
|
-
# SPARK-38854: Test case to improve test coverage when
|
|
94
|
-
# StatCounter argument is empty list or None
|
|
95
|
-
arguments = [[], None]
|
|
96
|
-
|
|
97
|
-
for arg in arguments:
|
|
98
|
-
stats = StatCounter(arg)
|
|
99
|
-
self.assertTrue(math.isnan(stats.variance()))
|
|
100
|
-
self.assertTrue(math.isnan(stats.sampleVariance()))
|
|
101
|
-
self.assertEqual(stats.count(), 0)
|
|
102
|
-
self.assertTrue(math.isinf(stats.max()))
|
|
103
|
-
self.assertTrue(math.isinf(stats.min()))
|
|
104
|
-
self.assertEqual(stats.mean(), 0.0)
|
|
105
|
-
|
|
106
|
-
def test_merge_stats_with_self(self):
|
|
107
|
-
stats = StatCounter([1.0, 2.0, 3.0, 4.0])
|
|
108
|
-
stats.mergeStats(stats)
|
|
109
|
-
self.assertEqual(stats.count(), 8)
|
|
110
|
-
self.assertEqual(stats.max(), 4.0)
|
|
111
|
-
self.assertEqual(stats.mean(), 2.5)
|
|
112
|
-
self.assertEqual(stats.min(), 1.0)
|
|
113
|
-
self.assertAlmostEqual(stats.stdev(), 1.118033988749895)
|
|
114
|
-
self.assertAlmostEqual(stats.sampleStdev(), 1.1952286093343936)
|
|
115
|
-
self.assertEqual(stats.sum(), 20.0)
|
|
116
|
-
self.assertAlmostEqual(stats.variance(), 1.25)
|
|
117
|
-
self.assertAlmostEqual(stats.sampleVariance(), 1.4285714285714286)
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
if __name__ == "__main__":
|
|
121
|
-
import unittest
|
|
122
|
-
from pyspark.tests.test_statcounter import * # noqa: F401
|
|
123
|
-
|
|
124
|
-
try:
|
|
125
|
-
import xmlrunner
|
|
126
|
-
|
|
127
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
128
|
-
except ImportError:
|
|
129
|
-
testRunner = None
|
|
130
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,350 +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
|
-
import os
|
|
18
|
-
import random
|
|
19
|
-
import stat
|
|
20
|
-
import sys
|
|
21
|
-
import tempfile
|
|
22
|
-
import time
|
|
23
|
-
import unittest
|
|
24
|
-
|
|
25
|
-
from pyspark import SparkConf, SparkContext, TaskContext, BarrierTaskContext
|
|
26
|
-
from pyspark.testing.utils import PySparkTestCase, SPARK_HOME, eventually
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
class TaskContextTests(PySparkTestCase):
|
|
30
|
-
def setUp(self):
|
|
31
|
-
self._old_sys_path = list(sys.path)
|
|
32
|
-
class_name = self.__class__.__name__
|
|
33
|
-
# Allow retries even though they are normally disabled in local mode
|
|
34
|
-
self.sc = SparkContext("local[4, 2]", class_name)
|
|
35
|
-
|
|
36
|
-
def test_stage_id(self):
|
|
37
|
-
"""Test the stage ids are available and incrementing as expected."""
|
|
38
|
-
rdd = self.sc.parallelize(range(10))
|
|
39
|
-
stage1 = rdd.map(lambda x: TaskContext.get().stageId()).take(1)[0]
|
|
40
|
-
stage2 = rdd.map(lambda x: TaskContext.get().stageId()).take(1)[0]
|
|
41
|
-
# Test using the constructor directly rather than the get()
|
|
42
|
-
stage3 = rdd.map(lambda x: TaskContext().stageId()).take(1)[0]
|
|
43
|
-
self.assertEqual(stage1 + 1, stage2)
|
|
44
|
-
self.assertEqual(stage1 + 2, stage3)
|
|
45
|
-
self.assertEqual(stage2 + 1, stage3)
|
|
46
|
-
|
|
47
|
-
def test_resources(self):
|
|
48
|
-
"""Test the resources are empty by default."""
|
|
49
|
-
rdd = self.sc.parallelize(range(10))
|
|
50
|
-
resources1 = rdd.map(lambda x: TaskContext.get().resources()).take(1)[0]
|
|
51
|
-
# Test using the constructor directly rather than the get()
|
|
52
|
-
resources2 = rdd.map(lambda x: TaskContext().resources()).take(1)[0]
|
|
53
|
-
self.assertEqual(len(resources1), 0)
|
|
54
|
-
self.assertEqual(len(resources2), 0)
|
|
55
|
-
|
|
56
|
-
def test_partition_id(self):
|
|
57
|
-
"""Test the partition id."""
|
|
58
|
-
rdd1 = self.sc.parallelize(range(10), 1)
|
|
59
|
-
rdd2 = self.sc.parallelize(range(10), 2)
|
|
60
|
-
pids1 = rdd1.map(lambda x: TaskContext.get().partitionId()).collect()
|
|
61
|
-
pids2 = rdd2.map(lambda x: TaskContext.get().partitionId()).collect()
|
|
62
|
-
self.assertEqual(0, pids1[0])
|
|
63
|
-
self.assertEqual(0, pids1[9])
|
|
64
|
-
self.assertEqual(0, pids2[0])
|
|
65
|
-
self.assertEqual(1, pids2[9])
|
|
66
|
-
|
|
67
|
-
def test_attempt_number(self):
|
|
68
|
-
"""Verify the attempt numbers are correctly reported."""
|
|
69
|
-
rdd = self.sc.parallelize(range(10))
|
|
70
|
-
# Verify a simple job with no failures
|
|
71
|
-
attempt_numbers = rdd.map(lambda x: TaskContext.get().attemptNumber()).collect()
|
|
72
|
-
map(lambda attempt: self.assertEqual(0, attempt), attempt_numbers)
|
|
73
|
-
|
|
74
|
-
def fail_on_first(x):
|
|
75
|
-
"""Fail on the first attempt so we get a positive attempt number"""
|
|
76
|
-
tc = TaskContext.get()
|
|
77
|
-
attempt_number = tc.attemptNumber()
|
|
78
|
-
partition_id = tc.partitionId()
|
|
79
|
-
attempt_id = tc.taskAttemptId()
|
|
80
|
-
if attempt_number == 0 and partition_id == 0:
|
|
81
|
-
raise RuntimeError("Failing on first attempt")
|
|
82
|
-
else:
|
|
83
|
-
return [x, partition_id, attempt_number, attempt_id]
|
|
84
|
-
|
|
85
|
-
result = rdd.map(fail_on_first).collect()
|
|
86
|
-
# We should re-submit the first partition to it but other partitions should be attempt 0
|
|
87
|
-
self.assertEqual([0, 0, 1], result[0][0:3])
|
|
88
|
-
self.assertEqual([9, 3, 0], result[9][0:3])
|
|
89
|
-
first_partition = filter(lambda x: x[1] == 0, result)
|
|
90
|
-
map(lambda x: self.assertEqual(1, x[2]), first_partition)
|
|
91
|
-
other_partitions = filter(lambda x: x[1] != 0, result)
|
|
92
|
-
map(lambda x: self.assertEqual(0, x[2]), other_partitions)
|
|
93
|
-
# The task attempt id should be different
|
|
94
|
-
self.assertTrue(result[0][3] != result[9][3])
|
|
95
|
-
|
|
96
|
-
def test_tc_on_driver(self):
|
|
97
|
-
"""Verify that getting the TaskContext on the driver returns None."""
|
|
98
|
-
tc = TaskContext.get()
|
|
99
|
-
self.assertTrue(tc is None)
|
|
100
|
-
|
|
101
|
-
def test_get_local_property(self):
|
|
102
|
-
"""Verify that local properties set on the driver are available in TaskContext."""
|
|
103
|
-
key = "testkey"
|
|
104
|
-
value = "testvalue"
|
|
105
|
-
self.sc.setLocalProperty(key, value)
|
|
106
|
-
try:
|
|
107
|
-
rdd = self.sc.parallelize(range(1), 1)
|
|
108
|
-
prop1 = rdd.map(lambda _: TaskContext.get().getLocalProperty(key)).collect()[0]
|
|
109
|
-
self.assertEqual(prop1, value)
|
|
110
|
-
prop2 = rdd.map(lambda _: TaskContext.get().getLocalProperty("otherkey")).collect()[0]
|
|
111
|
-
self.assertTrue(prop2 is None)
|
|
112
|
-
finally:
|
|
113
|
-
self.sc.setLocalProperty(key, None)
|
|
114
|
-
|
|
115
|
-
def test_barrier(self):
|
|
116
|
-
"""
|
|
117
|
-
Verify that BarrierTaskContext.barrier() performs global sync among all barrier tasks
|
|
118
|
-
within a stage.
|
|
119
|
-
"""
|
|
120
|
-
rdd = self.sc.parallelize(range(10), 4)
|
|
121
|
-
|
|
122
|
-
def f(iterator):
|
|
123
|
-
yield sum(iterator)
|
|
124
|
-
|
|
125
|
-
def context_barrier(x):
|
|
126
|
-
tc = BarrierTaskContext.get()
|
|
127
|
-
time.sleep(random.randint(1, 5) * 2)
|
|
128
|
-
tc.barrier()
|
|
129
|
-
return time.time()
|
|
130
|
-
|
|
131
|
-
times = rdd.barrier().mapPartitions(f).map(context_barrier).collect()
|
|
132
|
-
self.assertTrue(max(times) - min(times) < 2)
|
|
133
|
-
|
|
134
|
-
def test_all_gather(self):
|
|
135
|
-
"""
|
|
136
|
-
Verify that BarrierTaskContext.allGather() performs global sync among all barrier tasks
|
|
137
|
-
within a stage and passes messages properly.
|
|
138
|
-
"""
|
|
139
|
-
rdd = self.sc.parallelize(range(10), 4)
|
|
140
|
-
|
|
141
|
-
def f(iterator):
|
|
142
|
-
yield sum(iterator)
|
|
143
|
-
|
|
144
|
-
def context_barrier(x):
|
|
145
|
-
tc = BarrierTaskContext.get()
|
|
146
|
-
time.sleep(random.randint(1, 10))
|
|
147
|
-
out = tc.allGather(str(tc.partitionId()))
|
|
148
|
-
pids = [int(e) for e in out]
|
|
149
|
-
return pids
|
|
150
|
-
|
|
151
|
-
pids = rdd.barrier().mapPartitions(f).map(context_barrier).collect()[0]
|
|
152
|
-
self.assertEqual(pids, [0, 1, 2, 3])
|
|
153
|
-
|
|
154
|
-
def test_barrier_infos(self):
|
|
155
|
-
"""
|
|
156
|
-
Verify that BarrierTaskContext.getTaskInfos() returns a list of all task infos in the
|
|
157
|
-
barrier stage.
|
|
158
|
-
"""
|
|
159
|
-
rdd = self.sc.parallelize(range(10), 4)
|
|
160
|
-
|
|
161
|
-
def f(iterator):
|
|
162
|
-
yield sum(iterator)
|
|
163
|
-
|
|
164
|
-
taskInfos = (
|
|
165
|
-
rdd.barrier()
|
|
166
|
-
.mapPartitions(f)
|
|
167
|
-
.map(lambda x: BarrierTaskContext.get().getTaskInfos())
|
|
168
|
-
.collect()
|
|
169
|
-
)
|
|
170
|
-
self.assertTrue(len(taskInfos) == 4)
|
|
171
|
-
self.assertTrue(len(taskInfos[0]) == 4)
|
|
172
|
-
|
|
173
|
-
def test_context_get(self):
|
|
174
|
-
"""
|
|
175
|
-
Verify that TaskContext.get() works both in or not in a barrier stage.
|
|
176
|
-
"""
|
|
177
|
-
rdd = self.sc.parallelize(range(10), 4)
|
|
178
|
-
|
|
179
|
-
def f(iterator):
|
|
180
|
-
taskContext = TaskContext.get()
|
|
181
|
-
if isinstance(taskContext, BarrierTaskContext):
|
|
182
|
-
yield taskContext.partitionId() + 1
|
|
183
|
-
elif isinstance(taskContext, TaskContext):
|
|
184
|
-
yield taskContext.partitionId() + 2
|
|
185
|
-
else:
|
|
186
|
-
yield -1
|
|
187
|
-
|
|
188
|
-
# for normal stage
|
|
189
|
-
result1 = rdd.mapPartitions(f).collect()
|
|
190
|
-
self.assertTrue(result1 == [2, 3, 4, 5])
|
|
191
|
-
# for barrier stage
|
|
192
|
-
result2 = rdd.barrier().mapPartitions(f).collect()
|
|
193
|
-
self.assertTrue(result2 == [1, 2, 3, 4])
|
|
194
|
-
|
|
195
|
-
def test_barrier_context_get(self):
|
|
196
|
-
"""
|
|
197
|
-
Verify that BarrierTaskContext.get() should only works in a barrier stage.
|
|
198
|
-
"""
|
|
199
|
-
rdd = self.sc.parallelize(range(10), 4)
|
|
200
|
-
|
|
201
|
-
def f(iterator):
|
|
202
|
-
try:
|
|
203
|
-
taskContext = BarrierTaskContext.get()
|
|
204
|
-
except Exception:
|
|
205
|
-
yield -1
|
|
206
|
-
else:
|
|
207
|
-
yield taskContext.partitionId()
|
|
208
|
-
|
|
209
|
-
# for normal stage
|
|
210
|
-
result1 = rdd.mapPartitions(f).collect()
|
|
211
|
-
self.assertTrue(result1 == [-1, -1, -1, -1])
|
|
212
|
-
# for barrier stage
|
|
213
|
-
result2 = rdd.barrier().mapPartitions(f).collect()
|
|
214
|
-
self.assertTrue(result2 == [0, 1, 2, 3])
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
class TaskContextTestsWithWorkerReuse(unittest.TestCase):
|
|
218
|
-
def setUp(self):
|
|
219
|
-
class_name = self.__class__.__name__
|
|
220
|
-
conf = SparkConf().set("spark.python.worker.reuse", "true")
|
|
221
|
-
self.sc = SparkContext("local[2]", class_name, conf=conf)
|
|
222
|
-
|
|
223
|
-
def test_barrier_with_python_worker_reuse(self):
|
|
224
|
-
"""
|
|
225
|
-
Regression test for SPARK-25921: verify that BarrierTaskContext.barrier() with
|
|
226
|
-
reused python worker.
|
|
227
|
-
"""
|
|
228
|
-
# start a normal job first to start all workers and get all worker pids
|
|
229
|
-
worker_pids = self.sc.parallelize(range(2), 2).map(lambda x: os.getpid()).collect()
|
|
230
|
-
# the worker will reuse in this barrier job
|
|
231
|
-
rdd = self.sc.parallelize(range(10), 2)
|
|
232
|
-
|
|
233
|
-
def f(iterator):
|
|
234
|
-
yield sum(iterator)
|
|
235
|
-
|
|
236
|
-
def context_barrier(x):
|
|
237
|
-
tc = BarrierTaskContext.get()
|
|
238
|
-
time.sleep(random.randint(1, 5) * 2)
|
|
239
|
-
tc.barrier()
|
|
240
|
-
return (time.time(), os.getpid())
|
|
241
|
-
|
|
242
|
-
result = rdd.barrier().mapPartitions(f).map(context_barrier).collect()
|
|
243
|
-
times = list(map(lambda x: x[0], result))
|
|
244
|
-
pids = list(map(lambda x: x[1], result))
|
|
245
|
-
# check both barrier and worker reuse effect
|
|
246
|
-
self.assertTrue(max(times) - min(times) < 2)
|
|
247
|
-
for pid in pids:
|
|
248
|
-
self.assertTrue(pid in worker_pids)
|
|
249
|
-
|
|
250
|
-
def check_task_context_correct_with_python_worker_reuse(self):
|
|
251
|
-
"""Verify the task context correct when reused python worker"""
|
|
252
|
-
# start a normal job first to start all workers and get all worker pids
|
|
253
|
-
worker_pids = self.sc.parallelize(range(2), 2).map(lambda x: os.getpid()).collect()
|
|
254
|
-
# the worker will reuse in this barrier job
|
|
255
|
-
rdd = self.sc.parallelize(range(10), 2)
|
|
256
|
-
|
|
257
|
-
def context(iterator):
|
|
258
|
-
tp = TaskContext.get().partitionId()
|
|
259
|
-
try:
|
|
260
|
-
bp = BarrierTaskContext.get().partitionId()
|
|
261
|
-
except Exception:
|
|
262
|
-
bp = -1
|
|
263
|
-
|
|
264
|
-
yield (tp, bp, os.getpid())
|
|
265
|
-
|
|
266
|
-
# normal stage after normal stage
|
|
267
|
-
normal_result = rdd.mapPartitions(context).collect()
|
|
268
|
-
tps, bps, pids = zip(*normal_result)
|
|
269
|
-
self.assertTrue(tps == (0, 1))
|
|
270
|
-
self.assertTrue(bps == (-1, -1))
|
|
271
|
-
for pid in pids:
|
|
272
|
-
self.assertTrue(pid in worker_pids)
|
|
273
|
-
# barrier stage after normal stage
|
|
274
|
-
barrier_result = rdd.barrier().mapPartitions(context).collect()
|
|
275
|
-
tps, bps, pids = zip(*barrier_result)
|
|
276
|
-
self.assertTrue(tps == (0, 1))
|
|
277
|
-
self.assertTrue(bps == (0, 1))
|
|
278
|
-
for pid in pids:
|
|
279
|
-
self.assertTrue(pid in worker_pids)
|
|
280
|
-
# normal stage after barrier stage
|
|
281
|
-
normal_result2 = rdd.mapPartitions(context).collect()
|
|
282
|
-
tps, bps, pids = zip(*normal_result2)
|
|
283
|
-
self.assertTrue(tps == (0, 1))
|
|
284
|
-
self.assertTrue(bps == (-1, -1))
|
|
285
|
-
for pid in pids:
|
|
286
|
-
self.assertTrue(pid in worker_pids)
|
|
287
|
-
return True
|
|
288
|
-
|
|
289
|
-
def test_task_context_correct_with_python_worker_reuse(self):
|
|
290
|
-
# Retrying the check as the PIDs from Python workers might be different even
|
|
291
|
-
# when reusing Python workers is enabled if a Python worker is dead for some reasons
|
|
292
|
-
# (e.g., socket connection failure) and new Python worker is created.
|
|
293
|
-
eventually(self.check_task_context_correct_with_python_worker_reuse, catch_assertions=True)
|
|
294
|
-
|
|
295
|
-
def tearDown(self):
|
|
296
|
-
self.sc.stop()
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
class TaskContextTestsWithResources(unittest.TestCase):
|
|
300
|
-
def setUp(self):
|
|
301
|
-
class_name = self.__class__.__name__
|
|
302
|
-
self.tempFile = tempfile.NamedTemporaryFile(delete=False)
|
|
303
|
-
self.tempFile.write(b'echo {\\"name\\": \\"gpu\\", \\"addresses\\": [\\"0\\"]}')
|
|
304
|
-
self.tempFile.close()
|
|
305
|
-
# create temporary directory for Worker resources coordination
|
|
306
|
-
self.tempdir = tempfile.NamedTemporaryFile(delete=False)
|
|
307
|
-
os.unlink(self.tempdir.name)
|
|
308
|
-
os.chmod(
|
|
309
|
-
self.tempFile.name,
|
|
310
|
-
stat.S_IRWXU | stat.S_IXGRP | stat.S_IRGRP | stat.S_IROTH | stat.S_IXOTH,
|
|
311
|
-
)
|
|
312
|
-
conf = SparkConf().set("spark.test.home", SPARK_HOME)
|
|
313
|
-
conf = conf.set("spark.worker.resource.gpu.discoveryScript", self.tempFile.name)
|
|
314
|
-
conf = conf.set("spark.worker.resource.gpu.amount", 1)
|
|
315
|
-
conf = conf.set("spark.task.cpus", 2)
|
|
316
|
-
conf = conf.set("spark.task.resource.gpu.amount", "1")
|
|
317
|
-
conf = conf.set("spark.executor.resource.gpu.amount", "1")
|
|
318
|
-
self.sc = SparkContext("local-cluster[2,2,1024]", class_name, conf=conf)
|
|
319
|
-
|
|
320
|
-
def test_cpus(self):
|
|
321
|
-
"""Test the cpus are available."""
|
|
322
|
-
rdd = self.sc.parallelize(range(10))
|
|
323
|
-
cpus = rdd.map(lambda x: TaskContext.get().cpus()).take(1)[0]
|
|
324
|
-
self.assertEqual(cpus, 2)
|
|
325
|
-
|
|
326
|
-
def test_resources(self):
|
|
327
|
-
"""Test the resources are available."""
|
|
328
|
-
rdd = self.sc.parallelize(range(10))
|
|
329
|
-
resources = rdd.map(lambda x: TaskContext.get().resources()).take(1)[0]
|
|
330
|
-
self.assertEqual(len(resources), 1)
|
|
331
|
-
self.assertTrue("gpu" in resources)
|
|
332
|
-
self.assertEqual(resources["gpu"].name, "gpu")
|
|
333
|
-
self.assertEqual(resources["gpu"].addresses, ["0"])
|
|
334
|
-
|
|
335
|
-
def tearDown(self):
|
|
336
|
-
os.unlink(self.tempFile.name)
|
|
337
|
-
self.sc.stop()
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
if __name__ == "__main__":
|
|
341
|
-
import unittest
|
|
342
|
-
from pyspark.tests.test_taskcontext import * # noqa: F401
|
|
343
|
-
|
|
344
|
-
try:
|
|
345
|
-
import xmlrunner
|
|
346
|
-
|
|
347
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
348
|
-
except ImportError:
|
|
349
|
-
testRunner = None
|
|
350
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,97 +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
|
-
import os
|
|
18
|
-
import unittest
|
|
19
|
-
|
|
20
|
-
from py4j.protocol import Py4JJavaError
|
|
21
|
-
|
|
22
|
-
from pyspark import keyword_only
|
|
23
|
-
from pyspark.testing.utils import PySparkTestCase
|
|
24
|
-
from pyspark.find_spark_home import _find_spark_home
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class KeywordOnlyTests(unittest.TestCase):
|
|
28
|
-
class Wrapped:
|
|
29
|
-
@keyword_only
|
|
30
|
-
def set(self, x=None, y=None):
|
|
31
|
-
if "x" in self._input_kwargs:
|
|
32
|
-
self._x = self._input_kwargs["x"]
|
|
33
|
-
if "y" in self._input_kwargs:
|
|
34
|
-
self._y = self._input_kwargs["y"]
|
|
35
|
-
return x, y
|
|
36
|
-
|
|
37
|
-
def test_keywords(self):
|
|
38
|
-
w = self.Wrapped()
|
|
39
|
-
x, y = w.set(y=1)
|
|
40
|
-
self.assertEqual(y, 1)
|
|
41
|
-
self.assertEqual(y, w._y)
|
|
42
|
-
self.assertIsNone(x)
|
|
43
|
-
self.assertFalse(hasattr(w, "_x"))
|
|
44
|
-
|
|
45
|
-
def test_non_keywords(self):
|
|
46
|
-
w = self.Wrapped()
|
|
47
|
-
self.assertRaises(TypeError, lambda: w.set(0, y=1))
|
|
48
|
-
|
|
49
|
-
def test_kwarg_ownership(self):
|
|
50
|
-
# test _input_kwargs is owned by each class instance and not a shared static variable
|
|
51
|
-
class Setter:
|
|
52
|
-
@keyword_only
|
|
53
|
-
def set(self, x=None, other=None, other_x=None):
|
|
54
|
-
if "other" in self._input_kwargs:
|
|
55
|
-
self._input_kwargs["other"].set(x=self._input_kwargs["other_x"])
|
|
56
|
-
self._x = self._input_kwargs["x"]
|
|
57
|
-
|
|
58
|
-
a = Setter()
|
|
59
|
-
b = Setter()
|
|
60
|
-
a.set(x=1, other=b, other_x=2)
|
|
61
|
-
self.assertEqual(a._x, 1)
|
|
62
|
-
self.assertEqual(b._x, 2)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
class UtilTests(PySparkTestCase):
|
|
66
|
-
def test_py4j_str(self):
|
|
67
|
-
with self.assertRaises(Py4JJavaError) as context:
|
|
68
|
-
# This attempts java.lang.String(null) which throws an NPE.
|
|
69
|
-
self.sc._jvm.java.lang.String(None)
|
|
70
|
-
|
|
71
|
-
self.assertTrue("NullPointerException" in str(context.exception))
|
|
72
|
-
|
|
73
|
-
def test_parsing_version_string(self):
|
|
74
|
-
from pyspark.util import VersionUtils
|
|
75
|
-
|
|
76
|
-
self.assertRaises(ValueError, lambda: VersionUtils.majorMinorVersion("abced"))
|
|
77
|
-
|
|
78
|
-
def test_find_spark_home(self):
|
|
79
|
-
# SPARK-38827: Test find_spark_home without `SPARK_HOME` environment variable set.
|
|
80
|
-
origin = os.environ["SPARK_HOME"]
|
|
81
|
-
try:
|
|
82
|
-
del os.environ["SPARK_HOME"]
|
|
83
|
-
self.assertEquals(origin, _find_spark_home())
|
|
84
|
-
finally:
|
|
85
|
-
os.environ["SPARK_HOME"] = origin
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
if __name__ == "__main__":
|
|
89
|
-
from pyspark.tests.test_util import * # noqa: F401
|
|
90
|
-
|
|
91
|
-
try:
|
|
92
|
-
import xmlrunner
|
|
93
|
-
|
|
94
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
95
|
-
except ImportError:
|
|
96
|
-
testRunner = None
|
|
97
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|