-
Notifications
You must be signed in to change notification settings - Fork 0
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
bug: concurrent map read and map write #439
Comments
Thank you for reporting this issue. It looks like the issue you are experiencing is the Resource Exhausted Cause Concurrent Limit error. The Docker image you are using is running all of the Temporal Server's services in a single process. If the number of pending Activities exceeds the To resolve this issue, you should increase the For more information about customizing Docker images and the available You might want to increase Another alternative is to change the configuration of your Temporal Service so that each service runs as a separate Docker container. |
Thanks for reporting this issue!
The logs indicate that the Temporal Server is having trouble connecting to the PostgreSQL database. The most likely cause is a mismatch between the Temporal Server version and the PostgreSQL version.
To resolve this issue, try the following:
1. **Upgrade your PostgreSQL to a supported version.** Check the [Temporal Server release notes](https://github.com/temporalio/temporal/releases) for the latest supported PostgreSQL versions for your Temporal Server version.
2. **Update your database schema.** Use the `temporal-sql-tool` to update your PostgreSQL schema for the new version. For details, see the [Upgrade Server](https://docs.temporal.io/self-hosted-guide/upgrade-server#upgrade-server) section.
If you're still experiencing the issue, please provide the following information:
- The exact versions of the Temporal Server and PostgreSQL you are using.
- The output of the `temporal server start-dev --help` command.
- Any error messages you see in the Temporal Server logs.
This will help us troubleshoot the issue further. |
Thanks for reporting this issue!
It looks like the error you are seeing is caused by a known bug in Temporal v1.19.1 that was resolved in v1.19.2.
Please upgrade to the latest version to resolve the issue:
* [https://github.com/temporalio/temporal/releases/tag/v1.19.2](https://github.com/temporalio/temporal/releases/tag/v1.19.2) |
Expected Behavior
I ran into a weird error in a test run, just using the temporal auto-setup docker image version 1.19.1. I don't think I'm doing anything special. Just starting some basic containers.
Actual Behavior
The following logs show how temporal failed to start
https://gist.github.com/vikstrous2/7d016b5562903b723d93b6a403589620
Steps to Reproduce the Problem
Start temporal from this docker-compose file over and over again until this error triggers:
Specifications
The text was updated successfully, but these errors were encountered: