Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] test_from_json_ints integration test failed due to mismatch #11511

Closed
nartal1 opened this issue Sep 26, 2024 · 3 comments
Closed

[BUG] test_from_json_ints integration test failed due to mismatch #11511

nartal1 opened this issue Sep 26, 2024 · 3 comments
Labels
bug Something isn't working

Comments

@nartal1
Copy link
Collaborator

nartal1 commented Sep 26, 2024

Describe the bug
Integration test is failing in dataproc-serverless due to mismatch in CPU and GPU results

[2024-09-26T15:46:13.630Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_matrix_test.py::test_from_json_ints[int_formatted.json][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(FileSourceScanExec)]
[2024-09-26T15:46:13.630Z] = 1 failed, 9073 passed, 728 skipped, 23424 deselected, 402 xfailed, 154 xpassed, 2045 warnings in 17532.85s (4:52:12) =
[2024-09-26T15:46:13.630Z] --- Logging error ---
[2024-09-26T15:46:13.630Z] Traceback (most recent call last):
[2024-09-26T15:46:13.630Z]   File "/usr/lib/python3.9/logging/__init__.py", line 1082, in emit
[2024-09-26T15:46:13.630Z]     stream.write(msg + self.terminator)
[2024-09-26T15:46:13.630Z] ValueError: I/O operation on closed file.
[2024-09-26T15:46:13.630Z] Call stack:
[2024-09-26T15:46:13.630Z]   File "/usr/lib/spark/python/lib/py4j-0.10.9.7-src.zip/py4j/clientserver.py", line 646, in __del__
[2024-09-26T15:46:13.630Z]     self.close()
[2024-09-26T15:46:13.630Z]   File "/usr/lib/spark/python/lib/py4j-0.10.9.7-src.zip/py4j/clientserver.py", line 543, in close
[2024-09-26T15:46:13.630Z]     logger.info("Closing down clientserver connection")
[2024-09-26T15:46:13.630Z] Message: 'Closing down clientserver connection'
[2024-09-26T15:46:13.630Z] Arguments: ()
[2024-09-26T15:46:13.883Z] ERROR: (gcloud.dataproc.batches.wait) Batch job is FAILED. Detail: Google Cloud Dataproc Agent reports job failure. If logs are available, they can be found at:

Details of test failure:
[2024-09-26T15:46:13.629Z] =================================== FAILURES ===================================
[2024-09-26T15:46:13.629Z] ___________________ test_from_json_ints[int_formatted.json] ____________________
[2024-09-26T15:46:13.629Z] 
[2024-09-26T15:46:13.629Z] std_input_path = 'rapids-it-dataproc-serverless-33/integration_tests/src/test/resources'
[2024-09-26T15:46:13.629Z] input_file = 'int_formatted.json'
[2024-09-26T15:46:13.629Z] 
[2024-09-26T15:46:13.629Z]     @pytest.mark.parametrize('input_file', COMMON_TEST_FILES)
[2024-09-26T15:46:13.629Z]     @allow_non_gpu(TEXT_INPUT_EXEC, *non_utc_allow) # https://github.com/NVIDIA/spark-rapids/issues/10453
[2024-09-26T15:46:13.629Z]     def test_from_json_ints(std_input_path, input_file):
[2024-09-26T15:46:13.629Z]         schema = StructType([StructField("data", IntegerType())])
[2024-09-26T15:46:13.629Z] >       assert_gpu_and_cpu_are_equal_collect(
[2024-09-26T15:46:13.629Z]             lambda spark : read_json_as_text(spark, std_input_path + '/' + input_file, "json").select(f.col('json'), f.from_json(f.col('json'), schema)),
[2024-09-26T15:46:13.629Z]             conf =_enable_json_to_structs_conf)
[2024-09-26T15:46:13.629Z] 
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_matrix_test.py:639: 
[2024-09-26T15:46:13.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:599: in assert_gpu_and_cpu_are_equal_collect
[2024-09-26T15:46:13.629Z]     _assert_gpu_and_cpu_are_equal(func, 'COLLECT', conf=conf, is_cpu_first=is_cpu_first, result_canonicalize_func_before_compare=result_canonicalize_func_before_compare)
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:521: in _assert_gpu_and_cpu_are_equal
[2024-09-26T15:46:13.629Z]     assert_equal(from_cpu, from_gpu)
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:111: in assert_equal
[2024-09-26T15:46:13.629Z]     _assert_equal(cpu, gpu, float_check=get_float_check(), path=[])
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:43: in _assert_equal
[2024-09-26T15:46:13.629Z]     _assert_equal(cpu[index], gpu[index], float_check, path + [index])
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:36: in _assert_equal
[2024-09-26T15:46:13.629Z]     _assert_equal(cpu[field], gpu[field], float_check, path + [field])
[2024-09-26T15:46:13.629Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:36: in _assert_equal
[2024-09-26T15:46:13.629Z]     _assert_equal(cpu[field], gpu[field], float_check, path + [field])
[2024-09-26T15:46:13.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
[2024-09-26T15:46:13.629Z] 
[2024-09-26T15:46:13.629Z] cpu = 1, gpu = None
[2024-09-26T15:46:13.629Z] float_check = . at 0x7f7436a5c310>
[2024-09-26T15:46:13.629Z] path = [0, 'from_json(json)', 'data']
[2024-09-26T15:46:13.629Z] 
[2024-09-26T15:46:13.629Z]     def _assert_equal(cpu, gpu, float_check, path):
[2024-09-26T15:46:13.629Z]         t = type(cpu)
[2024-09-26T15:46:13.629Z]         if (t is Row):
[2024-09-26T15:46:13.629Z]             assert len(cpu) == len(gpu), "CPU and GPU row have different lengths at {} CPU: {} GPU: {}".format(path, len(cpu), len(gpu))
[2024-09-26T15:46:13.629Z]             if hasattr(cpu, "__fields__") and hasattr(gpu, "__fields__"):
[2024-09-26T15:46:13.629Z]                 assert cpu.__fields__ == gpu.__fields__, "CPU and GPU row have different fields at {} CPU: {} GPU: {}".format(path, cpu.__fields__, gpu.__fields__)
[2024-09-26T15:46:13.629Z]                 for field in cpu.__fields__:
[2024-09-26T15:46:13.629Z]                     _assert_equal(cpu[field], gpu[field], float_check, path + [field])
[2024-09-26T15:46:13.629Z]             else:
[2024-09-26T15:46:13.629Z]                 for index in range(len(cpu)):
[2024-09-26T15:46:13.629Z]                     _assert_equal(cpu[index], gpu[index], float_check, path + [index])
[2024-09-26T15:46:13.629Z]         elif (t is list):
[2024-09-26T15:46:13.629Z]             assert len(cpu) == len(gpu), "CPU and GPU list have different lengths at {} CPU: {} GPU: {}".format(path, len(cpu), len(gpu))
[2024-09-26T15:46:13.629Z]             for index in range(len(cpu)):
[2024-09-26T15:46:13.629Z]                 _assert_equal(cpu[index], gpu[index], float_check, path + [index])
[2024-09-26T15:46:13.629Z]         elif (t is tuple):
[2024-09-26T15:46:13.629Z]             assert len(cpu) == len(gpu), "CPU and GPU list have different lengths at {} CPU: {} GPU: {}".format(path, len(cpu), len(gpu))
[2024-09-26T15:46:13.629Z]             for index in range(len(cpu)):
[2024-09-26T15:46:13.629Z]                 _assert_equal(cpu[index], gpu[index], float_check, path + [index])
[2024-09-26T15:46:13.629Z]         elif (t is pytypes.GeneratorType):
[2024-09-26T15:46:13.629Z]             index = 0
[2024-09-26T15:46:13.629Z]             # generator has no zip :( so we have to do this the hard way
[2024-09-26T15:46:13.629Z]             done = False
[2024-09-26T15:46:13.629Z]             while not done:
[2024-09-26T15:46:13.629Z]                 sub_cpu = None
[2024-09-26T15:46:13.629Z]                 sub_gpu = None
[2024-09-26T15:46:13.629Z]                 try:
[2024-09-26T15:46:13.629Z]                     sub_cpu = next(cpu)
[2024-09-26T15:46:13.629Z]                 except StopIteration:
[2024-09-26T15:46:13.629Z]                     done = True
[2024-09-26T15:46:13.629Z]     
[2024-09-26T15:46:13.629Z]                 try:
[2024-09-26T15:46:13.629Z]                     sub_gpu = next(gpu)
[2024-09-26T15:46:13.629Z]                 except StopIteration:
[2024-09-26T15:46:13.629Z]                     done = True
[2024-09-26T15:46:13.629Z]     
[2024-09-26T15:46:13.629Z]                 if done:
[2024-09-26T15:46:13.629Z]                     assert sub_cpu == sub_gpu and sub_cpu == None, "CPU and GPU generators have different lengths at {}".format(path)
[2024-09-26T15:46:13.629Z]                 else:
[2024-09-26T15:46:13.629Z]                     _assert_equal(sub_cpu, sub_gpu, float_check, path + [index])
[2024-09-26T15:46:13.629Z]     
[2024-09-26T15:46:13.629Z]                 index = index + 1
[2024-09-26T15:46:13.629Z]         elif (t is dict):
[2024-09-26T15:46:13.629Z]             # The order of key/values is not guaranteed in python dicts, nor are they guaranteed by Spark
[2024-09-26T15:46:13.629Z]             # so sort the items to do our best with ignoring the order of dicts
[2024-09-26T15:46:13.629Z]             cpu_items = list(cpu.items()).sort(key=_RowCmp)
[2024-09-26T15:46:13.630Z]             gpu_items = list(gpu.items()).sort(key=_RowCmp)
[2024-09-26T15:46:13.630Z]             _assert_equal(cpu_items, gpu_items, float_check, path + ["map"])
[2024-09-26T15:46:13.630Z]         elif (t is int):
[2024-09-26T15:46:13.630Z] >           assert cpu == gpu, "GPU and CPU int values are different at {}".format(path)
[2024-09-26T15:46:13.630Z] E           AssertionError: GPU and CPU int values are different at [0, 'from_json(json)', 'data']
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/asserts.py:78: AssertionError
[2024-09-26T15:46:13.630Z] ----------------------------- Captured stdout call -----------------------------
[2024-09-26T15:46:13.630Z] ### CPU RUN ###
[2024-09-26T15:46:13.630Z] ### GPU RUN ###
[2024-09-26T15:46:13.630Z] ### COLLECT: GPU TOOK 0.17503833770751953 CPU TOOK 0.1917879581451416 ###
[2024-09-26T15:46:13.630Z] --- CPU OUTPUT
[2024-09-26T15:46:13.630Z] +++ GPU OUTPUT
[2024-09-26T15:46:13.630Z] @@ -1,13 +1,13 @@
[2024-09-26T15:46:13.630Z] -Row(json='{"data": 1}', from_json(json)=Row(data=1))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": -1}', from_json(json)=Row(data=-1))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": -0}', from_json(json)=Row(data=0))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": 0}', from_json(json)=Row(data=0))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": 127}', from_json(json)=Row(data=127))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": -128}', from_json(json)=Row(data=-128))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": 32767}', from_json(json)=Row(data=32767))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": -32768}', from_json(json)=Row(data=-32768))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": 2147483647}', from_json(json)=Row(data=2147483647))
[2024-09-26T15:46:13.630Z] -Row(json='{"data": -2147483648}', from_json(json)=Row(data=-2147483648))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": 1}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": -1}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": -0}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": 0}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": 127}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": -128}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": 32767}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": -32768}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": 2147483647}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] +Row(json='{"data": -2147483648}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z]  Row(json='{"data": 9223372036854775807}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z]  Row(json='{"data": -9223372036854775808}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z]  Row(json='{"data": 9223372036854775808}', from_json(json)=Row(data=None))
[2024-09-26T15:46:13.630Z] =============================== warnings summary ===============================
[2024-09-26T15:46:13.630Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/marks.py:19
[2024-09-26T15:46:13.630Z]   /var/dataproc/tmp/srvls-batch-30d7d73a-9542-42ed-908e-f6dc4adf41f9/rapids-it-dataproc-serverless-33/integration_tests/src/main/python/marks.py:19: PytestUnknownMarkWarning: Unknown pytest.mark.disable_ansi_mode - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html
[2024-09-26T15:46:13.630Z]     disable_ansi_mode = pytest.mark.disable_ansi_mode
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/cast_test.py:151
[2024-09-26T15:46:13.630Z]   /var/dataproc/tmp/srvls-batch-30d7d73a-9542-42ed-908e-f6dc4adf41f9/rapids-it-dataproc-serverless-33/integration_tests/src/main/python/cast_test.py:151: DeprecationWarning: invalid escape sequence \.
[2024-09-26T15:46:13.630Z]     StringGen(date_start_1_1_1 + '[ |T][0-3][0-9]:[0-6][0-9]:[0-6][0-9]\.[0-9]{0,6}Z?')
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/string_test.py:797
[2024-09-26T15:46:13.630Z]   /var/dataproc/tmp/srvls-batch-30d7d73a-9542-42ed-908e-f6dc4adf41f9/rapids-it-dataproc-serverless-33/integration_tests/src/main/python/string_test.py:797: DeprecationWarning: invalid escape sequence \/
[2024-09-26T15:46:13.630Z]     gen = StringGen('\/lit\/')
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_tuple_test.py:75
[2024-09-26T15:46:13.630Z]   /var/dataproc/tmp/srvls-batch-30d7d73a-9542-42ed-908e-f6dc4adf41f9/rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_tuple_test.py:75: DeprecationWarning: invalid escape sequence \/
[2024-09-26T15:46:13.630Z]     data = [['{"url":"https:\/\/www.nvidia.com\/1\/pic\/-1234.jpg","item":[],"info":{"id":12345}}'],
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] src/main/python/cast_test.py: 76 warnings
[2024-09-26T15:46:13.630Z] src/main/python/cmp_test.py: 16 warnings
[2024-09-26T15:46:13.630Z] src/main/python/csv_test.py: 694 warnings
[2024-09-26T15:46:13.630Z] src/main/python/datasourcev2_read_test.py: 1 warning
[2024-09-26T15:46:13.630Z] src/main/python/datasourcev2_write_test.py: 2 warnings
[2024-09-26T15:46:13.630Z] src/main/python/date_time_test.py: 131 warnings
[2024-09-26T15:46:13.630Z] src/main/python/hash_aggregate_test.py: 375 warnings
[2024-09-26T15:46:13.630Z] src/main/python/hive_delimited_text_test.py: 102 warnings
[2024-09-26T15:46:13.630Z] src/main/python/json_matrix_test.py: 40 warnings
[2024-09-26T15:46:13.630Z] src/main/python/orc_cast_test.py: 9 warnings
[2024-09-26T15:46:13.630Z] src/main/python/orc_write_test.py: 62 warnings
[2024-09-26T15:46:13.630Z] src/main/python/repart_test.py: 275 warnings
[2024-09-26T15:46:13.630Z] src/main/python/schema_evolution_test.py: 2 warnings
[2024-09-26T15:46:13.630Z] src/main/python/sort_test.py: 155 warnings
[2024-09-26T15:46:13.630Z]   /var/dataproc/tmp/srvls-batch-30d7d73a-9542-42ed-908e-f6dc4adf41f9/rapids-it-dataproc-serverless-33/integration_tests/src/main/python/conftest.py:246: UserWarning: allow_non_gpu marker without anything allowed
[2024-09-26T15:46:13.630Z]     warnings.warn('allow_non_gpu marker without anything allowed')
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] src/main/python/hash_aggregate_test.py: 45 warnings
[2024-09-26T15:46:13.630Z]   /usr/lib/spark/python/lib/pyspark.zip/pyspark/sql/functions.py:988: FutureWarning: Deprecated in 3.2, use sum_distinct instead.
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] src/main/python/hive_delimited_text_test.py: 56 warnings
[2024-09-26T15:46:13.630Z]   /usr/lib/spark/python/lib/pyspark.zip/pyspark/sql/catalog.py:781: FutureWarning: createExternalTable is deprecated since Spark 2.2, please use createTable instead.
[2024-09-26T15:46:13.630Z] 
[2024-09-26T15:46:13.630Z] -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
@nartal1 nartal1 added ? - Needs Triage Need team to review and classify bug Something isn't working labels Sep 26, 2024
@revans2
Copy link
Collaborator

