Lingqing Gan
Lingqing Gan
Would you please share which code you are using? Thank you.
Hi @dhendry, thank you for raising this issue! Actionable error is something we want to ensure for our users. Just so I know the exact situation, could you share a...
Thank you @kamilglod and @abannura. Could you provide a minimum code snippet that can reproduce the error?
@kamilglod Could you tell me which exact class you are using? Still, a code snippet would help a lot, it reduces lots of ambiguities.
@abannura For class `AppendRowsStream`, I think retry and timeout are not supported at this moment, see [here](https://github.com/googleapis/python-bigquery-storage/blob/792156175a15a221932481663931bd1e71e9b6c6/google/cloud/bigquery_storage_v1/writer.py#L163-L164).
I am able to reproduce the issue by intentionally making the append row request invalid: ``` Traceback (most recent call last): File "/usr/local/google/home/xxxxxxxxxxxx/micromamba/envs/dev-3.11/lib/python3.11/site-packages/google/api_core/grpc_helpers_async.py", line 102, in _wrapped_aiter async for response...
After some learning I think the retry is actually working as intended here. The `retry` we are setting up here is only for establishing the connection, rather than sending the...
Here are the official definitions in gRPC: https://grpc.io/docs/what-is-grpc/core-concepts/#server-streaming-rpc tl;dr: server streaming is when streaming is sent from server to user (like youtube), and client streaming is the other way around....
I will close this PR as we are migrating the repo into [googleapis/google-cloud-python](https://github.com/googleapis/google-cloud-python). Please open a PR there if you want to continue working on it.
Hi @tulinski, thanks for raising the issue. The [default mapper](https://github.com/googleapis/python-bigquery-pandas/blob/d525eba294ad3d39709cd9e5616dd53933216a98/pandas_gbq/gbq_connector.py#L371) is necessary because some BigQuery types don't map to the types that pandas defaults to. Now you can add to...