D
D
Dauren S2021-12-02 17:47:10
PostgreSQL
Dauren S, 2021-12-02 17:47:10

Long read from Postgresql?

There is a table in Postgresql that does not have indexes, because there is a bulk write and indexes slow down the insert a lot. But without indexes very long reading. Is it a solution to enable elastic search to do searches through it? And will he do replication and store data at home? Or how will it create indexes? Tell me how you can solve the problem with reading data from Postgresql.

Perhaps Sphinx or mongo?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
ky0, 2021-12-02
@ky0

If indexes slow down writing a lot, you need to deal with the performance of the database. Give the numbers - the size of the data, the load, what kind of hardware and how the DBMS is configured.

S
Sergey Gornostaev, 2021-12-02
@sergey-gornostaev

Full text search engines do not build indexes faster.

T
ThunderCat, 2021-12-02
@ThunderCat

As an option - do not write to the database, but write to a file, then the sphinx will be the very thing.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question