revans2 commented Sep 26, 2024

Do you have anything more as far as what data is different?

Also #11500 recently ran into some issues on dataproc serverless. In those cases all of the errors appeared to be because the tests were running against something that appeared to be the wrong version of the plugin. Are we 100% sure that the correct version of the plugin is being used?

@nartal1
Copy link
Collaborator Author

nartal1 commented Sep 26, 2024

Do you have anything more as far as what data is different?

I pasted the the details of the failure under "Details of test failure:" in the description. Other than the that I don't see much in the logs. Checking if other tests are also failing in the run

@nartal1
Copy link
Collaborator Author

nartal1 commented Sep 26, 2024

I see some other json tests failing in json_test.py. I will close this issue and we can track why the tests are failing on dataproc serverless in #11500

[2024-09-26T18:29:47.838Z] =========================== short test summary info ============================

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_infer_schema_round_trip[-String][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, APPROXIMATE_FLOAT, ALLOW_NON_GPU(FileSourceScanExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_infer_schema_round_trip[json-String][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, APPROXIMATE_FLOAT, ALLOW_NON_GPU(FileSourceScanExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_round_trip[json-Byte][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, APPROXIMATE_FLOAT]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[-None][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[json-yyyy/MM/dd'T'HH:mm][DATAGEN_SEED=0, TZ=UTC]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[json-yyyy-MM'T'HH:mm[:ss]][DATAGEN_SEED=0, TZ=UTC]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[json-MM-yyyy'T'HH:mm:ss][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[json-MM/yyyy'T'HH:mm:ss[.SSS]][DATAGEN_SEED=0, TZ=UTC]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip[json-dd/MM/yyyy'T'HH:mm:ss.SSSXXX][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-yyyy/MM/dd][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-yyyy/MM][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-yyyy/MM'T'HH:mm[:ss]][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-MM/yyyy][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-MM/yyyy'T'HH:mm:ss[.SSS][XXX]][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-MM-dd-yyyy'T'HH:mm:ss][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-MM/dd/yyyy'T'HH:mm:ss[.SSS][XXX]][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-dd-MM-yyyy][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v1[TIMESTAMP_LTZ-dd-MM-yyyy'T'HH:mm][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(FileSourceScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-yyyy-MM-dd'T'HH:mm:ss][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-yyyy/MM/dd'T'HH:mm:ss.SSSXXX][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-yyyy-MM'T'HH:mm:ss][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-yyyy/MM'T'HH:mm:ss[.SSS]][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-MM-dd-yyyy'T'HH:mm:ss[.SSS][XXX]][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-MM-dd-yyyy'T'HH:mm:ss[.SSS]][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-MM/dd/yyyy'T'HH:mm:ss[.SSS]][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-dd-MM-yyyy][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-dd-MM-yyyy'T'HH:mm][DATAGEN_SEED=0, TZ=UTC, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] FAILED rapids-it-dataproc-serverless-33/integration_tests/src/main/python/json_test.py::test_json_ts_formats_round_trip_ntz_v2[TIMESTAMP_LTZ-dd/MM/yyyy'T'HH:mm[:ss]][DATAGEN_SEED=0, TZ=UTC, INJECT_OOM, ALLOW_NON_GPU(BatchScanExec,ProjectExec)]

[2024-09-26T18:29:47.838Z] = 28 failed, 14095 passed, 434 skipped, 18425 deselected, 223 xfailed, 577 xpassed, 7958 warnings in 27206.95s (7:33:26) =

@nartal1 nartal1 closed this as completed Sep 26, 2024
@sameerz sameerz removed the ? - Needs Triage Need team to review and classify label Oct 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants