salexln opened a new issue, #692:
URL: https://github.com/apache/iceberg-python/issues/692

   ### Question
   
   I running this code
   
   ```python
   glue_database_name = "alex_iceberg_test_db"
   glue_catalog_uri = "s3://alex-iceberg-test-storage"
   my_namespace = 'alex_db'
   
   
   # Instantiate glue catalog
   catalog = load_catalog("glue", **{"type": "glue", 
                                     "s3.region": "region", 
                                     "profile": "ALEX",
                                     "s3.access-key-id": "XXX",
                                     "s3.secret-access-key": "YYY"})
   
   
   # Define the Iceberg schema
   schema = Schema(
       NestedField(field_id=1, name="data", field_type=StringType(), 
required=False)        
   )
   
   
   ## Create the Iceberg table using the Iceberg catalog
   table_name = 'test_1'
   catalog.create_table(
       identifier=f'{my_namespace}.{table_name}',
       location=glue_catalog_uri,
       schema=schema
   )
   ```
   
   and getting that 
   ```
   OSError: When getting information for key 
'metadata/00000-5df640cc-b47c-4b39-b578-07113565dab5.metadata.json' in bucket 
'alex-iceberg-test-storage': AWS Error ACCESS_DENIED during HeadObject 
operation: No response body.
   ```
   
   Inside `alex-iceberg-test-storage` I do have `metadata` but the 
`00000-5df640cc-b47c-4b39-b578-07113565dab5.metadata.json` is not there. 
   Why does it searching for that file and who should create it?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to