Wuerike
Wuerike
If you give me a hint of how it can be done, maybe I can colaborate with it
I think i have a similar error with the GCS to PubSub template, until the release `2023-03-21-00_RC00` it was working fine, but now at the `2023-03-28-00_RC00` it's failing on rename...
@bvolpato just to update, it was indeed a missing permission, I gave owner access to the service account and it worked. The problem is it was working before this is...
@danriedl have you moved it? If you didn't yet, i'd like to ask with you could also add an uuid_v5 method
``` import dask_deltatable as ddt import os ACCESS_KEY_ID = os.environ["AWS_ACCESS_KEY_ID"] SECRET_ACCESS_KEY = os.environ["AWS_SECRET_ACCESS_KEY"] if __name__ == '__main__': delta_storage_options = { "access_key": ACCESS_KEY_ID, "secret_key": SECRET_ACCESS_KEY, } # Read Delta table table_df...
``` Traceback (most recent call last): File "/home/Wuerike.Cavalheiro/stone/scripts/iceberg_poc/teste.py", line 14, in table_df = ddt.read_deltalake( ^^^^^^^^^^^^^^^^^^^ File "/home/Wuerike.Cavalheiro/.pyenv/versions/3.11.9/envs/iceberg-poc/lib/python3.11/site-packages/dask_deltatable/core.py", line 276, in read_deltalake resultdf = _read_from_catalog( ^^^^^^^^^^^^^^^^^^^ File "/home/Wuerike.Cavalheiro/.pyenv/versions/3.11.9/envs/iceberg-poc/lib/python3.11/site-packages/dask_deltatable/core.py", line 169, in...