Avinash Kumar 2
01/02/2026, 8:56 AMkap_catalog PROPERTIES (
"aws.s3.access_key" = "******",
"iceberg.catalog.jdbc.driver" = "org.postgresql.Driver",
"aws.s3.secret_key" = "******",
"aws.s3.endpoint" = "https://storage.googleapis.com",
"aws.s3.enable_path_style_access" = "true",
"iceberg.catalog.uri" = "jdbcpostgresql//postgres-host-ip:5432/warehouse",
"type" = "iceberg", "aws.s3.use_aws_sdk_default_behavior" = "false",
"iceberg.catalog.jdbc.user" = "postgres",
"aws.s3.region" = "asia-south1",
"aws.s3.use_instance_profile" = "false",
"iceberg.catalog.warehouse" = "s3://warehouse",
"iceberg.catalog.type" = "jdbc",
"iceberg.catalog.jdbc.password" = "postgres-password"
)
I am able to run below queries:
show catalogs
set catalog kap_catalog
show databases
use database_name
show tables
But I am unable to run:
select *count*(*) from table_name
Or any other select query.
The query is running infinitely in this case.
Please helpJOSE PUERTOS TAVARES
01/02/2026, 4:18 PM