GitHub user Rafael-Bessa added a comment to the discussion: Polaris configuration with External Minio S3 (HTTPS) ERROR
Hi @MissaouiAhmed, The error happens because Java does not trust the Minio SSL certificate. The easiest way to fix it is to import the Minio certificate into the Java truststore. You can do this by running: ```keytool -import -alias minio -file /path/to/minio.crt -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit``` Replace /path/to/minio.crt with the path to your Minio server certificate. Then restart Polaris and your Spark session. This usually fixes the PKIX path building failed error. If this works for you, please mark this as the accepted answer. GitHub link: https://github.com/apache/polaris/discussions/2705#discussioncomment-14545203 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
