Idan Noti
12/08/2023, 2:50 PMMarvin
12/08/2023, 2:50 PMIdan Noti
12/08/2023, 3:10 PMIdan Noti
12/09/2023, 10:08 AMMarvin
12/09/2023, 10:08 AMpostgresql.conf
) or through SQL commands executed against the database.
Here's a general guide on how to disable JIT in PostgreSQL, which you may need to adapt based on your specific database version and setup:
sql
-- To disable JIT for an individual session:
SET jit = off;
-- To disable JIT for the entire PostgreSQL instance:
ALTER SYSTEM SET jit = off;
Please note that after altering system-level configurations, you often need to restart the database server for the changes to take effect.
If your Prefect deployment is facing issues due to JIT being enabled in the connected database, adjusting these settings in the database itself should be the course of action, rather than attempting to adjust JIT behavior from within Prefect. If there is a specific context within Prefect where JIT is causing an issue, please provide additional details, and I'll be happy to explore further solutions.