QueryPerformanceRecorder: Group Batched Operations as a Single Query #11814
8473 tests run, 48 skipped, 21 failed.
Annotations
Check failure on line 1 in test_console/ConsoleTestCase
github-actions / check-ci test report
tests/test_console.py.test_run_script_and_open_table
no table by the name demo_table
Raw output
Traceback (most recent call last):
File "/project/tests/test_console.py", line 49, in test_run_script_and_open_table
pa_table = self.session.open_table('demo_table').to_arrow()
File "/project/pydeephaven/session.py", line 416, in open_table
raise DHError(f"no table by the name {name}") from None
pydeephaven.dherror.DHError: no table by the name demo_table
Check failure on line 1 in test_query/QueryTestCase
github-actions / check-ci test report
tests/test_query.py.test_snapshot
failed to finish TimeTableOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '20ffa080-b570-4689-8b4a-140d7506ccef'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'20ffa080-b570-4689-8b4a-140d7506ccef\'", grpc_status:3, created_time:"2023-11-06T23:35:19.130895013+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_query.py", line 68, in test_snapshot
test_table = self.session.time_table(period=1000000)
File "/project/pydeephaven/session.py", line 454, in time_table
return self.table_service.grpc_table_op(None, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish TimeTableOp operation
Check failure on line 1 in test_session/SessionTestCase
github-actions / check-ci test report
tests/test_session.py.test_input_table [InputTable ops]
failed to finish SnapshotTableOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '578ea199-1d43-4c8e-8bfa-840c11739021'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:22.863313434+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'578ea199-1d43-4c8e-8bfa-840c11739021\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_session.py", line 258, in test_input_table
self.assertEqual(append_input_t.snapshot().size, dh_table.size * 2)
File "/project/pydeephaven/table.py", line 691, in snapshot
return super(Table, self).snapshot()
File "/project/pydeephaven/_table_interface.py", line 646, in snapshot
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish SnapshotTableOp operation
Check failure on line 1 in test_session/SessionTestCase
github-actions / check-ci test report
tests/test_session.py.test_time_table
failed to finish TimeTableOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '641e3aa1-342c-4f75-9eca-8d9fa0757591'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:24.179374994+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'641e3aa1-342c-4f75-9eca-8d9fa0757591\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_session.py", line 63, in test_time_table
t = session.time_table(period=100000, blink_table=True)
File "/project/pydeephaven/session.py", line 454, in time_table
return self.table_service.grpc_table_op(None, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish TimeTableOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_agg_all_by [_AggregationColumns(agg_spec=percentile { percentile: 0.5 } , cols=[])]
failed to finish AggregateAllOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '00920184-f420-4e96-87f9-509a987c1b4c'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'00920184-f420-4e96-87f9-509a987c1b4c\'", grpc_status:3, created_time:"2023-11-06T23:35:24.247893222+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 276, in test_agg_all_by
result_table = test_table.agg_all_by(agg=agg, by=["a"])
File "/project/pydeephaven/table.py", line 661, in agg_all_by
return super(Table, self).agg_all_by(agg, by)
File "/project/pydeephaven/_table_interface.py", line 614, in agg_all_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish AggregateAllOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_agg_with_options [_AggregationColumns(agg_spec=median { } , cols=['ma = a', 'mb = b'])]
failed to finish AggregateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '54219c1d-b080-4ec1-84fa-b8d7db96b7b9'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'54219c1d-b080-4ec1-84fa-b8d7db96b7b9\'", grpc_status:3, created_time:"2023-11-06T23:35:25.073463961+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 348, in test_agg_with_options
rt_default = test_table.agg_by(aggs=agg_default, by=["c"])
File "/project/pydeephaven/table.py", line 642, in agg_by
return super(Table, self).agg_by(aggs, by)
File "/project/pydeephaven/_table_interface.py", line 591, in agg_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish AggregateOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_agg_with_options [_AggregationColumns(agg_spec=unique { include_nulls: true non_unique_sentinel { short_value: -1 } } , cols=['ua = a', 'ub = b'])]
failed to finish AggregateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID 'ba6b267e-c6ba-45da-b40a-471dad46bd1b'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'ba6b267e-c6ba-45da-b40a-471dad46bd1b\'", grpc_status:3, created_time:"2023-11-06T23:35:25.111116452+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 347, in test_agg_with_options
rt_option = test_table.agg_by(aggs=agg_option, by=["c"])
File "/project/pydeephaven/table.py", line 642, in agg_by
return super(Table, self).agg_by(aggs, by)
File "/project/pydeephaven/_table_interface.py", line 591, in agg_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish AggregateOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_create_data_table_then_update
failed to finish UpdateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '370c0a6c-cea7-4cb7-8a20-97a3cb84bbad'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'370c0a6c-cea7-4cb7-8a20-97a3cb84bbad\'", grpc_status:3, created_time:"2023-11-06T23:35:27.573855902+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 55, in test_create_data_table_then_update
new_table = self.session.import_table(pa_table).update(formulas=['Sum = a + b + c + d'])
File "/project/pydeephaven/table.py", line 133, in update
return super().update(formulas)
File "/project/pydeephaven/_table_interface.py", line 65, in update
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish UpdateOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_cross_join
failed to finish DropColumnsOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '1abffed8-06fb-4803-98cf-dfc6addb9a74'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'1abffed8-06fb-4803-98cf-dfc6addb9a74\'", grpc_status:3, created_time:"2023-11-06T23:35:27.616717884+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 147, in test_cross_join
left_table = left_table.drop_columns(cols=["e"])
File "/project/pydeephaven/table.py", line 119, in drop_columns
return super().drop_columns(cols)
File "/project/pydeephaven/_table_interface.py", line 50, in drop_columns
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish DropColumnsOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_dedicated_agg
failed to finish AggregateAllOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '77be9209-3c2d-4067-81ed-264e447afcdb'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:27.647255502+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'77be9209-3c2d-4067-81ed-264e447afcdb\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 198, in test_dedicated_agg
result_table = op(test_table, by=["a", "b"])
File "/project/pydeephaven/table.py", line 482, in first_by
return super(Table, self).first_by(by)
File "/project/pydeephaven/_table_interface.py", line 416, in first_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish AggregateAllOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_drop_columns
failed to finish DropColumnsOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID 'b192e637-6b07-4920-a04e-45a115b9f7b9'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:27.675795681+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'b192e637-6b07-4920-a04e-45a115b9f7b9\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 67, in test_drop_columns
table2 = table1.drop_columns(cols=column_names[:-1])
File "/project/pydeephaven/table.py", line 119, in drop_columns
return super().drop_columns(cols)
File "/project/pydeephaven/_table_interface.py", line 50, in drop_columns
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish DropColumnsOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_exact_join
failed to finish DropColumnsOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '41362522-2df3-43ee-991b-5e29c114e046'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'41362522-2df3-43ee-991b-5e29c114e046\'", grpc_status:3, created_time:"2023-11-06T23:35:27.702384723+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 138, in test_exact_join
right_table = test_table.drop_columns(["b", "c"])
File "/project/pydeephaven/table.py", line 119, in drop_columns
return super().drop_columns(cols)
File "/project/pydeephaven/_table_interface.py", line 50, in drop_columns
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish DropColumnsOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_head_tail
failed to finish HeadOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID 'cce1490b-69e1-41df-9f23-f55dfad861d5'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:27.761866767+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'cce1490b-69e1-41df-9f23-f55dfad861d5\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 122, in test_head_tail
result_table = op(test_table, num_rows=50)
File "/project/pydeephaven/table.py", line 270, in head
return super().head(num_rows)
File "/project/pydeephaven/_table_interface.py", line 193, in head
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish HeadOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_snapshot
failed to finish UpdateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '2ccffc49-1d34-4d18-b283-7cb805ce64bd'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'2ccffc49-1d34-4d18-b283-7cb805ce64bd\'", grpc_status:3, created_time:"2023-11-06T23:35:30.029023826+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 219, in test_snapshot
test_table = self.session.time_table(period=10000000).update(formulas=["Col1 = i", "Col2 = i * 2"])
File "/project/pydeephaven/table.py", line 133, in update
return super().update(formulas)
File "/project/pydeephaven/_table_interface.py", line 65, in update
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish UpdateOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_sort
failed to finish SortOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '22654ec4-bfc6-4a0f-8d21-379cd8a70bbe'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:30.133018119+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'22654ec4-bfc6-4a0f-8d21-379cd8a70bbe\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 103, in test_sort
sorted_table = test_table.sort(order_by=["a", "b"], order=[SortDirection.DESCENDING])
File "/project/pydeephaven/table.py", line 224, in sort
return super().sort(order_by, order)
File "/project/pydeephaven/_table_interface.py", line 162, in sort
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish SortOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_ungroup
failed to finish AggregateAllOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '0c548908-29cd-41e6-a5f6-1ccdc96bebdf'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:30.784176778+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'0c548908-29cd-41e6-a5f6-1ccdc96bebdf\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 186, in test_ungroup
grouped_table = test_table.group_by(by=["a", "c"])
File "/project/pydeephaven/table.py", line 450, in group_by
return super(Table, self).group_by(by)
File "/project/pydeephaven/_table_interface.py", line 382, in group_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish AggregateAllOp operation
Check failure on line 1 in test_table/TableTestCase
github-actions / check-ci test report
tests/test_table.py.test_where_in
failed to finish HeadOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '47762f4c-d553-44b9-abcb-7264e7d186f9'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'47762f4c-d553-44b9-abcb-7264e7d186f9\'", grpc_status:3, created_time:"2023-11-06T23:35:31.146893146+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_table.py", line 301, in test_where_in
unique_table = test_table.head(num_rows=50).select_distinct(
File "/project/pydeephaven/table.py", line 270, in head
return super().head(num_rows)
File "/project/pydeephaven/_table_interface.py", line 193, in head
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish HeadOp operation
Check failure on line 1 in test_updateby/UpdateByTestCase
github-actions / check-ci test report
tests/test_updateby.py.test_em
failed to finish UpdateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '59038452-e0ba-4b53-ad3e-cb9210f86725'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:31.180683502+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'59038452-e0ba-4b53-ad3e-cb9210f86725\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_updateby.py", line 22, in setUp
self.static_table = self.session.import_table(pa_table).update(["Timestamp=now()"])
File "/project/pydeephaven/table.py", line 133, in update
return super().update(formulas)
File "/project/pydeephaven/_table_interface.py", line 65, in update
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish UpdateOp operation
Check failure on line 1 in test_updateby/UpdateByTestCase
github-actions / check-ci test report
tests/test_updateby.py.test_multiple_ops
failed to finish UpdateByOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '77e0914c-7581-4ca8-b6e7-1655a27399c9'"
debug_error_string = "UNKNOWN:Error received from peer {created_time:"2023-11-06T23:35:32.482409462+00:00", grpc_status:3, grpc_message:"Details Logged w/ID \'77e0914c-7581-4ca8-b6e7-1655a27399c9\'"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_updateby.py", line 205, in test_multiple_ops
rt = t.update_by(ops=multiple_ops, by="c")
File "/project/pydeephaven/table.py", line 680, in update_by
return super(Table, self).update_by(ops, by)
File "/project/pydeephaven/_table_interface.py", line 634, in update_by
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish UpdateByOp operation
Check failure on line 1 in test_updateby/UpdateByTestCase
github-actions / check-ci test report
tests/test_updateby.py.test_rolling_ops
failed to finish UpdateOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID '15606b5a-5efa-41ca-be98-3153bfb7f058'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'15606b5a-5efa-41ca-be98-3153bfb7f058\'", grpc_status:3, created_time:"2023-11-06T23:35:32.515878268+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_updateby.py", line 22, in setUp
self.static_table = self.session.import_table(pa_table).update(["Timestamp=now()"])
File "/project/pydeephaven/table.py", line 133, in update
return super().update(formulas)
File "/project/pydeephaven/_table_interface.py", line 65, in update
return self.table_op_handler(table_op)
File "/project/pydeephaven/table.py", line 36, in table_op_handler
return self.session.table_service.grpc_table_op(self, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish UpdateOp operation
Check failure on line 1 in test_updateby/UpdateByTestCase
github-actions / check-ci test report
tests/test_updateby.py.test_simple_ops
failed to finish TimeTableOp operation
Raw output
Traceback (most recent call last):
File "/project/pydeephaven/_table_service.py", line 49, in grpc_table_op
response = stub_func(op.make_grpc_request(result_id=result_id, source_id=table_reference),
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1161, in __call__
return _end_unary_response_blocking(state, call, False, None)
File "/usr/local/lib/python3.10/site-packages/grpc/_channel.py", line 1004, in _end_unary_response_blocking
raise _InactiveRpcError(state) # pytype: disable=not-instantiable
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INVALID_ARGUMENT
details = "Details Logged w/ID 'a6db9414-3b2e-4ec0-842c-cb5ab0579bdc'"
debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"Details Logged w/ID \'a6db9414-3b2e-4ec0-842c-cb5ab0579bdc\'", grpc_status:3, created_time:"2023-11-06T23:35:32.567778052+00:00"}"
>
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/project/tests/test_updateby.py", line 23, in setUp
self.ticking_table = self.session.time_table(1000000).update(
File "/project/pydeephaven/session.py", line 454, in time_table
return self.table_service.grpc_table_op(None, table_op)
File "/project/pydeephaven/_table_service.py", line 60, in grpc_table_op
raise DHError(f"failed to finish {op.__class__.__name__} operation") from e
pydeephaven.dherror.DHError: failed to finish TimeTableOp operation