Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

247
Views
AWS Postgres setting pg_trgm.word_similarity_threshold

I'm trying to set the pg_trgm.word_similarity_threshold GUC parameter on an RDS postgres (13) instance.

I have tried setting it with a post-deployment SQL script:

SET pg_trgm.word_similarity_threshold = 0.5;
SELECT pg_reload_conf();

But this results in an error: Npgsql.PostgresException (0x80004005): 42501: permission denied for function pg_reload_conf

I have also tried setting it through terraform by passing it in the parameters list:

parameters = [
  {
    name         = "shared_preload_libraries"
    value        = "pg_cron,pg_stat_statements,pg_trgm"
    apply_method = "pending-reboot"
  },
  {
    name         = "pg_trgm.word_similarity_threshold"
    value        = "0.5"
    apply_method = "immediate" # I don't know if this is a static or dynamic variable
  }
]

Which results in the error: Error modifying DB Parameter Group: InvalidParameterValue: Could not find parameter with name: pg_trgm.word_similarity_threshold

Even though pg_trgm is a supported extension, this parameter does not seem to be available in the postgres parameter group. Is there any way to set this parameter in my AWS Postgres RDS?


  • Related DBA stackexchange issue
over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!