-
Notifications
You must be signed in to change notification settings - Fork 15
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
File Persistence and MongoDB persistence #178
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall, it looks good to me and I think you are on the right track.
There's a few improvements I think we could have on the code:
- try to add javadoc to the core persistence api
- I'd prefer if we named it
core-persistence-file
,core-persistence-api
andcore-persistence-mongodb
: the reason being that as we add more and more components for the code, it starts to get a bit confusing to navigate in the project tree. - Make sure to add the MongoDB container (or Postgres) in the
docker-compose.yml
file. - Also make sure to add documentation about this on the usage guide.
Thanks!
0fa438d
to
db71d70
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice to see all the improvements @Croway! There are still some things to tweak, but it's getting better and better. I'm looking forward seeing this one on the code 🙏
core/core-service-discovery/src/main/java/ai/wanaku/core/service/discovery/ValkeyRegistry.java
Show resolved
Hide resolved
...-service-discovery/src/main/java/ai/wanaku/core/service/discovery/WanakuServiceRegistry.java
Outdated
Show resolved
Hide resolved
routers/wanaku-router/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
...er-quarkus/src/main/java/ai/wanaku/server/quarkus/api/v1/management/targets/TargetsBean.java
Outdated
Show resolved
Hide resolved
...er-quarkus/src/main/java/ai/wanaku/server/quarkus/api/v1/management/targets/TargetsBean.java
Outdated
Show resolved
Hide resolved
services/tools/wanaku-routing-yaml-route-service/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
servers/wanaku-server-quarkus/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
...s/wanaku-server-quarkus/src/test/java/org/wanaku/server/quarkus/support/TestIndexHelper.java
Show resolved
Hide resolved
|
||
#quarkus.mongodb.connection-string = mongodb://localhost:27017 | ||
#wanaku.persistence.mongodb = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this is out of scope, as downstream services should not interact w/ the persistence layer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct
Per discussion, this should also resolve #190. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is ready to go, thanks!
rename persistence modules Use repository in wanaku server File Persistence and MongoDB persistence Use repository in wanaku server rebase main fix Resources test
5a41eee
to
f8a7be5
Compare
f8a7be5
to
3fdf159
Compare
Persistence core module, at the moment 2 persistence flavour are implemented:
wanaku.persistence.mongodb
is set totrue