-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error server #2
Comments
In the $ git lfs ls-files
a221c4106b * tests/jdbc/mysql-connector-j-9.0.0.jar
a2644cbfba * tests/jdbc/postgresql-42.7.3.jar
$ ls -lh tests/jdbc/*.jar
-rw-r--r-- 1 user group 2,5M чер 9 04:15 tests/jdbc/mysql-connector-j-9.0.0.jar
-rw-rw-r-- 1 user group 1,1M бер 14 19:41 tests/jdbc/postgresql-42.7.3.jar If everything is ok with that, then you just execute $ docker exec -it postgres_jdbc_fdw psql postgres postgres
psql (16.3 (Debian 16.3-1.pgdg120+1))
Type "help" for help.
postgres=# \des
List of foreign servers
Name | Owner | Foreign-data wrapper
------------+----------+----------------------
rfam | postgres | jdbc_fdw
rnacentral | postgres | jdbc_fdw
(2 rows)
postgres=# \det
List of foreign tables
Schema | Table | Server
--------+---------------+------------
public | rfam_taxonomy | rfam
public | rnacen_xref | rnacentral
(2 rows) These are publicibly available This works postgres=# select * from rfam_taxonomy limit 10; But this returns mentioned by you error postgres=# select * from rnacen_xref limit 10;
ERROR: remote server returned an error But if you will have a look onto the container logs, you will see
I.e. there is public access throttling is happening. But you are right that This is one of the main reasons, why I didn't include it yet into all-inclusive datero engine image. |
I've installed the docker image JDBC_FDW and I've run the setup postgres sql Script. It gives me "ERROR: remote server returned an error". I've already copied the jar file in a directory :drivers/postgresql....jar
The text was updated successfully, but these errors were encountered: