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

feat: Barrage Refactor Read/Write Chunk Factories #6065

Open
wants to merge 84 commits into
base: main
Choose a base branch
from

spotless

08ca30a
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

feat: Barrage Refactor Read/Write Chunk Factories #6065

spotless
08ca30a
Select commit
Loading
Failed to load commit list.
GitHub Actions / check-ci test report failed Dec 30, 2024 in 0s

10153 tests run, 41 skipped, 23 failed.

Annotations

Check failure on line 1 in tests/test_arrow/ArrowTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_arrow.py.test_arrow_types_timestamp

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, null) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, null) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, null) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_arrow.py", line 94, in test_arrow_types_timestamp
    self.verify_type_conversion(pa_types=pa_types, pa_data=pa_data, cast_for_round_trip=True)
  File "/python/tests/test_arrow.py", line 51, in verify_type_conversion
    dh_table = dharrow.to_table(pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, null) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, null) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_arrow/ArrowTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_arrow.py.test_round_trip_cols

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_arrow.py", line 196, in test_round_trip_cols
    dh_table = dharrow.to_table(pa_table, cols=cols)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_arrow/ArrowTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_arrow.py.test_round_trip_empty

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_arrow.py", line 188, in test_round_trip_empty
    dh_table_rt = dharrow.to_table(pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_arrow/ArrowTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_arrow.py.test_round_trip_types

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_arrow.py", line 168, in test_round_trip_types
    dh_table_rt = dharrow.to_table(pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_pandas/PandasTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_pandas.py.test_arrow_backend_nulls

failed to create an InputColumn (Char). : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer
Raw output
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_pandas.py", line 260, in test_arrow_backend_nulls
    dh_table = to_table(df)
  File "/python/deephaven/pandas.py", line 256, in to_table
    input_cols.append(_make_input_column(col, np_array, dh_dtype))
  File "/python/deephaven/numpy.py", line 73, in _make_input_column
    return InputColumn(name=_to_column_name(col), data_type=dtype, input_data=np_array)
  File "/python/deephaven/column.py", line 121, in __init__
    raise DHError(e, f"failed to create an InputColumn ({name}).") from e
deephaven.dherror.DHError: failed to create an InputColumn (Char). : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

Check failure on line 1 in tests/test_pandas/PandasTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_pandas.py.test_conv_null [pyarrow]

failed to create an InputColumn (Char). : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer
Raw output
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_pandas.py", line 333, in test_conv_null
    dh_table = to_table(df)
  File "/python/deephaven/pandas.py", line 256, in to_table
    input_cols.append(_make_input_column(col, np_array, dh_dtype))
  File "/python/deephaven/numpy.py", line 73, in _make_input_column
    return InputColumn(name=_to_column_name(col), data_type=dtype, input_data=np_array)
  File "/python/deephaven/column.py", line 121, in __init__
    raise DHError(e, f"failed to create an InputColumn ({name}).") from e
deephaven.dherror.DHError: failed to create an InputColumn (Char). : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/deephaven/column.py", line 119, in __init__
    self.j_column = self._to_j_column(input_data)
  File "/python/deephaven/column.py", line 134, in _to_j_column
    dtypes.array(
  File "/python/deephaven/dtypes.py", line 309, in array
    raise DHError(e, f"failed to create a Java {dtype.j_name} array.") from e
deephaven.dherror.DHError: failed to create a Java char array. : TypeError: 'NAType' object cannot be interpreted as an integer
Traceback (most recent call last):
  File "/python/deephaven/dtypes.py", line 307, in array
    return jpy.array(dtype.j_type, seq)
TypeError: 'NAType' object cannot be interpreted as an integer

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_live_table_ensure_initial_partitions_exist

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_live_table_observe_subscription_cancellations

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_live_table_with_partition_schema

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_live_table_with_partition_schema_ops

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_static_table_with_partition_schema

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_make_table_without_partition_schema

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_partition_size_sub_failure

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in tests/test_table_data_service/TableDataServiceTestCase

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

tests/test_table_data_service.py.test_partition_sub_failure

failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)
Raw output
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/python/tests/test_table_data_service.py", line 224, in setUp
    self.test_table = dharrow.to_table(self.pa_table)
  File "/python/deephaven/arrow.py", line 111, in to_table
    raise DHError(e, message="failed to create a Deephaven table from a pyarrow table.") from e
deephaven.dherror.DHError: failed to create a Deephaven table from a pyarrow table. : RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
Traceback (most recent call last):
  File "/python/deephaven/arrow.py", line 103, in to_table
    j_barrage_table_builder.setSchema(jpy.byte_buffer(dh_schema.serialize()))
RuntimeError: java.lang.UnsupportedOperationException: No known ChunkReader for arrow type Timestamp(NANOSECOND, UTC) to long. Supported types: class java.time.ZonedDateTime, class java.time.LocalDateTime, class java.time.Instant
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReaderPojo(DefaultChunkReaderFactory.java:194)
	at io.deephaven.extensions.barrage.chunk.DefaultChunkReaderFactory.newReader(DefaultChunkReaderFactory.java:152)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.configureWithSchema(ArrowToTableConverter.java:184)
	at io.deephaven.extensions.barrage.util.ArrowToTableConverter.setSchema(ArrowToTableConverter.java:117)

Check failure on line 1 in io/deephaven/client/DeephavenFlightSessionTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

DeephavenFlightSessionTest.doPutNewTable

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '06af5736-b755-4f60-b9d2-66f4809431e9'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '06af5736-b755-4f60-b9d2-66f4809431e9'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/jetty/JettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

JettyFlightRoundTripTest.testZonedDateTimeColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'c2f9dca0-784b-4d4b-9874-0d80bffabb2f'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'c2f9dca0-784b-4d4b-9874-0d80bffabb2f'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/jetty/JettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

JettyFlightRoundTripTest.testTimestampColumns

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '059d5780-1f8e-4682-98fb-eb1aad1c645b'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '059d5780-1f8e-4682-98fb-eb1aad1c645b'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/jetty/JettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

JettyFlightRoundTripTest.testLongColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'fb0202ed-e100-4065-879c-f0cd10a6a815'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'fb0202ed-e100-4065-879c-f0cd10a6a815'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/jetty/JettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

JettyFlightRoundTripTest.testInstantColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '73f45df0-9486-4a34-ba17-a15f1e2df6d0'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '73f45df0-9486-4a34-ba17-a15f1e2df6d0'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/netty/NettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

NettyFlightRoundTripTest.testZonedDateTimeColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '05c1c1a0-a03e-4a21-913c-cc9551742f52'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '05c1c1a0-a03e-4a21-913c-cc9551742f52'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/netty/NettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

NettyFlightRoundTripTest.testTimestampColumns

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'd39539f4-71db-4459-87af-8cacfb8b2262'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID 'd39539f4-71db-4459-87af-8cacfb8b2262'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/netty/NettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

NettyFlightRoundTripTest.testLongColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '6b37b576-ccdd-491f-a743-6583322d82cd'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '6b37b576-ccdd-491f-a743-6583322d82cd'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)

Check failure on line 1 in io/deephaven/server/netty/NettyFlightRoundTripTest

See this annotation in the file changed.

@github-actions github-actions / check-ci test report

NettyFlightRoundTripTest.testInstantColumnWithFactor

org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '792a4221-1e59-4e88-a5ca-1f5d91c71d97'
Raw output
org.apache.arrow.flight.FlightRuntimeException: INVALID_ARGUMENT: Details Logged w/ID '792a4221-1e59-4e88-a5ca-1f5d91c71d97'
	at app//org.apache.arrow.flight.CallStatus.toRuntimeException(CallStatus.java:121)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromGrpcRuntimeException(StatusUtils.java:161)
	at app//org.apache.arrow.flight.grpc.StatusUtils.fromThrowable(StatusUtils.java:182)
	at app//org.apache.arrow.flight.FlightClient$SetStreamObserver.onError(FlightClient.java:495)
	at app//io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:481)
	at app//io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
	at app//io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
	at app//io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
	at app//org.apache.arrow.flight.grpc.ClientInterceptorAdapter$FlightClientCallListener.onClose(ClientInterceptorAdapter.java:118)
	at app//io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:564)
	at app//io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:729)
	at app//io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:710)
	at app//io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
	at app//io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
	at [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
	at [email protected]/java.lang.Thread.run(Thread.java:1583)