snowpark-connect 0.24.0__py3-none-any.whl → 0.26.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.

Files changed (484) hide show
  1. snowflake/snowpark_connect/column_name_handler.py +116 -4
  2. snowflake/snowpark_connect/config.py +23 -0
  3. snowflake/snowpark_connect/constants.py +0 -29
  4. snowflake/snowpark_connect/dataframe_container.py +22 -0
  5. snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
  6. snowflake/snowpark_connect/expression/literal.py +13 -2
  7. snowflake/snowpark_connect/expression/map_cast.py +5 -8
  8. snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
  9. snowflake/snowpark_connect/expression/map_udf.py +88 -29
  10. snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
  11. snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
  12. snowflake/snowpark_connect/expression/map_unresolved_function.py +840 -367
  13. snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
  14. snowflake/snowpark_connect/hidden_column.py +39 -0
  15. snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
  16. snowflake/snowpark_connect/includes/jars/json4s-native_2.12-3.7.0-M11.jar +0 -0
  17. snowflake/snowpark_connect/includes/jars/paranamer-2.8.3.jar +0 -0
  18. snowflake/snowpark_connect/includes/jars/sas-scala-udf_2.12-0.1.0.jar +0 -0
  19. snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
  20. snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
  21. snowflake/snowpark_connect/relation/map_extension.py +52 -11
  22. snowflake/snowpark_connect/relation/map_join.py +258 -62
  23. snowflake/snowpark_connect/relation/map_map_partitions.py +9 -4
  24. snowflake/snowpark_connect/relation/map_relation.py +12 -1
  25. snowflake/snowpark_connect/relation/map_row_ops.py +8 -1
  26. snowflake/snowpark_connect/relation/map_sql.py +88 -11
  27. snowflake/snowpark_connect/relation/map_udtf.py +100 -46
  28. snowflake/snowpark_connect/relation/read/map_read.py +3 -3
  29. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
  30. snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
  31. snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
  32. snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
  33. snowflake/snowpark_connect/relation/utils.py +44 -0
  34. snowflake/snowpark_connect/relation/write/map_write.py +175 -75
  35. snowflake/snowpark_connect/resources_initializer.py +47 -6
  36. snowflake/snowpark_connect/server.py +26 -4
  37. snowflake/snowpark_connect/type_mapping.py +29 -25
  38. snowflake/snowpark_connect/typed_column.py +14 -0
  39. snowflake/snowpark_connect/utils/artifacts.py +23 -0
  40. snowflake/snowpark_connect/utils/concurrent.py +4 -0
  41. snowflake/snowpark_connect/utils/context.py +6 -1
  42. snowflake/snowpark_connect/utils/external_udxf_cache.py +36 -0
  43. snowflake/snowpark_connect/utils/scala_udf_utils.py +596 -0
  44. snowflake/snowpark_connect/utils/session.py +4 -0
  45. snowflake/snowpark_connect/utils/telemetry.py +6 -17
  46. snowflake/snowpark_connect/utils/udf_helper.py +2 -0
  47. snowflake/snowpark_connect/utils/udf_utils.py +22 -1
  48. snowflake/snowpark_connect/utils/udtf_utils.py +1 -0
  49. snowflake/snowpark_connect/version.py +1 -1
  50. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/METADATA +1 -1
  51. snowpark_connect-0.26.0.dist-info/RECORD +481 -0
  52. snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
  53. snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
  54. snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
  55. snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
  56. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
  57. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
  58. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
  59. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
  60. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
  61. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
  62. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
  63. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
  64. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
  65. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
  66. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
  67. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
  68. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
  69. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
  70. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
  71. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
  72. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
  73. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
  74. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
  75. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
  76. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
  77. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
  78. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
  79. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
  80. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
  81. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
  82. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
  83. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
  84. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
  85. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
  86. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
  87. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
  88. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
  89. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
  90. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
  91. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
  92. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
  93. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
  94. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
  95. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
  96. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
  97. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
  98. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
  99. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
  100. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
  101. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
  102. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
  103. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
  104. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
  105. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
  106. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
  107. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
  108. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
  109. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
  110. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
  111. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
  112. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
  113. snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
  114. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
  115. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
  116. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
  117. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
  118. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
  119. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
  120. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
  121. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
  122. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
  123. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
  124. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
  125. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
  126. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
  127. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
  128. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
  129. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
  130. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
  131. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
  132. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
  133. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
  134. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
  135. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
  136. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
  137. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
  138. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
  139. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
  140. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
  141. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
  142. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
  143. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
  144. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
  145. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
  146. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
  147. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
  148. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
  149. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
  150. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
  151. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
  152. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
  153. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
  154. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
  155. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
  156. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
  157. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
  158. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
  159. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
  160. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
  161. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
  162. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
  163. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
  164. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
  165. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
  166. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
  167. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
  168. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
  169. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
  170. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
  171. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
  172. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
  173. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
  174. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
  175. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
  176. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
  177. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
  178. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
  179. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
  180. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
  181. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
  182. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
  183. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
  184. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
  185. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
  186. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
  187. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
  188. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
  189. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
  190. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
  191. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
  192. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
  193. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
  194. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
  195. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
  196. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
  197. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
  198. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
  199. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
  200. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
  201. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
  202. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
  203. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
  204. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
  205. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
  206. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
  207. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
  208. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
  209. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
  210. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
  211. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
  212. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
  213. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
  214. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
  215. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
  216. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
  217. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
  218. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
  219. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
  220. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
  221. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
  222. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
  223. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
  224. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
  225. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
  226. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
  227. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
  228. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
  229. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
  230. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
  231. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
  232. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
  233. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
  234. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
  235. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
  236. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
  237. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
  238. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
  239. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
  240. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
  241. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
  242. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
  243. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
  244. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
  245. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
  246. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
  247. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
  248. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
  249. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
  250. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
  251. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
  252. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
  253. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
  254. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
  255. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
  256. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
  257. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
  258. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
  259. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
  260. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
  261. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
  262. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
  263. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
  264. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
  265. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
  266. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
  267. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
  268. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
  269. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
  270. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
  271. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
  272. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
  273. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
  274. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
  275. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
  276. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
  277. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
  278. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
  279. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
  280. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
  281. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
  282. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
  283. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
  284. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
  285. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
  286. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
  287. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
  288. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
  289. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
  290. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
  291. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
  292. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
  293. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
  294. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
  295. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
  296. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
  297. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
  298. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
  299. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
  300. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
  301. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
  302. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
  303. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
  304. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
  305. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
  306. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
  307. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
  308. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
  309. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
  310. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
  311. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
  312. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
  313. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
  314. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
  315. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
  316. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
  317. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
  318. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
  319. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
  320. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
  321. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
  322. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
  323. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
  324. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
  325. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
  326. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
  327. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
  328. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
  329. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
  330. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
  331. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
  332. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
  333. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
  334. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
  335. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
  336. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
  337. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
  338. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
  339. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
  340. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
  341. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
  342. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
  343. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
  344. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
  345. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
  346. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
  347. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
  348. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
  349. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
  350. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
  351. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
  352. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
  353. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
  354. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
  355. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
  356. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
  357. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
  358. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
  359. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
  360. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
  361. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
  362. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
  363. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
  364. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
  365. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
  366. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
  367. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
  368. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
  369. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
  370. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
  371. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
  372. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
  373. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
  374. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
  375. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
  376. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
  377. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
  378. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
  379. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
  380. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
  381. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
  382. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
  383. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
  384. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
  385. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
  386. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
  387. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
  388. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
  389. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
  390. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
  391. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
  392. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
  393. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
  394. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
  395. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
  396. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
  397. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
  398. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
  399. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
  400. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
  401. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
  402. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
  403. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
  404. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
  405. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
  406. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
  407. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
  408. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
  409. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
  410. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
  411. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
  412. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
  413. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
  414. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
  415. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
  416. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
  417. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
  418. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
  419. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
  420. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
  421. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
  422. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
  423. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
  424. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
  425. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
  426. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
  427. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
  428. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
  429. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
  430. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
  431. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
  432. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
  433. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
  434. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
  435. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
  436. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
  437. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
  438. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
  439. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
  440. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
  441. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
  442. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
  443. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
  444. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
  445. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
  446. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
  447. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
  448. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
  449. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
  450. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
  451. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
  452. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
  453. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
  454. snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
  455. snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
  456. snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
  457. snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
  458. snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
  459. snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
  460. snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
  461. snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
  462. snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
  463. snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
  464. snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
  465. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
  466. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
  467. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
  468. snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
  469. snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
  470. snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
  471. snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
  472. snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
  473. snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
  474. snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
  475. snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
  476. snowpark_connect-0.24.0.dist-info/RECORD +0 -898
  477. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-connect +0 -0
  478. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-session +0 -0
  479. {snowpark_connect-0.24.0.data → snowpark_connect-0.26.0.data}/scripts/snowpark-submit +0 -0
  480. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/WHEEL +0 -0
  481. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/LICENSE-binary +0 -0
  482. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/LICENSE.txt +0 -0
  483. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/licenses/NOTICE-binary +0 -0
  484. {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.26.0.dist-info}/top_level.txt +0 -0
