How can I add custom dictionary to aurora postgres

0

We need a working fulltext search on aurora postgres, so we need to create a custom dictionary. How can we install/upload the dictionary files to the server.

已提問 2 個月前檢視次數 183 次
1 個回答
1

Unlike a self-managed PostgreSQL server, you can't directly access the file system of an Aurora instance to place your dictionary files. However, there are workarounds:

  • Use AWS S3 and Data Migration Service (DMS): You can upload your dictionary files to an S3 bucket and then use AWS DMS or other AWS data migration tools to transfer data to your Aurora instance. This approach usually involves loading data into tables rather than directly manipulating server configurations.

  • Use pgAdmin or SQL Workbench: For some custom configurations, you might be able to use SQL-based tools like pgAdmin or SQL Workbench to execute SQL commands that modify the database's text search configuration. This method won't directly upload files but can be used to tweak settings or upload the contents of dictionary files to tables.

profile picture
專家
已回答 2 個月前
profile picture
專家
Artem
已審閱 1 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南