We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The query creating new table partitions in system_monitor_pg may crash with duplicate_table error in case multiple nodes are using the same DB:
system_monitor_pg
duplicate_table
system_monitor/src/system_monitor_pg.erl
Line 180 in 1978c2b
This was surprising to me, because I was expecting IF NOT EXISTS to avoid this error, but as I've learned on Stackoverflow:
IF NOT EXISTS
The IF NOT EXISTS is meant to deal idempotency, not concurrency.
🤷
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The query creating new table partitions in
system_monitor_pg
may crash withduplicate_table
error in case multiple nodes are using the same DB:system_monitor/src/system_monitor_pg.erl
Line 180 in 1978c2b
This was surprising to me, because I was expecting
IF NOT EXISTS
to avoid this error, but as I've learned on Stackoverflow:🤷
The text was updated successfully, but these errors were encountered: