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

   ### Question
   
   I tried connecting to Nessie using load_catalog and RestCatalog() from 
pyiceberg, but I am getting the below error in Config Response Model,
   
   > pydantic_core._pydantic_core.ValidationError: 2 validation errors for 
ConfigResponse
   > defaults
   >   Field required [type=missing, input_value={'defaultBranch': 
'main',...SupportedApiVersion': 2}, input_type=dict]
   >     For further information visit https://errors.pydantic.dev/2.7/v/missing
   > overrides
   >   Field required [type=missing, input_value={'defaultBranch': 
'main',...SupportedApiVersion': 2}, input_type=dict]
   >     For further information visit https://errors.pydantic.dev/2.7/v/missing
   
   ### Rest Catalog Code
   ```
   `catalog = RestCatalog(
       "default",
       **{
           "uri": "http://10.xx.xx.xx:19120/api";,
     "s3.endpoint": "http://10.xx.xx.xx.161:9000";,
       "s3.access-key-id": "minioadmin",
       "s3.secret-access-key": "minioadmin",
           "warehouse": "s3a://iceberg-datalake",
       },
   
   )`
   ```
   
   ### load_catalog
   
   
   ```
   catalog = load_catalog("rest",
       **{
   
           "uri": "http://10.xx.xx.xx:19120/api";,
           "s3.path-style-access": "true",
     "s3.endpoint": "http://xx.xx.xx:9000";,
       "s3.access-key-id": "minioadmin",
       "s3.secret-access-key": "minioadmin",
           "warehouse": "s3a://iceberg-datalake",
   
       },
       )
   ```
   
   Please help me resolve this issue.
   


-- 
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