0

I'm using r6g.4xlarge AWS machine to test tiger geocoder of my own and succeeded in setting up the Tiger Geocoder data of 2019 in a postgresql version 12. I've setup pgtune for better performance and made changes in the postgresql.conf file.

When I try to geocode some of the address I can able to get the solution with the latitude & longitude, But for some address I recieve error and postgresql service crashes and restarts again with an error SSL SYSCALL error: EOF detected in the pgAdmin.

I tried to find the postgres log files and I can see that the crash happened with a message signal 11 segmentation fault

My postgresql.conf has the following configuration from pgttune,

  • max_connections = 200
  • shared_buffers = 32GB
  • work_mem = 41943kB
  • maintenance_work_mem = 2GB
  • effective_io_concurrency = 2
  • max_worker_processes = 16
  • max_parallel_maintenance_workers = 4
  • max_parallel_workers_per_gather = 4
  • max_parallel_workers = 16
  • wal_buffers = 16MB
  • max_wal_size = 4GB
  • min_wal_size = 1GB
  • checkpoint_completion_target = 0.9
  • random_page_cost = 4
  • effective_cache_size = 96GB
  • default_statistics_target = 100
3
  • "Segmentation fault" indicates that either a) there is a PostgreSQL bug or a bug in an extension or b) you have data corruption or c) your hardware has problems. Collect a stack trace from the crash and add it to the question, that could help. Does the problem persist when you restart PostgreSQL? Commented Oct 12, 2021 at 6:19
  • I don't think there is a hardware or bug in extension. There can be data corruption, might be I'll reinstall the entire process and check whether the problem is still there Commented Oct 12, 2021 at 8:41
  • Sure, that would be interesting. Keep the original around if you want to get to the bottom of this. Commented Oct 12, 2021 at 9:29

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.