@@ -1,706 +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 operator
18
- import os
19
- import shutil
20
- import tempfile
21
- import time
22
- import unittest
23
- from functools import reduce
24
- from itertools import chain
25
- import platform
26
-
27
- from pyspark import SparkConf, SparkContext
28
- from pyspark.streaming import StreamingContext
29
- from pyspark.testing.streamingutils import PySparkStreamingTestCase
30
-
31
-
32
- @unittest.skipIf(
33
- "pypy" in platform.python_implementation().lower(),
34
- "The tests fail in PyPy3 implementation for an unknown reason.",
35
- )
36
- class BasicOperationTests(PySparkStreamingTestCase):
37
- def test_map(self):
38
- """Basic operation test for DStream.map."""
39
- input = [range(1, 5), range(5, 9), range(9, 13)]
40
-
41
- def func(dstream):
42
- return dstream.map(str)
43
-
44
- expected = [list(map(str, x)) for x in input]
45
- self._test_func(input, func, expected)
46
-
47
- def test_flatMap(self):
48
- """Basic operation test for DStream.flatMap."""
49
- input = [range(1, 5), range(5, 9), range(9, 13)]
50
-
51
- def func(dstream):
52
- return dstream.flatMap(lambda x: (x, x * 2))
53
-
54
- expected = [list(chain.from_iterable((map(lambda y: [y, y * 2], x)))) for x in input]
55
- self._test_func(input, func, expected)
56
-
57
- def test_filter(self):
58
- """Basic operation test for DStream.filter."""
59
- input = [range(1, 5), range(5, 9), range(9, 13)]
60
-
61
- def func(dstream):
62
- return dstream.filter(lambda x: x % 2 == 0)
63
-
64
- expected = [[y for y in x if y % 2 == 0] for x in input]
65
- self._test_func(input, func, expected)
66
-
67
- def test_count(self):
68
- """Basic operation test for DStream.count."""
69
- input = [range(5), range(10), range(20)]
70
-
71
- def func(dstream):
72
- return dstream.count()
73
-
74
- expected = [[len(x)] for x in input]
75
- self._test_func(input, func, expected)
76
-
77
- def test_slice(self):
78
- """Basic operation test for DStream.slice."""
79
- import datetime as dt
80
-
81
- self.ssc = StreamingContext(self.sc, 1.0)
82
- self.ssc.remember(4.0)
83
- input = [[1], [2], [3], [4]]
84
- stream = self.ssc.queueStream([self.sc.parallelize(d, 1) for d in input])
85
-
86
- time_vals = []
87
-
88
- def get_times(t, rdd):
89
- if rdd and len(time_vals) < len(input):
90
- time_vals.append(t)
91
-
92
- stream.foreachRDD(get_times)
93
-
94
- self.ssc.start()
95
- self.wait_for(time_vals, 4)
96
- begin_time = time_vals[0]
97
-
98
- def get_sliced(begin_delta, end_delta):
99
- begin = begin_time + dt.timedelta(seconds=begin_delta)
100
- end = begin_time + dt.timedelta(seconds=end_delta)
101
- rdds = stream.slice(begin, end)
102
- result_list = [rdd.collect() for rdd in rdds]
103
- return [r for result in result_list for r in result]
104
-
105
- self.assertEqual(set([1]), set(get_sliced(0, 0)))
106
- self.assertEqual(set([2, 3]), set(get_sliced(1, 2)))
107
- self.assertEqual(set([2, 3, 4]), set(get_sliced(1, 4)))
108
- self.assertEqual(set([1, 2, 3, 4]), set(get_sliced(0, 4)))
109
-
110
- def test_reduce(self):
111
- """Basic operation test for DStream.reduce."""
112
- input = [range(1, 5), range(5, 9), range(9, 13)]
113
-
114
- def func(dstream):
115
- return dstream.reduce(operator.add)
116
-
117
- expected = [[reduce(operator.add, x)] for x in input]
118
- self._test_func(input, func, expected)
119
-
120
- def test_reduceByKey(self):
121
- """Basic operation test for DStream.reduceByKey."""
122
- input = [
123
- [("a", 1), ("a", 1), ("b", 1), ("b", 1)],
124
- [("", 1), ("", 1), ("", 1), ("", 1)],
125
- [(1, 1), (1, 1), (2, 1), (2, 1), (3, 1)],
126
- ]
127
-
128
- def func(dstream):
129
- return dstream.reduceByKey(operator.add)
130
-
131
- expected = [[("a", 2), ("b", 2)], [("", 4)], [(1, 2), (2, 2), (3, 1)]]
132
- self._test_func(input, func, expected, sort=True)
133
-
134
- def test_mapValues(self):
135
- """Basic operation test for DStream.mapValues."""
136
- input = [
137
- [("a", 2), ("b", 2), ("c", 1), ("d", 1)],
138
- [(0, 4), (1, 1), (2, 2), (3, 3)],
139
- [(1, 1), (2, 1), (3, 1), (4, 1)],
140
- ]
141
-
142
- def func(dstream):
143
- return dstream.mapValues(lambda x: x + 10)
144
-
145
- expected = [
146
- [("a", 12), ("b", 12), ("c", 11), ("d", 11)],
147
- [(0, 14), (1, 11), (2, 12), (3, 13)],
148
- [(1, 11), (2, 11), (3, 11), (4, 11)],
149
- ]
150
- self._test_func(input, func, expected, sort=True)
151
-
152
- def test_flatMapValues(self):
153
- """Basic operation test for DStream.flatMapValues."""
154
- input = [
155
- [("a", 2), ("b", 2), ("c", 1), ("d", 1)],
156
- [(0, 4), (1, 1), (2, 1), (3, 1)],
157
- [(1, 1), (2, 1), (3, 1), (4, 1)],
158
- ]
159
-
160
- def func(dstream):
161
- return dstream.flatMapValues(lambda x: (x, x + 10))
162
-
163
- expected = [
164
- [("a", 2), ("a", 12), ("b", 2), ("b", 12), ("c", 1), ("c", 11), ("d", 1), ("d", 11)],
165
- [(0, 4), (0, 14), (1, 1), (1, 11), (2, 1), (2, 11), (3, 1), (3, 11)],
166
- [(1, 1), (1, 11), (2, 1), (2, 11), (3, 1), (3, 11), (4, 1), (4, 11)],
167
- ]
168
- self._test_func(input, func, expected)
169
-
170
- def test_glom(self):
171
- """Basic operation test for DStream.glom."""
172
- input = [range(1, 5), range(5, 9), range(9, 13)]
173
- rdds = [self.sc.parallelize(r, 2) for r in input]
174
-
175
- def func(dstream):
176
- return dstream.glom()
177
-
178
- expected = [[[1, 2], [3, 4]], [[5, 6], [7, 8]], [[9, 10], [11, 12]]]
179
- self._test_func(rdds, func, expected)
180
-
181
- def test_mapPartitions(self):
182
- """Basic operation test for DStream.mapPartitions."""
183
- input = [range(1, 5), range(5, 9), range(9, 13)]
184
- rdds = [self.sc.parallelize(r, 2) for r in input]
185
-
186
- def func(dstream):
187
- def f(iterator):
188
- yield sum(iterator)
189
-
190
- return dstream.mapPartitions(f)
191
-
192
- expected = [[3, 7], [11, 15], [19, 23]]
193
- self._test_func(rdds, func, expected)
194
-
195
- def test_countByValue(self):
196
- """Basic operation test for DStream.countByValue."""
197
- input = [list(range(1, 5)) * 2, list(range(5, 7)) + list(range(5, 9)), ["a", "a", "b", ""]]
198
-
199
- def func(dstream):
200
- return dstream.countByValue()
201
-
202
- expected = [
203
- [(1, 2), (2, 2), (3, 2), (4, 2)],
204
- [(5, 2), (6, 2), (7, 1), (8, 1)],
205
- [("a", 2), ("b", 1), ("", 1)],
206
- ]
207
- self._test_func(input, func, expected, sort=True)
208
-
209
- def test_groupByKey(self):
210
- """Basic operation test for DStream.groupByKey."""
211
- input = [
212
- [(1, 1), (2, 1), (3, 1), (4, 1)],
213
- [(1, 1), (1, 1), (1, 1), (2, 1), (2, 1), (3, 1)],
214
- [("a", 1), ("a", 1), ("b", 1), ("", 1), ("", 1), ("", 1)],
215
- ]
216
-
217
- def func(dstream):
218
- return dstream.groupByKey().mapValues(list)
219
-
220
- expected = [
221
- [(1, [1]), (2, [1]), (3, [1]), (4, [1])],
222
- [(1, [1, 1, 1]), (2, [1, 1]), (3, [1])],
223
- [("a", [1, 1]), ("b", [1]), ("", [1, 1, 1])],
224
- ]
225
- self._test_func(input, func, expected, sort=True)
226
-
227
- def test_combineByKey(self):
228
- """Basic operation test for DStream.combineByKey."""
229
- input = [
230
- [(1, 1), (2, 1), (3, 1), (4, 1)],
231
- [(1, 1), (1, 1), (1, 1), (2, 1), (2, 1), (3, 1)],
232
- [("a", 1), ("a", 1), ("b", 1), ("", 1), ("", 1), ("", 1)],
233
- ]
234
-
235
- def func(dstream):
236
- def add(a, b):
237
- return a + str(b)
238
-
239
- return dstream.combineByKey(str, add, add)
240
-
241
- expected = [
242
- [(1, "1"), (2, "1"), (3, "1"), (4, "1")],
243
- [(1, "111"), (2, "11"), (3, "1")],
244
- [("a", "11"), ("b", "1"), ("", "111")],
245
- ]
246
- self._test_func(input, func, expected, sort=True)
247
-
248
- def test_repartition(self):
249
- input = [range(1, 5), range(5, 9)]
250
- rdds = [self.sc.parallelize(r, 2) for r in input]
251
-
252
- def func(dstream):
253
- return dstream.repartition(1).glom()
254
-
255
- expected = [[[1, 2, 3, 4]], [[5, 6, 7, 8]]]
256
- self._test_func(rdds, func, expected)
257
-
258
- def test_union(self):
259
- input1 = [range(3), range(5), range(6)]
260
- input2 = [range(3, 6), range(5, 6)]
261
-
262
- def func(d1, d2):
263
- return d1.union(d2)
264
-
265
- expected = [list(range(6)), list(range(6)), list(range(6))]
266
- self._test_func(input1, func, expected, input2=input2)
267
-
268
- def test_cogroup(self):
269
- input = [
270
- [(1, 1), (2, 1), (3, 1)],
271
- [(1, 1), (1, 1), (1, 1), (2, 1)],
272
- [("a", 1), ("a", 1), ("b", 1), ("", 1), ("", 1)],
273
- ]
274
- input2 = [[(1, 2)], [(4, 1)], [("a", 1), ("a", 1), ("b", 1), ("", 1), ("", 2)]]
275
-
276
- def func(d1, d2):
277
- return d1.cogroup(d2).mapValues(lambda vs: tuple(map(list, vs)))
278
-
279
- expected = [
280
- [(1, ([1], [2])), (2, ([1], [])), (3, ([1], []))],
281
- [(1, ([1, 1, 1], [])), (2, ([1], [])), (4, ([], [1]))],
282
- [("a", ([1, 1], [1, 1])), ("b", ([1], [1])), ("", ([1, 1], [1, 2]))],
283
- ]
284
- self._test_func(input, func, expected, sort=True, input2=input2)
285
-
286
- def test_join(self):
287
- input = [[("a", 1), ("b", 2)]]
288
- input2 = [[("b", 3), ("c", 4)]]
289
-
290
- def func(a, b):
291
- return a.join(b)
292
-
293
- expected = [[("b", (2, 3))]]
294
- self._test_func(input, func, expected, True, input2)
295
-
296
- def test_left_outer_join(self):
297
- input = [[("a", 1), ("b", 2)]]
298
- input2 = [[("b", 3), ("c", 4)]]
299
-
300
- def func(a, b):
301
- return a.leftOuterJoin(b)
302
-
303
- expected = [[("a", (1, None)), ("b", (2, 3))]]
304
- self._test_func(input, func, expected, True, input2)
305
-
306
- def test_right_outer_join(self):
307
- input = [[("a", 1), ("b", 2)]]
308
- input2 = [[("b", 3), ("c", 4)]]
309
-
310
- def func(a, b):
311
- return a.rightOuterJoin(b)
312
-
313
- expected = [[("b", (2, 3)), ("c", (None, 4))]]
314
- self._test_func(input, func, expected, True, input2)
315
-
316
- def test_full_outer_join(self):
317
- input = [[("a", 1), ("b", 2)]]
318
- input2 = [[("b", 3), ("c", 4)]]
319
-
320
- def func(a, b):
321
- return a.fullOuterJoin(b)
322
-
323
- expected = [[("a", (1, None)), ("b", (2, 3)), ("c", (None, 4))]]
324
- self._test_func(input, func, expected, True, input2)
325
-
326
- def test_update_state_by_key(self):
327
- def updater(vs, s):
328
- if not s:
329
- s = []
330
- s.extend(vs)
331
- return s
332
-
333
- input = [[("k", i)] for i in range(5)]
334
-
335
- def func(dstream):
336
- return dstream.updateStateByKey(updater)
337
-
338
- expected = [[0], [0, 1], [0, 1, 2], [0, 1, 2, 3], [0, 1, 2, 3, 4]]
339
- expected = [[("k", v)] for v in expected]
340
- self._test_func(input, func, expected)
341
-
342
- def test_update_state_by_key_initial_rdd(self):
343
- def updater(vs, s):
344
- if not s:
345
- s = []
346
- s.extend(vs)
347
- return s
348
-
349
- initial = [("k", [0, 1])]
350
- initial = self.sc.parallelize(initial, 1)
351
-
352
- input = [[("k", i)] for i in range(2, 5)]
353
-
354
- def func(dstream):
355
- return dstream.updateStateByKey(updater, initialRDD=initial)
356
-
357
- expected = [[0, 1, 2], [0, 1, 2, 3], [0, 1, 2, 3, 4]]
358
- expected = [[("k", v)] for v in expected]
359
- self._test_func(input, func, expected)
360
-
361
- def test_failed_func(self):
362
- # Test failure in
363
- # TransformFunction.apply(rdd: Option[RDD[_]], time: Time)
364
- input = [self.sc.parallelize([d], 1) for d in range(4)]
365
- input_stream = self.ssc.queueStream(input)
366
-
367
- def failed_func(i):
368
- raise ValueError("This is a special error")
369
-
370
- input_stream.map(failed_func).pprint()
371
- self.ssc.start()
372
- try:
373
- self.ssc.awaitTerminationOrTimeout(10)
374
- except BaseException:
375
- import traceback
376
-
377
- failure = traceback.format_exc()
378
- self.assertTrue("This is a special error" in failure)
379
- return
380
-
381
- self.fail("a failed func should throw an error")
382
-
383
- def test_failed_func2(self):
384
- # Test failure in
385
- # TransformFunction.apply(rdd: Option[RDD[_]], rdd2: Option[RDD[_]], time: Time)
386
- input = [self.sc.parallelize([d], 1) for d in range(4)]
387
- input_stream1 = self.ssc.queueStream(input)
388
- input_stream2 = self.ssc.queueStream(input)
389
-
390
- def failed_func(rdd1, rdd2):
391
- raise ValueError("This is a special error")
392
-
393
- input_stream1.transformWith(failed_func, input_stream2, True).pprint()
394
- self.ssc.start()
395
- try:
396
- self.ssc.awaitTerminationOrTimeout(10)
397
- except BaseException:
398
- import traceback
399
-
400
- failure = traceback.format_exc()
401
- self.assertTrue("This is a special error" in failure)
402
- return
403
-
404
- self.fail("a failed func should throw an error")
405
-
406
- def test_failed_func_with_reseting_failure(self):
407
- input = [self.sc.parallelize([d], 1) for d in range(4)]
408
- input_stream = self.ssc.queueStream(input)
409
-
410
- def failed_func(i):
411
- if i == 1:
412
- # Make it fail in the second batch
413
- raise ValueError("This is a special error")
414
- else:
415
- return i
416
-
417
- # We should be able to see the results of the 3rd and 4th batches even if the second batch
418
- # fails
419
- expected = [[0], [2], [3]]
420
- self.assertEqual(expected, self._collect(input_stream.map(failed_func), 3))
421
- try:
422
- self.ssc.awaitTerminationOrTimeout(10)
423
- except BaseException:
424
- import traceback
425
-
426
- failure = traceback.format_exc()
427
- self.assertTrue("This is a special error" in failure)
428
- return
429
-
430
- self.fail("a failed func should throw an error")
431
-
432
-
433
- @unittest.skipIf(
434
- "pypy" in platform.python_implementation().lower(),
435
- "The tests fail in PyPy3 implementation for an unknown reason.",
436
- )
437
- class WindowFunctionTests(PySparkStreamingTestCase):
438
-
439
- timeout = 15
440
-
441
- def test_window(self):
442
- input = [range(1), range(2), range(3), range(4), range(5)]
443
-
444
- def func(dstream):
445
- return dstream.window(1.5, 0.5).count()
446
-
447
- expected = [[1], [3], [6], [9], [12], [9], [5]]
448
- self._test_func(input, func, expected)
449
-
450
- def test_count_by_window(self):
451
- input = [range(1), range(2), range(3), range(4), range(5)]
452
-
453
- def func(dstream):
454
- return dstream.countByWindow(1.5, 0.5)
455
-
456
- expected = [[1], [3], [6], [9], [12], [9], [5]]
457
- self._test_func(input, func, expected)
458
-
459
- def test_count_by_window_large(self):
460
- input = [range(1), range(2), range(3), range(4), range(5), range(6)]
461
-
462
- def func(dstream):
463
- return dstream.countByWindow(2.5, 0.5)
464
-
465
- expected = [[1], [3], [6], [10], [15], [20], [18], [15], [11], [6]]
466
- self._test_func(input, func, expected)
467
-
468
- def test_count_by_value_and_window(self):
469
- input = [range(1), range(2), range(3), range(4), range(5), range(6)]
470
-
471
- def func(dstream):
472
- return dstream.countByValueAndWindow(2.5, 0.5)
473
-
474
- expected = [
475
- [(0, 1)],
476
- [(0, 2), (1, 1)],
477
- [(0, 3), (1, 2), (2, 1)],
478
- [(0, 4), (1, 3), (2, 2), (3, 1)],
479
- [(0, 5), (1, 4), (2, 3), (3, 2), (4, 1)],
480
- [(0, 5), (1, 5), (2, 4), (3, 3), (4, 2), (5, 1)],
481
- [(0, 4), (1, 4), (2, 4), (3, 3), (4, 2), (5, 1)],
482
- [(0, 3), (1, 3), (2, 3), (3, 3), (4, 2), (5, 1)],
483
- [(0, 2), (1, 2), (2, 2), (3, 2), (4, 2), (5, 1)],
484
- [(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1)],
485
- ]
486
- self._test_func(input, func, expected)
487
-
488
- def test_group_by_key_and_window(self):
489
- input = [[("a", i)] for i in range(5)]
490
-
491
- def func(dstream):
492
- return dstream.groupByKeyAndWindow(1.5, 0.5).mapValues(list)
493
-
494
- expected = [
495
- [("a", [0])],
496
- [("a", [0, 1])],
497
- [("a", [0, 1, 2])],
498
- [("a", [1, 2, 3])],
499
- [("a", [2, 3, 4])],
500
- [("a", [3, 4])],
501
- [("a", [4])],
502
- ]
503
- self._test_func(input, func, expected)
504
-
505
- def test_reduce_by_invalid_window(self):
506
- input1 = [range(3), range(5), range(1), range(6)]
507
- d1 = self.ssc.queueStream(input1)
508
- self.assertRaises(ValueError, lambda: d1.reduceByKeyAndWindow(None, None, 0.1, 0.1))
509
- self.assertRaises(ValueError, lambda: d1.reduceByKeyAndWindow(None, None, 1, 0.1))
510
-
511
- def test_reduce_by_key_and_window_with_none_invFunc(self):
512
- input = [range(1), range(2), range(3), range(4), range(5), range(6)]
513
-
514
- def func(dstream):
515
- return (
516
- dstream.map(lambda x: (x, 1))
517
- .reduceByKeyAndWindow(operator.add, None, 5, 1)
518
- .filter(lambda kv: kv[1] > 0)
519
- .count()
520
- )
521
-
522
- expected = [[2], [4], [6], [6], [6], [6]]
523
- self._test_func(input, func, expected)
524
-
525
-
526
- @unittest.skipIf(
527
- "pypy" in platform.python_implementation().lower(),
528
- "The tests fail in PyPy3 implementation for an unknown reason.",
529
- )
530
- class CheckpointTests(unittest.TestCase):
531
-
532
- setupCalled = False
533
-
534
- @staticmethod
535
- def tearDownClass():
536
- # Clean up in the JVM just in case there has been some issues in Python API
537
- if SparkContext._jvm is not None:
538
- jStreamingContextOption = (
539
- SparkContext._jvm.org.apache.spark.streaming.StreamingContext.getActive()
540
- )
541
- if jStreamingContextOption.nonEmpty():
542
- jStreamingContextOption.get().stop()
543
-
544
- def setUp(self):
545
- self.ssc = None
546
- self.sc = None
547
- self.cpd = None
548
-
549
- def tearDown(self):
550
- if self.ssc is not None:
551
- self.ssc.stop(True)
552
- if self.sc is not None:
553
- self.sc.stop()
554
- if self.cpd is not None:
555
- shutil.rmtree(self.cpd)
556
-
557
- def test_transform_function_serializer_failure(self):
558
- inputd = tempfile.mkdtemp()
559
- self.cpd = tempfile.mkdtemp("test_transform_function_serializer_failure")
560
-
561
- def setup():
562
- conf = SparkConf().set("spark.default.parallelism", 1)
563
- sc = SparkContext(conf=conf)
564
- ssc = StreamingContext(sc, 0.5)
565
-
566
- # A function that cannot be serialized
567
- def process(time, rdd):
568
- sc.parallelize(range(1, 10))
569
-
570
- ssc.textFileStream(inputd).foreachRDD(process)
571
- return ssc
572
-
573
- self.ssc = StreamingContext.getOrCreate(self.cpd, setup)
574
- try:
575
- self.ssc.start()
576
- except BaseException:
577
- import traceback
578
-
579
- failure = traceback.format_exc()
580
- self.assertTrue(
581
- "It appears that you are attempting to reference SparkContext" in failure
582
- )
583
- return
584
-
585
- self.fail("using SparkContext in process should fail because it's not Serializable")
586
-
587
- def test_get_or_create_and_get_active_or_create(self):
588
- inputd = tempfile.mkdtemp()
589
- outputd = tempfile.mkdtemp() + "/"
590
-
591
- def updater(vs, s):
592
- return sum(vs, s or 0)
593
-
594
- def setup():
595
- conf = SparkConf().set("spark.default.parallelism", 1)
596
- sc = SparkContext(conf=conf)
597
- ssc = StreamingContext(sc, 2)
598
- dstream = ssc.textFileStream(inputd).map(lambda x: (x, 1))
599
- wc = dstream.updateStateByKey(updater)
600
- wc.map(lambda x: "%s,%d" % x).saveAsTextFiles(outputd + "test")
601
- wc.checkpoint(2)
602
- self.setupCalled = True
603
- return ssc
604
-
605
- # Verify that getOrCreate() calls setup() in absence of checkpoint files
606
- self.cpd = tempfile.mkdtemp("test_streaming_cps")
607
- self.setupCalled = False
608
- self.ssc = StreamingContext.getOrCreate(self.cpd, setup)
609
- self.assertTrue(self.setupCalled)
610
-
611
- self.ssc.start()
612
-
613
- def check_output(n):
614
- while not os.listdir(outputd):
615
- if self.ssc.awaitTerminationOrTimeout(0.5):
616
- raise RuntimeError("ssc stopped")
617
- time.sleep(1) # make sure mtime is larger than the previous one
618
- with open(os.path.join(inputd, str(n)), "w") as f:
619
- f.writelines(["%d\n" % i for i in range(10)])
620
-
621
- while True:
622
- if self.ssc.awaitTerminationOrTimeout(0.5):
623
- raise RuntimeError("ssc stopped")
624
- p = os.path.join(outputd, max(os.listdir(outputd)))
625
- if "_SUCCESS" not in os.listdir(p):
626
- # not finished
627
- continue
628
- ordd = self.ssc.sparkContext.textFile(p).map(lambda line: line.split(","))
629
- d = ordd.values().map(int).collect()
630
- if not d:
631
- continue
632
- self.assertEqual(10, len(d))
633
- s = set(d)
634
- self.assertEqual(1, len(s))
635
- m = s.pop()
636
- if n > m:
637
- continue
638
- self.assertEqual(n, m)
639
- break
640
-
641
- check_output(1)
642
- check_output(2)
643
-
644
- # Verify the getOrCreate() recovers from checkpoint files
645
- self.ssc.stop(True, True)
646
- time.sleep(1)
647
- self.setupCalled = False
648
- self.ssc = StreamingContext.getOrCreate(self.cpd, setup)
649
- self.assertFalse(self.setupCalled)
650
- self.ssc.start()
651
- check_output(3)
652
-
653
- # Verify that getOrCreate() uses existing SparkContext
654
- self.ssc.stop(True, True)
655
- time.sleep(1)
656
- self.sc = SparkContext(conf=SparkConf())
657
- self.setupCalled = False
658
- self.ssc = StreamingContext.getOrCreate(self.cpd, setup)
659
- self.assertFalse(self.setupCalled)
660
- self.assertTrue(self.ssc.sparkContext == self.sc)
661
-
662
- # Verify the getActiveOrCreate() recovers from checkpoint files
663
- self.ssc.stop(True, True)
664
- time.sleep(1)
665
- self.setupCalled = False
666
- self.ssc = StreamingContext.getActiveOrCreate(self.cpd, setup)
667
- self.assertFalse(self.setupCalled)
668
- self.ssc.start()
669
- check_output(4)
670
-
671
- # Verify that getActiveOrCreate() returns active context
672
- self.setupCalled = False
673
- self.assertEqual(StreamingContext.getActiveOrCreate(self.cpd, setup), self.ssc)
674
- self.assertFalse(self.setupCalled)
675
-
676
- # Verify that getActiveOrCreate() uses existing SparkContext
677
- self.ssc.stop(True, True)
678
- time.sleep(1)
679
- self.sc = SparkContext(conf=SparkConf())
680
- self.setupCalled = False
681
- self.ssc = StreamingContext.getActiveOrCreate(self.cpd, setup)
682
- self.assertFalse(self.setupCalled)
683
- self.assertTrue(self.ssc.sparkContext == self.sc)
684
-
685
- # Verify that getActiveOrCreate() calls setup() in absence of checkpoint files
686
- self.ssc.stop(True, True)
687
- shutil.rmtree(self.cpd) # delete checkpoint directory
688
- time.sleep(1)
689
- self.setupCalled = False
690
- self.ssc = StreamingContext.getActiveOrCreate(self.cpd, setup)
691
- self.assertTrue(self.setupCalled)
692
-
693
- # Stop everything
694
- self.ssc.stop(True, True)
695
-
696
-
697
- if __name__ == "__main__":
698
- from pyspark.streaming.tests.test_dstream import * # noqa: F401
699
-
700
- try:
701
- import xmlrunner
702
-
703
- testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
704
- except ImportError:
705
- testRunner = None
706
- unittest.main(testRunner=testRunner, verbosity=2)