Как я могу увеличить производительность AgensGraph?
Мой проект вступил в фазу тестирования.
Но я страдал от нехватки производительности, когда большой набор данных превышал гигабайт.
Есть ли на AgensGraph включаемые параметры?
1 ответ
Во-первых, вы можете найти установленный каталог в сообщении 'initdb'.
$ initdb
The files belonging to this database system will be owned by user "agens".
This user must also own the server process.
The database cluster will be initialized with locale "ko_KR.UTF-8".
The default database encoding has accordingly been set to "UTF8".
initdb: could not find suitable text search configuration for locale "ko_KR.UTF-8"
The default text search configuration will be set to "simple".
Data page checksums are disabled.
creating directory /Users/agens/Downloads/pgsql/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok
WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.
Success. You can now start the database server using:
ag_ctl -D /Users/agens/Downloads/pgsql/data -l logfile start
Во-вторых, измените текущий каталог на каталог данных agens.
$ cd /Users/agens/Downloads/pgsql/data
Наконец, вы можете найти параметр размера буфера в файле конфигурации.
$ grep shared_buffer postgresql.conf
shared_buffers = 128MB # min 128kB
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
Параметр "shared_buffers" является ключевым фактором для эффективности поиска.
Рекомендуемый размер буфера - это минимум целых данных и половины системной памяти.