heman026 commented on issue #1524:
URL: 
https://github.com/apache/iceberg-python/issues/1524#issuecomment-2683847774

   > Thanks [@heman026](https://github.com/heman026) for sharing the solution
   > 
   > Would you mind sharing your configuration and how you load it?
   > 
   > I assume you are referring the tutorial similar to 
https://www.dremio.com/blog/intro-to-dremio-nessie-and-apache-iceberg-on-your-laptop/
   
   ### I have started Nessie with the following configuration:
   ```
   ./java \
   -Dnessie.catalog.service.s3.default-options.request-signing-enabled=false \
   -Dnessie.version.store.type=JDBC \
   -Dquarkus.datasource.jdbc.url=jdbc:postgresql://localhost:5432/nessie_db \
   -Dquarkus.datasource.username=nessie \
   -Dquarkus.smallrye-health.context-propagation=true \
   -Dquarkus.datasource.password=nessie \
   -Dnessie.catalog.default-warehouse=warehouse \
   -Dnessie.catalog.warehouses.warehouse.location=s3a://temp \
   -Dnessie.catalog.service.s3.default-options.endpoint=http://xxxxxxx:9000 \
   -Dnessie.catalog.service.s3.default-options.path-style-access=true \
   
-Dnessie.catalog.service.s3.default-options.access-key=urn:nessie-secret:quarkus:nessie-catalog-secrets.s3-access-key
 \
   -Dnessie-catalog-secrets.s3-access-key.name=minioadmin \
   -Dnessie-catalog-secrets.s3-access-key.secret=minioadmin \
   -Dnessie.server.authentication.enabled=false \
   -Dnessie.catalog.service.s3.default-options.region=us-east-1 \
   /opt/nessie/nessie-quarkus-0.100.2-runner.jar
   
   ```
   
   
   ### Configuration for REST catalog configuration
   ```
   catalog = load_catalog("rest",
       **{
   
           "uri": "http://10.174.135.168:19120/iceberg";,
     "s3.endpoint": "http://10.174.135.168:9000";,
      "s3.remote-signing-enabled": "false",
     "s3.access-key-id":"minioadmin",
     "s3.secret-access-key":"minioadmin",
       },
       )
   ```


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

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