You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
Since this is the 20.6.0 version, the only way I can get access to the EventStore on a request-response basis is HTTPS (correct me if I'm wrong). I've managed to get access to the Web-UI (2113 port, required adding "EVENTSTORE_DEV=true"), I've managed to even make the REST API work via Postman.
I dev in Java, and I tried to run the "Write event example" from the EventStore.JVM README.
Having "com.geteventstore:eventstore-client_2.13:7.1.0" as a dependency, I run the example, it repetitively prints the following 2 messages repetitively:
[INFO] [06/18/2020 03:19:51.795] [default-akka.actor.default-dispatcher-6] [akka://default/user/$a] Connected to /127.0.0.1:1113 [WARN] [06/18/2020 03:19:51.809] [default-akka.actor.default-dispatcher-9] [akka://default/user/$a] Connection lost to /127.0.0.1:1113: sink disconnected [INFO] [06/18/2020 03:19:52.090] [default-akka.actor.default-dispatcher-5] [akka://default/user/$a] Connected to /127.0.0.1:1113 [WARN] [06/18/2020 03:19:52.094] [default-akka.actor.default-dispatcher-9] [akka://default/user/$a] Connection lost to /127.0.0.1:1113: sink disconnected [INFO] [06/18/2020 03:19:52.371] [default-akka.actor.default-dispatcher-9] [akka://default/user/$a] Connected to /127.0.0.1:1113 [WARN] [06/18/2020 03:19:52.374] [default-akka.actor.default-dispatcher-5] [akka://default/user/$a] Connection lost to /127.0.0.1:1113: sink disconnected [INFO] [06/18/2020 03:19:52.648] [default-akka.actor.default-dispatcher-6] [akka://default/user/$a] Connected to /127.0.0.1:1113 [WARN] [06/18/2020 03:19:52.651] [default-akka.actor.default-dispatcher-8] [akka://default/user/$a] Connection lost to /127.0.0.1:1113: sink disconnected [INFO] [06/18/2020 03:19:52.919] [default-akka.actor.default-dispatcher-6] [akka://default/user/$a] Connected to /127.0.0.1:1113
and approximately after 8 min of these messages being printed, the third one comes into the mix, and now there are 3 of those being repetitively printed:
[WARN] [06/18/2020 03:30:50.428] [default-akka.actor.default-dispatcher-5] [akka://default/user/$a] Connection lost to /127.0.0.1:1113: akka.stream.StreamTcpException: The connection closed with error: Connection reset
My guess is the JVM client trying to use HTTP, fails, retries. Correct me if my guess is wrong. And is there a way to make the JVM client properly communicate with the EventStore?
The text was updated successfully, but these errors were encountered:
Hey. I'm running a docker-compose installation of EventStore, version 20.6.0, for development purposes:
Since this is the 20.6.0 version, the only way I can get access to the EventStore on a request-response basis is HTTPS (correct me if I'm wrong). I've managed to get access to the Web-UI (2113 port, required adding "EVENTSTORE_DEV=true"), I've managed to even make the REST API work via Postman.
I dev in Java, and I tried to run the "Write event example" from the EventStore.JVM README.
Having "com.geteventstore:eventstore-client_2.13:7.1.0" as a dependency, I run the example, it repetitively prints the following 2 messages repetitively:
and approximately after 8 min of these messages being printed, the third one comes into the mix, and now there are 3 of those being repetitively printed:
My guess is the JVM client trying to use HTTP, fails, retries. Correct me if my guess is wrong. And is there a way to make the JVM client properly communicate with the EventStore?
The text was updated successfully, but these errors were encountered: