Martin Gruner

Results 109 comments of Martin Gruner

Please update your `.env` instead to the latest state from upstream. There is a new variable `POSTGRESQL_OPTIONS=?pool=50` which is required now. https://github.com/zammad/zammad-docker-compose/blob/master/.env

@matbgn @trstn70 can you provide some more details?

What's the effective pool size on the server? You can use the commandline from @JasperE84 to determine that: `docker compose run --rm zammad-scheduler rails r "p ActiveRecord::Base.connection_pool.stat"` Did you try...

Can you try increasing the pool value via ENV variable?

Good question. It will probably depend on your server's max connection limit. Looks like the default is 100, where a pool size of 50 might already be too high, if...

> @mgruner the release notes state that support for `POSTGRESQL_OPTIONS` was added - not that it was now required and has no reasonable default value. everyone seems to be setting...

Our first attempt to implement this failed spectacularly and was now discarded. Here are the main issues / lessons learned: - Performance: writing additional history entries on ticket creation has...

My suggestion would be to move the `FORMAT_DATE` and `FORMAT_DATETIME` keys out of the translation and into the locales. They are static properties of the language / locale itself, not...

But then you'd need to have this configurable on user level. That would be a follow-up feature request. For now moving it to the locale to freeze it sounds fine...

We solved it now with an additional rspec test that validates the format strings with a simple regex. A future optimization by moving the strings to the locale is probably...