paradedb / pg_analytics

DuckDB-powered analytics for Postgres
https://paradedb.com
PostgreSQL License
383 stars 15 forks source link

Invalid Input Error: Secret provider 'service_principal' not found for type 'azure' #175

Open dgaudet opened 1 week ago

dgaudet commented 1 week ago

What happens?

I receive an error when attempting to create a forgein table to the azure data lake using a service principal for credentials.

This is the error:Invalid Input Error: Secret provider 'service_principal' not found for type 'azure'

To Reproduce

I start up a brand new paradedb using docker and exec into it:

docker run --name paradedb -e POSTGRES_PASSWORD=password paradedb/paradedb
docker exec -it paradedb psql -U postgres

Then I setup the Foreign data wrapper, create a server and user mapping:

psql (16.4 (Debian 16.4-1.pgdg120+2))
Type "help" for help.

postgres=# CREATE FOREIGN DATA WRAPPER parquet_wrapper
HANDLER parquet_fdw_handler
VALIDATOR parquet_fdw_validator;
CREATE FOREIGN DATA WRAPPER

postgres=# CREATE SERVER parquet_server
FOREIGN DATA WRAPPER parquet_wrapper;
CREATE SERVER

postgres=# CREATE USER MAPPING FOR public
SERVER parquet_server
OPTIONS (
  type 'AZURE',
  provider 'SERVICE_PRINCIPAL',
  tenant_id '<my tennant id>',
  client_id '<my client id>',
  client_secret '<my client secret>,
  account_name '<my storage account name>'
);
CREATE USER MAPPING

Then I try to setup the foreign table:

postgres=# CREATE FOREIGN TABLE parquet_table ()
SERVER parquet_server
OPTIONS (files 'az://<actual path>/*.parquet');
ERROR:  Invalid Input Error: Secret provider 'service_principal' not found for type 'azure'

OS:

macOSX

ParadeDB Version:

v0.2.3

Are you using ParadeDB Docker, Helm, or the extension(s) standalone?

ParadeDB Docker Image

Full Name:

Dean Gaudet

Affiliation:

Enverus

Did you include all relevant data sets for reproducing the issue?

Yes

Did you include the code required to reproduce the issue?

Did you include all relevant configurations (e.g., CPU architecture, PostgreSQL version, Linux distribution) to reproduce the issue?

philippemnoel commented 1 week ago

Thanks for your report -- We'll investigate.