Ruud Welling

Results 34 comments of Ruud Welling

I am working on an implementation where tags are stored in a separate table, however I had some trouble getting all tests green again, also I have not yet investigated...

You are making good steps, however I think you probably do not want to store you events as byte arrays at all. Out of the box, we have no support...

Note, if you have implementations of these json based dao's then feel free to open a PR to include those in the project. I would be happy to help you...

Indeed, the current implementation serializes the complete PersistentRepr, which includes the manifest (and a bit more). The consequence of this is that `SELECT convert_from(message, 'UTF-8')::json FROM journal;` is not going...

You could be right, perhaps we can publish this in a separate project.

FYI, it seems that this is being implemented in https://github.com/d2aborg/akka-persistence-jdbc-jackson.

Good find. I have actually been thinking of changing how akka-persistence-jdbc loads/created the slick database. In the current setup, akka-persistence jdbc loads the slick config (which initializes a database pool)...

I agree that those are separate problems. The possibility to configure `jndiMaxConnections` seems to be a good solution, perhaps we could log a warning when this value is missing from...

Wouldn't it be possible to divide up the number of connections across the `AsyncExecutor`s . If the configured number of max connections is lower than the real size of the...

Your jndi data source probably has a connetion pool. You need to make sure that the `numThreads` setting has a higher value than the max number of connections in your...