Aiven-Open / sql-cli-for-apache-flink-docker

SQL CLI for Apache Flink® via docker-compose
Apache License 2.0
46 stars 28 forks source link

Getting Error - java.net.UnknownHostException: jobmanager: Name or service not known #25

Closed sandeep540 closed 1 year ago

sandeep540 commented 1 year ago

What can we help you with?

I am trying to run the below sql commands and getting the error

CREATE TABLE orders (
    order_uid  BIGINT,
    product_id BIGINT,
    price      DECIMAL(32, 2),
    order_time TIMESTAMP(3)
) WITH (
    'connector' = 'datagen'
);

SELECT * FROM orders;

Where would you expect to find this information?

any docker-compose setting am I missing? Screenshot 2022-12-03 at 7 22 13 PM

sandeep540 commented 1 year ago

NVMD it was my mistake in docker compose, fixed it