├── README.md ├── assets ├── demo_page.png ├── demo_result.png ├── gptuner.png ├── gptuner.png:Zone.Identifier ├── gptuner_overview.png └── gptuner_result_postgresql.png ├── configs ├── mysql.ini └── postgres.ini ├── example_pool ├── autovacuum_freeze_max_age.txt ├── max_wal_size.txt ├── shared_buffers.txt ├── vacuum_cost_delay.txt └── wal_buffers.txt ├── gptuner-technical-report.pdf ├── knowledge_collection ├── mysql │ ├── knob_info │ │ ├── knob_update.json │ │ └── system_view.json │ ├── knowledge_sources │ │ ├── gpt │ │ │ ├── binlog_group_commit_sync_delay.txt │ │ │ ├── binlog_group_commit_sync_no_delay_count.txt │ │ │ ├── binlog_row_image.txt │ │ │ ├── div_precision_increment.txt │ │ │ ├── general_log.txt │ │ │ ├── host_cache_size.txt │ │ │ ├── innodb_adaptive_hash_index_parts.txt │ │ │ ├── innodb_adaptive_max_sleep_delay.txt │ │ │ ├── innodb_autoextend_increment.txt │ │ │ ├── innodb_buffer_pool_chunk_size.txt │ │ │ ├── innodb_buffer_pool_dump_pct.txt │ │ │ ├── innodb_buffer_pool_size.txt │ │ │ ├── innodb_change_buffer_max_size.txt │ │ │ ├── innodb_change_buffering.txt │ │ │ ├── innodb_compression_failure_threshold_pct.txt │ │ │ ├── innodb_compression_pad_pct_max.txt │ │ │ ├── innodb_concurrency_tickets.txt │ │ │ ├── innodb_dedicated_server.txt │ │ │ ├── innodb_disable_sort_file_cache.txt │ │ │ ├── innodb_doublewrite.txt │ │ │ ├── innodb_doublewrite_batch_size.txt │ │ │ ├── innodb_doublewrite_files.txt │ │ │ ├── innodb_doublewrite_pages.txt │ │ │ ├── innodb_flush_sync.txt │ │ │ ├── innodb_ft_total_cache_size.txt │ │ │ ├── innodb_log_file_size.txt │ │ │ ├── innodb_log_files_in_group.txt │ │ │ ├── innodb_log_spin_cpu_abs_lwm.txt │ │ │ ├── innodb_log_spin_cpu_pct_hwm.txt │ │ │ ├── innodb_log_wait_for_flush_spin_hwm.txt │ │ │ ├── innodb_log_write_ahead_size.txt │ │ │ ├── innodb_lru_scan_depth.txt │ │ │ ├── innodb_max_dirty_pages_pct.txt │ │ │ ├── innodb_max_dirty_pages_pct_lwm.txt │ │ │ ├── innodb_max_undo_log_size.txt │ │ │ ├── innodb_online_alter_log_max_size.txt │ │ │ ├── innodb_page_cleaners.txt │ │ │ ├── innodb_purge_batch_size.txt │ │ │ ├── innodb_purge_rseg_truncate_frequency.txt │ │ │ ├── innodb_random_read_ahead.txt │ │ │ ├── innodb_read_ahead_threshold.txt │ │ │ ├── innodb_spin_wait_delay.txt │ │ │ ├── innodb_stats_transient_sample_pages.txt │ │ │ ├── innodb_thread_concurrency.txt │ │ │ ├── join_buffer_size.txt │ │ │ ├── key_cache_block_size.txt │ │ │ ├── log_output.txt │ │ │ ├── max_heap_table_size.txt │ │ │ ├── max_relay_log_size.txt │ │ │ ├── max_user_connections.txt │ │ │ ├── net_write_timeout.txt │ │ │ ├── open_files_limit.txt │ │ │ ├── query_prealloc_size.txt │ │ │ ├── range_optimizer_max_mem_size.txt │ │ │ ├── relay_log_space_limit.txt │ │ │ ├── rpl_read_size.txt │ │ │ ├── rpl_stop_slave_timeout.txt │ │ │ ├── slave_allow_batching.txt │ │ │ ├── slave_parallel_type.txt │ │ │ ├── sort_buffer_size.txt │ │ │ ├── stored_program_definition_cache.txt │ │ │ ├── table_open_cache.txt │ │ │ ├── tablespace_definition_cache.txt │ │ │ ├── temptable_max_ram.txt │ │ │ ├── thread_cache_size.txt │ │ │ └── tmp_table_size.txt │ │ ├── manual │ │ │ └── .gitkeep │ │ └── web │ │ │ └── .gitkeep │ ├── structured_knowledge │ │ ├── max │ │ │ ├── binlog_group_commit_sync_delay.txt │ │ │ ├── binlog_group_commit_sync_no_delay_count.txt │ │ │ ├── binlog_row_image.txt │ │ │ ├── div_precision_increment.txt │ │ │ ├── general_log.txt │ │ │ ├── host_cache_size.txt │ │ │ ├── innodb_adaptive_hash_index_parts.txt │ │ │ ├── innodb_adaptive_max_sleep_delay.txt │ │ │ ├── innodb_autoextend_increment.txt │ │ │ ├── innodb_buffer_pool_chunk_size.txt │ │ │ ├── innodb_buffer_pool_dump_pct.txt │ │ │ ├── innodb_buffer_pool_size.txt │ │ │ ├── innodb_change_buffer_max_size.txt │ │ │ ├── innodb_change_buffering.txt │ │ │ ├── innodb_compression_failure_threshold_pct.txt │ │ │ ├── innodb_compression_pad_pct_max.txt │ │ │ ├── innodb_concurrency_tickets.txt │ │ │ ├── innodb_dedicated_server.txt │ │ │ ├── innodb_disable_sort_file_cache.txt │ │ │ ├── innodb_doublewrite.txt │ │ │ ├── innodb_doublewrite_batch_size.txt │ │ │ ├── innodb_doublewrite_files.txt │ │ │ ├── innodb_doublewrite_pages.txt │ │ │ ├── innodb_flush_sync.txt │ │ │ ├── innodb_ft_total_cache_size.txt │ │ │ ├── innodb_log_file_size.txt │ │ │ ├── innodb_log_files_in_group.txt │ │ │ ├── innodb_log_spin_cpu_abs_lwm.txt │ │ │ ├── innodb_log_spin_cpu_pct_hwm.txt │ │ │ ├── innodb_log_wait_for_flush_spin_hwm.txt │ │ │ ├── innodb_log_write_ahead_size.txt │ │ │ ├── innodb_lru_scan_depth.txt │ │ │ ├── innodb_max_dirty_pages_pct.txt │ │ │ ├── innodb_max_dirty_pages_pct_lwm.txt │ │ │ ├── innodb_max_undo_log_size.txt │ │ │ ├── innodb_online_alter_log_max_size.txt │ │ │ ├── innodb_page_cleaners.txt │ │ │ ├── innodb_purge_batch_size.txt │ │ │ ├── innodb_purge_rseg_truncate_frequency.txt │ │ │ ├── innodb_random_read_ahead.txt │ │ │ ├── innodb_read_ahead_threshold.txt │ │ │ ├── innodb_spin_wait_delay.txt │ │ │ ├── innodb_stats_transient_sample_pages.txt │ │ │ ├── innodb_thread_concurrency.txt │ │ │ ├── join_buffer_size.txt │ │ │ ├── key_cache_block_size.txt │ │ │ ├── log_output.txt │ │ │ ├── max_heap_table_size.txt │ │ │ ├── max_relay_log_size.txt │ │ │ ├── max_user_connections.txt │ │ │ ├── net_write_timeout.txt │ │ │ ├── open_files_limit.txt │ │ │ ├── query_prealloc_size.txt │ │ │ ├── range_optimizer_max_mem_size.txt │ │ │ ├── relay_log_space_limit.txt │ │ │ ├── rpl_read_size.txt │ │ │ ├── rpl_stop_slave_timeout.txt │ │ │ ├── slave_allow_batching.txt │ │ │ ├── slave_parallel_type.txt │ │ │ ├── sort_buffer_size.txt │ │ │ ├── stored_program_definition_cache.txt │ │ │ ├── table_open_cache.txt │ │ │ ├── tablespace_definition_cache.txt │ │ │ ├── temptable_max_ram.txt │ │ │ ├── thread_cache_size.txt │ │ │ └── tmp_table_size.txt │ │ ├── normal │ │ │ ├── binlog_group_commit_sync_delay.json │ │ │ ├── binlog_group_commit_sync_no_delay_count.json │ │ │ ├── binlog_row_image.json │ │ │ ├── div_precision_increment.json │ │ │ ├── general_log.json │ │ │ ├── host_cache_size.json │ │ │ ├── innodb_adaptive_hash_index_parts.json │ │ │ ├── innodb_adaptive_max_sleep_delay.json │ │ │ ├── innodb_autoextend_increment.json │ │ │ ├── innodb_buffer_pool_chunk_size.json │ │ │ ├── innodb_buffer_pool_dump_pct.json │ │ │ ├── innodb_buffer_pool_size.json │ │ │ ├── innodb_change_buffer_max_size.json │ │ │ ├── innodb_change_buffering.json │ │ │ ├── innodb_compression_failure_threshold_pct.json │ │ │ ├── innodb_compression_pad_pct_max.json │ │ │ ├── innodb_concurrency_tickets.json │ │ │ ├── innodb_dedicated_server.json │ │ │ ├── innodb_disable_sort_file_cache.json │ │ │ ├── innodb_doublewrite.json │ │ │ ├── innodb_doublewrite_batch_size.json │ │ │ ├── innodb_doublewrite_files.json │ │ │ ├── innodb_doublewrite_pages.json │ │ │ ├── innodb_flush_sync.json │ │ │ ├── innodb_ft_total_cache_size.json │ │ │ ├── innodb_log_file_size.json │ │ │ ├── innodb_log_files_in_group.json │ │ │ ├── innodb_log_spin_cpu_abs_lwm.json │ │ │ ├── innodb_log_spin_cpu_pct_hwm.json │ │ │ ├── innodb_log_wait_for_flush_spin_hwm.json │ │ │ ├── innodb_log_write_ahead_size.json │ │ │ ├── innodb_lru_scan_depth.json │ │ │ ├── innodb_max_dirty_pages_pct.json │ │ │ ├── innodb_max_dirty_pages_pct_lwm.json │ │ │ ├── innodb_max_undo_log_size.json │ │ │ ├── innodb_online_alter_log_max_size.json │ │ │ ├── innodb_page_cleaners.json │ │ │ ├── innodb_purge_batch_size.json │ │ │ ├── innodb_purge_rseg_truncate_frequency.json │ │ │ ├── innodb_random_read_ahead.json │ │ │ ├── innodb_read_ahead_threshold.json │ │ │ ├── innodb_spin_wait_delay.json │ │ │ ├── innodb_stats_transient_sample_pages.json │ │ │ ├── innodb_thread_concurrency.json │ │ │ ├── join_buffer_size.json │ │ │ ├── key_cache_block_size.json │ │ │ ├── log_output.json │ │ │ ├── max_heap_table_size.json │ │ │ ├── max_relay_log_size.json │ │ │ ├── max_user_connections.json │ │ │ ├── net_write_timeout.json │ │ │ ├── open_files_limit.json │ │ │ ├── query_prealloc_size.json │ │ │ ├── range_optimizer_max_mem_size.json │ │ │ ├── relay_log_space_limit.json │ │ │ ├── rpl_read_size.json │ │ │ ├── rpl_stop_slave_timeout.json │ │ │ ├── slave_allow_batching.json │ │ │ ├── slave_parallel_type.json │ │ │ ├── sort_buffer_size.json │ │ │ ├── stored_program_definition_cache.json │ │ │ ├── table_open_cache.json │ │ │ ├── tablespace_definition_cache.json │ │ │ ├── temptable_max_ram.json │ │ │ ├── thread_cache_size.json │ │ │ └── tmp_table_size.json │ │ └── special │ │ │ ├── binlog_group_commit_sync_delay.json │ │ │ ├── binlog_group_commit_sync_no_delay_count.json │ │ │ ├── binlog_row_image.json │ │ │ ├── div_precision_increment.json │ │ │ ├── general_log.json │ │ │ ├── host_cache_size.json │ │ │ ├── innodb_adaptive_hash_index_parts.json │ │ │ ├── innodb_adaptive_max_sleep_delay.json │ │ │ ├── innodb_autoextend_increment.json │ │ │ ├── innodb_buffer_pool_chunk_size.json │ │ │ ├── innodb_buffer_pool_dump_pct.json │ │ │ ├── innodb_buffer_pool_size.json │ │ │ ├── innodb_change_buffer_max_size.json │ │ │ ├── innodb_change_buffering.json │ │ │ ├── innodb_compression_failure_threshold_pct.json │ │ │ ├── innodb_compression_pad_pct_max.json │ │ │ ├── innodb_concurrency_tickets.json │ │ │ ├── innodb_dedicated_server.json │ │ │ ├── innodb_disable_sort_file_cache.json │ │ │ ├── innodb_doublewrite.json │ │ │ ├── innodb_doublewrite_batch_size.json │ │ │ ├── innodb_doublewrite_files.json │ │ │ ├── innodb_doublewrite_pages.json │ │ │ ├── innodb_flush_sync.json │ │ │ ├── innodb_ft_total_cache_size.json │ │ │ ├── innodb_log_file_size.json │ │ │ ├── innodb_log_files_in_group.json │ │ │ ├── innodb_log_spin_cpu_abs_lwm.json │ │ │ ├── innodb_log_spin_cpu_pct_hwm.json │ │ │ ├── innodb_log_wait_for_flush_spin_hwm.json │ │ │ ├── innodb_log_write_ahead_size.json │ │ │ ├── innodb_lru_scan_depth.json │ │ │ ├── innodb_max_dirty_pages_pct.json │ │ │ ├── innodb_max_dirty_pages_pct_lwm.json │ │ │ ├── innodb_max_undo_log_size.json │ │ │ ├── innodb_online_alter_log_max_size.json │ │ │ ├── innodb_page_cleaners.json │ │ │ ├── innodb_purge_batch_size.json │ │ │ ├── innodb_purge_rseg_truncate_frequency.json │ │ │ ├── innodb_random_read_ahead.json │ │ │ ├── innodb_read_ahead_threshold.json │ │ │ ├── innodb_spin_wait_delay.json │ │ │ ├── innodb_stats_transient_sample_pages.json │ │ │ ├── innodb_thread_concurrency.json │ │ │ ├── join_buffer_size.json │ │ │ ├── key_cache_block_size.json │ │ │ ├── log_output.json │ │ │ ├── max_heap_table_size.json │ │ │ ├── max_relay_log_size.json │ │ │ ├── max_user_connections.json │ │ │ ├── net_write_timeout.json │ │ │ ├── open_files_limit.json │ │ │ ├── query_prealloc_size.json │ │ │ ├── range_optimizer_max_mem_size.json │ │ │ ├── relay_log_space_limit.json │ │ │ ├── rpl_read_size.json │ │ │ ├── rpl_stop_slave_timeout.json │ │ │ ├── slave_allow_batching.json │ │ │ ├── slave_parallel_type.json │ │ │ ├── sort_buffer_size.json │ │ │ ├── stored_program_definition_cache.json │ │ │ ├── table_open_cache.json │ │ │ ├── tablespace_definition_cache.json │ │ │ ├── temptable_max_ram.json │ │ │ ├── thread_cache_size.json │ │ │ └── tmp_table_size.json │ ├── target_knobs.txt │ └── tuning_lake │ │ ├── binlog_group_commit_sync_delay.txt │ │ ├── binlog_group_commit_sync_no_delay_count.txt │ │ ├── binlog_row_image.txt │ │ ├── div_precision_increment.txt │ │ ├── general_log.txt │ │ ├── host_cache_size.txt │ │ ├── innodb_adaptive_hash_index_parts.txt │ │ ├── innodb_adaptive_max_sleep_delay.txt │ │ ├── innodb_autoextend_increment.txt │ │ ├── innodb_buffer_pool_chunk_size.txt │ │ ├── innodb_buffer_pool_dump_pct.txt │ │ ├── innodb_buffer_pool_size.txt │ │ ├── innodb_change_buffer_max_size.txt │ │ ├── innodb_change_buffering.txt │ │ ├── innodb_compression_failure_threshold_pct.txt │ │ ├── innodb_compression_pad_pct_max.txt │ │ ├── innodb_concurrency_tickets.txt │ │ ├── innodb_dedicated_server.txt │ │ ├── innodb_disable_sort_file_cache.txt │ │ ├── innodb_doublewrite.txt │ │ ├── innodb_doublewrite_batch_size.txt │ │ ├── innodb_doublewrite_files.txt │ │ ├── innodb_doublewrite_pages.txt │ │ ├── innodb_flush_sync.txt │ │ ├── innodb_ft_total_cache_size.txt │ │ ├── innodb_log_file_size.txt │ │ ├── innodb_log_files_in_group.txt │ │ ├── innodb_log_spin_cpu_abs_lwm.txt │ │ ├── innodb_log_spin_cpu_pct_hwm.txt │ │ ├── innodb_log_wait_for_flush_spin_hwm.txt │ │ ├── innodb_log_write_ahead_size.txt │ │ ├── innodb_lru_scan_depth.txt │ │ ├── innodb_max_dirty_pages_pct.txt │ │ ├── innodb_max_dirty_pages_pct_lwm.txt │ │ ├── innodb_max_undo_log_size.txt │ │ ├── innodb_online_alter_log_max_size.txt │ │ ├── innodb_page_cleaners.txt │ │ ├── innodb_purge_batch_size.txt │ │ ├── innodb_purge_rseg_truncate_frequency.txt │ │ ├── innodb_random_read_ahead.txt │ │ ├── innodb_read_ahead_threshold.txt │ │ ├── innodb_spin_wait_delay.txt │ │ ├── innodb_stats_transient_sample_pages.txt │ │ ├── innodb_thread_concurrency.txt │ │ ├── join_buffer_size.txt │ │ ├── key_cache_block_size.txt │ │ ├── log_output.txt │ │ ├── max_heap_table_size.txt │ │ ├── max_relay_log_size.txt │ │ ├── max_user_connections.txt │ │ ├── net_write_timeout.txt │ │ ├── open_files_limit.txt │ │ ├── query_prealloc_size.txt │ │ ├── range_optimizer_max_mem_size.txt │ │ ├── relay_log_space_limit.txt │ │ ├── rpl_read_size.txt │ │ ├── rpl_stop_slave_timeout.txt │ │ ├── slave_allow_batching.txt │ │ ├── slave_parallel_type.txt │ │ ├── sort_buffer_size.txt │ │ ├── stored_program_definition_cache.txt │ │ ├── table_open_cache.txt │ │ ├── tablespace_definition_cache.txt │ │ ├── temptable_max_ram.txt │ │ ├── thread_cache_size.txt │ │ └── tmp_table_size.txt └── postgres │ ├── candidate_knobs.txt │ ├── knob_info │ ├── knob_update.json │ ├── official_document.json │ └── system_view.json │ ├── knowledge_sources │ ├── gpt │ │ ├── archive_command.txt │ │ ├── archive_mode.txt │ │ ├── autovacuum.txt │ │ ├── autovacuum_analyze_scale_factor.txt │ │ ├── autovacuum_analyze_threshold.txt │ │ ├── autovacuum_freeze_max_age.txt │ │ ├── autovacuum_max_workers.txt │ │ ├── autovacuum_multixact_freeze_max_age.txt │ │ ├── autovacuum_naptime.txt │ │ ├── autovacuum_vacuum_cost_delay.txt │ │ ├── autovacuum_vacuum_cost_limit.txt │ │ ├── autovacuum_vacuum_insert_scale_factor.txt │ │ ├── autovacuum_vacuum_insert_threshold.txt │ │ ├── autovacuum_vacuum_scale_factor.txt │ │ ├── autovacuum_vacuum_threshold.txt │ │ ├── autovacuum_work_mem.txt │ │ ├── backend_flush_after.txt │ │ ├── bgwriter_delay.txt │ │ ├── bgwriter_flush_after.txt │ │ ├── bgwriter_lru_maxpages.txt │ │ ├── bgwriter_lru_multiplier.txt │ │ ├── checkpoint_completion_target.txt │ │ ├── checkpoint_flush_after.txt │ │ ├── checkpoint_timeout.txt │ │ ├── checkpoint_warning.txt │ │ ├── client_connection_check_interval.txt │ │ ├── cluster_name.txt │ │ ├── commit_delay.txt │ │ ├── commit_siblings.txt │ │ ├── cpu_index_tuple_cost.txt │ │ ├── cpu_operator_cost.txt │ │ ├── cpu_tuple_cost.txt │ │ ├── cursor_tuple_fraction.txt │ │ ├── data_sync_retry.txt │ │ ├── deadlock_timeout.txt │ │ ├── default_statistics_target.txt │ │ ├── default_transaction_deferrable.txt │ │ ├── effective_cache_size.txt │ │ ├── effective_io_concurrency.txt │ │ ├── enable_async_append.txt │ │ ├── enable_bitmapscan.txt │ │ ├── enable_hashagg.txt │ │ ├── enable_hashjoin.txt │ │ ├── enable_indexonlyscan.txt │ │ ├── enable_indexscan.txt │ │ ├── enable_material.txt │ │ ├── enable_mergejoin.txt │ │ ├── enable_nestloop.txt │ │ ├── enable_seqscan.txt │ │ ├── enable_sort.txt │ │ ├── enable_tidscan.txt │ │ ├── from_collapse_limit.txt │ │ ├── full_page_writes.txt │ │ ├── geqo.txt │ │ ├── geqo_effort.txt │ │ ├── geqo_generations.txt │ │ ├── geqo_pool_size.txt │ │ ├── geqo_seed.txt │ │ ├── geqo_selection_bias.txt │ │ ├── geqo_threshold.txt │ │ ├── gin_fuzzy_search_limit.txt │ │ ├── gin_pending_list_limit.txt │ │ ├── hash_mem_multiplier.txt │ │ ├── hot_standby_feedback.txt │ │ ├── huge_pages.txt │ │ ├── jit.txt │ │ ├── jit_above_cost.txt │ │ ├── jit_inline_above_cost.txt │ │ ├── jit_optimize_above_cost.txt │ │ ├── join_collapse_limit.txt │ │ ├── log_checkpoints.txt │ │ ├── log_connections.txt │ │ ├── log_destination.txt │ │ ├── log_disconnections.txt │ │ ├── log_line_prefix.txt │ │ ├── log_min_duration_statement.txt │ │ ├── log_rotation_size.txt │ │ ├── log_temp_files.txt │ │ ├── logging_collector.txt │ │ ├── logical_decoding_work_mem.txt │ │ ├── maintenance_io_concurrency.txt │ │ ├── maintenance_work_mem.txt │ │ ├── max_connections.txt │ │ ├── max_files_per_process.txt │ │ ├── max_locks_per_transaction.txt │ │ ├── max_logical_replication_workers.txt │ │ ├── max_parallel_maintenance_workers.txt │ │ ├── max_parallel_workers.txt │ │ ├── max_parallel_workers_per_gather.txt │ │ ├── max_pred_locks_per_page.txt │ │ ├── max_pred_locks_per_relation.txt │ │ ├── max_pred_locks_per_transaction.txt │ │ ├── max_prepared_transactions.txt │ │ ├── max_replication_slots.txt │ │ ├── max_slot_wal_keep_size.txt │ │ ├── max_stack_depth.txt │ │ ├── max_standby_archive_delay.txt │ │ ├── max_standby_streaming_delay.txt │ │ ├── max_sync_workers_per_subscription.txt │ │ ├── max_wal_senders.txt │ │ ├── max_wal_size.txt │ │ ├── max_worker_processes.txt │ │ ├── min_dynamic_shared_memory.txt │ │ ├── min_parallel_index_scan_size.txt │ │ ├── min_parallel_table_scan_size.txt │ │ ├── min_wal_size.txt │ │ ├── old_snapshot_threshold.txt │ │ ├── parallel_leader_participation.txt │ │ ├── parallel_setup_cost.txt │ │ ├── parallel_tuple_cost.txt │ │ ├── quote_all_identifiers.txt │ │ ├── random_page_cost.txt │ │ ├── seq_page_cost.txt │ │ ├── shared_buffers.txt │ │ ├── shared_preload_libraries.txt │ │ ├── temp_buffers.txt │ │ ├── temp_file_limit.txt │ │ ├── trace_notify.txt │ │ ├── trace_recovery_messages.txt │ │ ├── trace_sort.txt │ │ ├── track_activities.txt │ │ ├── track_activity_query_size.txt │ │ ├── track_commit_timestamp.txt │ │ ├── track_counts.txt │ │ ├── track_functions.txt │ │ ├── track_io_timing.txt │ │ ├── track_wal_io_timing.txt │ │ ├── vacuum_cost_delay.txt │ │ ├── vacuum_cost_limit.txt │ │ ├── vacuum_cost_page_dirty.txt │ │ ├── vacuum_cost_page_hit.txt │ │ ├── vacuum_cost_page_miss.txt │ │ ├── vacuum_defer_cleanup_age.txt │ │ ├── vacuum_failsafe_age.txt │ │ ├── vacuum_freeze_min_age.txt │ │ ├── vacuum_freeze_table_age.txt │ │ ├── vacuum_multixact_failsafe_age.txt │ │ ├── vacuum_multixact_freeze_min_age.txt │ │ ├── vacuum_multixact_freeze_table_age.txt │ │ ├── wal_block_size.txt │ │ ├── wal_buffers.txt │ │ ├── wal_compression.txt │ │ ├── wal_init_zero.txt │ │ ├── wal_keep_size.txt │ │ ├── wal_level.txt │ │ ├── wal_log_hints.txt │ │ ├── wal_receiver_timeout.txt │ │ ├── wal_sender_timeout.txt │ │ ├── wal_skip_threshold.txt │ │ ├── wal_sync_method.txt │ │ ├── wal_writer_delay.txt │ │ ├── wal_writer_flush_after.txt │ │ └── work_mem.txt │ ├── manual │ │ ├── archive_command.txt │ │ ├── archive_mode.txt │ │ ├── autovacuum.txt │ │ ├── autovacuum_analyze_scale_factor.txt │ │ ├── autovacuum_analyze_threshold.txt │ │ ├── autovacuum_freeze_max_age.txt │ │ ├── autovacuum_max_workers.txt │ │ ├── autovacuum_multixact_freeze_max_age.txt │ │ ├── autovacuum_naptime.txt │ │ ├── autovacuum_vacuum_cost_delay.txt │ │ ├── autovacuum_vacuum_cost_limit.txt │ │ ├── autovacuum_vacuum_insert_scale_factor.txt │ │ ├── autovacuum_vacuum_insert_threshold.txt │ │ ├── autovacuum_vacuum_scale_factor.txt │ │ ├── autovacuum_vacuum_threshold.txt │ │ ├── autovacuum_work_mem.txt │ │ ├── backend_flush_after.txt │ │ ├── bgwriter_delay.txt │ │ ├── bgwriter_flush_after.txt │ │ ├── bgwriter_lru_maxpages.txt │ │ ├── bgwriter_lru_multiplier.txt │ │ ├── checkpoint_completion_target.txt │ │ ├── checkpoint_flush_after.txt │ │ ├── checkpoint_timeout.txt │ │ ├── checkpoint_warning.txt │ │ ├── cluster_name.txt │ │ ├── commit_delay.txt │ │ ├── commit_siblings.txt │ │ ├── cpu_index_tuple_cost.txt │ │ ├── cpu_operator_cost.txt │ │ ├── cpu_tuple_cost.txt │ │ ├── cursor_tuple_fraction.txt │ │ ├── data_sync_retry.txt │ │ ├── deadlock_timeout.txt │ │ ├── default_statistics_target.txt │ │ ├── default_transaction_deferrable.txt │ │ ├── effective_cache_size.txt │ │ ├── effective_io_concurrency.txt │ │ ├── enable_bitmapscan.txt │ │ ├── enable_hashagg.txt │ │ ├── enable_hashjoin.txt │ │ ├── enable_indexonlyscan.txt │ │ ├── enable_indexscan.txt │ │ ├── enable_material.txt │ │ ├── enable_mergejoin.txt │ │ ├── enable_nestloop.txt │ │ ├── enable_seqscan.txt │ │ ├── enable_sort.txt │ │ ├── enable_tidscan.txt │ │ ├── from_collapse_limit.txt │ │ ├── full_page_writes.txt │ │ ├── geqo.txt │ │ ├── geqo_effort.txt │ │ ├── geqo_generations.txt │ │ ├── geqo_pool_size.txt │ │ ├── geqo_seed.txt │ │ ├── geqo_selection_bias.txt │ │ ├── geqo_threshold.txt │ │ ├── gin_fuzzy_search_limit.txt │ │ ├── gin_pending_list_limit.txt │ │ ├── hash_mem_multiplier.txt │ │ ├── hot_standby_feedback.txt │ │ ├── huge_pages.txt │ │ ├── jit.txt │ │ ├── jit_above_cost.txt │ │ ├── jit_inline_above_cost.txt │ │ ├── jit_optimize_above_cost.txt │ │ ├── join_collapse_limit.txt │ │ ├── log_checkpoints.txt │ │ ├── log_connections.txt │ │ ├── log_destination.txt │ │ ├── log_disconnections.txt │ │ ├── log_line_prefix.txt │ │ ├── log_min_duration_statement.txt │ │ ├── log_rotation_size.txt │ │ ├── log_temp_files.txt │ │ ├── logging_collector.txt │ │ ├── logical_decoding_work_mem.txt │ │ ├── maintenance_io_concurrency.txt │ │ ├── maintenance_work_mem.txt │ │ ├── max_connections.txt │ │ ├── max_files_per_process.txt │ │ ├── max_locks_per_transaction.txt │ │ ├── max_logical_replication_workers.txt │ │ ├── max_parallel_maintenance_workers.txt │ │ ├── max_parallel_workers.txt │ │ ├── max_parallel_workers_per_gather.txt │ │ ├── max_pred_locks_per_page.txt │ │ ├── max_pred_locks_per_relation.txt │ │ ├── max_pred_locks_per_transaction.txt │ │ ├── max_prepared_transactions.txt │ │ ├── max_replication_slots.txt │ │ ├── max_slot_wal_keep_size.txt │ │ ├── max_stack_depth.txt │ │ ├── max_standby_archive_delay.txt │ │ ├── max_standby_streaming_delay.txt │ │ ├── max_sync_workers_per_subscription.txt │ │ ├── max_wal_senders.txt │ │ ├── max_wal_size.txt │ │ ├── max_worker_processes.txt │ │ ├── min_parallel_index_scan_size.txt │ │ ├── min_parallel_table_scan_size.txt │ │ ├── min_wal_size.txt │ │ ├── old_snapshot_threshold.txt │ │ ├── parallel_leader_participation.txt │ │ ├── parallel_setup_cost.txt │ │ ├── parallel_tuple_cost.txt │ │ ├── quote_all_identifiers.txt │ │ ├── random_page_cost.txt │ │ ├── seq_page_cost.txt │ │ ├── shared_buffers.txt │ │ ├── shared_preload_libraries.txt │ │ ├── temp_buffers.txt │ │ ├── temp_file_limit.txt │ │ ├── trace_notify.txt │ │ ├── trace_recovery_messages.txt │ │ ├── trace_sort.txt │ │ ├── track_activities.txt │ │ ├── track_activity_query_size.txt │ │ ├── track_commit_timestamp.txt │ │ ├── track_counts.txt │ │ ├── track_functions.txt │ │ ├── track_io_timing.txt │ │ ├── vacuum_cost_delay.txt │ │ ├── vacuum_cost_limit.txt │ │ ├── vacuum_cost_page_dirty.txt │ │ ├── vacuum_cost_page_hit.txt │ │ ├── vacuum_cost_page_miss.txt │ │ ├── vacuum_defer_cleanup_age.txt │ │ ├── vacuum_freeze_min_age.txt │ │ ├── vacuum_freeze_table_age.txt │ │ ├── vacuum_multixact_freeze_min_age.txt │ │ ├── vacuum_multixact_freeze_table_age.txt │ │ ├── wal_buffers.txt │ │ ├── wal_compression.txt │ │ ├── wal_init_zero.txt │ │ ├── wal_keep_size.txt │ │ ├── wal_level.txt │ │ ├── wal_log_hints.txt │ │ ├── wal_receiver_timeout.txt │ │ ├── wal_sender_timeout.txt │ │ ├── wal_skip_threshold.txt │ │ ├── wal_sync_method.txt │ │ ├── wal_writer_delay.txt │ │ ├── wal_writer_flush_after.txt │ │ └── work_mem.txt │ └── web │ │ ├── archive_command.txt │ │ ├── archive_mode.txt │ │ ├── autovacuum_analyze_scale_factor.txt │ │ ├── autovacuum_freeze_max_age.txt │ │ ├── autovacuum_max_workers.txt │ │ ├── autovacuum_vacuum_scale_factor.txt │ │ ├── bgwriter_delay.txt │ │ ├── bgwriter_lru_maxpages.txt │ │ ├── checkpoint_completion_target.txt │ │ ├── checkpoint_timeout.txt │ │ ├── checkpoint_warning.txt │ │ ├── cluster_name.txt │ │ ├── default_statistics_target.txt │ │ ├── effective_cache_size.txt │ │ ├── hot_standby_feedback.txt │ │ ├── huge_pages.txt │ │ ├── jit.txt │ │ ├── log_checkpoints.txt │ │ ├── log_connections.txt │ │ ├── log_destination.txt │ │ ├── log_disconnections.txt │ │ ├── log_line_prefix.txt │ │ ├── log_min_duration_statement.txt │ │ ├── log_rotation_size.txt │ │ ├── log_temp_files.txt │ │ ├── logging_collector.txt │ │ ├── maintenance_work_mem.txt │ │ ├── max_connections.txt │ │ ├── max_parallel_workers.txt │ │ ├── max_parallel_workers_per_gather.txt │ │ ├── max_replication_slots.txt │ │ ├── max_standby_streaming_delay.txt │ │ ├── max_wal_senders.txt │ │ ├── max_wal_size.txt │ │ ├── max_worker_processes.txt │ │ ├── min_wal_size.txt │ │ ├── random_page_cost.txt │ │ ├── shared_buffers.txt │ │ ├── shared_preload_libraries.txt │ │ ├── track_activity_query_size.txt │ │ ├── vacuum_cost_delay.txt │ │ ├── vacuum_cost_limit.txt │ │ └── work_mem.txt │ ├── structured_knowledge │ ├── normal │ │ ├── archive_command.json │ │ ├── archive_mode.json │ │ ├── autovacuum.json │ │ ├── autovacuum_analyze_scale_factor.json │ │ ├── autovacuum_analyze_threshold.json │ │ ├── autovacuum_freeze_max_age.json │ │ ├── autovacuum_max_workers.json │ │ ├── autovacuum_multixact_freeze_max_age.json │ │ ├── autovacuum_naptime.json │ │ ├── autovacuum_vacuum_cost_delay.json │ │ ├── autovacuum_vacuum_cost_limit.json │ │ ├── autovacuum_vacuum_insert_scale_factor.json │ │ ├── autovacuum_vacuum_insert_threshold.json │ │ ├── autovacuum_vacuum_scale_factor.json │ │ ├── autovacuum_vacuum_threshold.json │ │ ├── autovacuum_work_mem.json │ │ ├── backend_flush_after.json │ │ ├── bgwriter_delay.json │ │ ├── bgwriter_flush_after.json │ │ ├── bgwriter_lru_maxpages.json │ │ ├── bgwriter_lru_multiplier.json │ │ ├── checkpoint_completion_target.json │ │ ├── checkpoint_flush_after.json │ │ ├── checkpoint_timeout.json │ │ ├── checkpoint_warning.json │ │ ├── client_connection_check_interval.json │ │ ├── cluster_name.json │ │ ├── commit_delay.json │ │ ├── commit_siblings.json │ │ ├── cpu_index_tuple_cost.json │ │ ├── cpu_operator_cost.json │ │ ├── cpu_tuple_cost.json │ │ ├── cursor_tuple_fraction.json │ │ ├── data_sync_retry.json │ │ ├── deadlock_timeout.json │ │ ├── default_statistics_target.json │ │ ├── default_transaction_deferrable.json │ │ ├── effective_cache_size.json │ │ ├── effective_io_concurrency.json │ │ ├── enable_async_append.json │ │ ├── enable_bitmapscan.json │ │ ├── enable_hashagg.json │ │ ├── enable_hashjoin.json │ │ ├── enable_indexonlyscan.json │ │ ├── enable_indexscan.json │ │ ├── enable_material.json │ │ ├── enable_mergejoin.json │ │ ├── enable_nestloop.json │ │ ├── enable_seqscan.json │ │ ├── enable_sort.json │ │ ├── enable_tidscan.json │ │ ├── from_collapse_limit.json │ │ ├── full_page_writes.json │ │ ├── geqo.json │ │ ├── geqo_effort.json │ │ ├── geqo_generations.json │ │ ├── geqo_pool_size.json │ │ ├── geqo_seed.json │ │ ├── geqo_selection_bias.json │ │ ├── geqo_threshold.json │ │ ├── gin_fuzzy_search_limit.json │ │ ├── gin_pending_list_limit.json │ │ ├── hash_mem_multiplier.json │ │ ├── hot_standby_feedback.json │ │ ├── huge_pages.json │ │ ├── jit.json │ │ ├── jit_above_cost.json │ │ ├── jit_inline_above_cost.json │ │ ├── jit_optimize_above_cost.json │ │ ├── join_collapse_limit.json │ │ ├── log_checkpoints.json │ │ ├── log_connections.json │ │ ├── log_destination.json │ │ ├── log_disconnections.json │ │ ├── log_line_prefix.json │ │ ├── log_min_duration_statement.json │ │ ├── log_rotation_size.json │ │ ├── log_temp_files.json │ │ ├── logging_collector.json │ │ ├── logical_decoding_work_mem.json │ │ ├── maintenance_io_concurrency.json │ │ ├── maintenance_work_mem.json │ │ ├── max_connections.json │ │ ├── max_files_per_process.json │ │ ├── max_locks_per_transaction.json │ │ ├── max_logical_replication_workers.json │ │ ├── max_parallel_maintenance_workers.json │ │ ├── max_parallel_workers.json │ │ ├── max_parallel_workers_per_gather.json │ │ ├── max_pred_locks_per_page.json │ │ ├── max_pred_locks_per_relation.json │ │ ├── max_pred_locks_per_transaction.json │ │ ├── max_prepared_transactions.json │ │ ├── max_replication_slots.json │ │ ├── max_slot_wal_keep_size.json │ │ ├── max_stack_depth.json │ │ ├── max_standby_archive_delay.json │ │ ├── max_standby_streaming_delay.json │ │ ├── max_sync_workers_per_subscription.json │ │ ├── max_wal_senders.json │ │ ├── max_wal_size.json │ │ ├── max_worker_processes.json │ │ ├── min_dynamic_shared_memory.json │ │ ├── min_parallel_index_scan_size.json │ │ ├── min_parallel_table_scan_size.json │ │ ├── min_wal_size.json │ │ ├── old_snapshot_threshold.json │ │ ├── parallel_leader_participation.json │ │ ├── parallel_setup_cost.json │ │ ├── parallel_tuple_cost.json │ │ ├── quote_all_identifiers.json │ │ ├── random_page_cost.json │ │ ├── seq_page_cost.json │ │ ├── shared_buffers.json │ │ ├── shared_preload_libraries.json │ │ ├── temp_buffers.json │ │ ├── temp_file_limit.json │ │ ├── trace_notify.json │ │ ├── trace_recovery_messages.json │ │ ├── trace_sort.json │ │ ├── track_activities.json │ │ ├── track_activity_query_size.json │ │ ├── track_commit_timestamp.json │ │ ├── track_counts.json │ │ ├── track_functions.json │ │ ├── track_io_timing.json │ │ ├── track_wal_io_timing.json │ │ ├── vacuum_cost_delay.json │ │ ├── vacuum_cost_limit.json │ │ ├── vacuum_cost_page_dirty.json │ │ ├── vacuum_cost_page_hit.json │ │ ├── vacuum_cost_page_miss.json │ │ ├── vacuum_defer_cleanup_age.json │ │ ├── vacuum_failsafe_age.json │ │ ├── vacuum_freeze_min_age.json │ │ ├── vacuum_freeze_table_age.json │ │ ├── vacuum_multixact_failsafe_age.json │ │ ├── vacuum_multixact_freeze_min_age.json │ │ ├── vacuum_multixact_freeze_table_age.json │ │ ├── wal_block_size.json │ │ ├── wal_buffers.json │ │ ├── wal_compression.json │ │ ├── wal_init_zero.json │ │ ├── wal_keep_size.json │ │ ├── wal_level.json │ │ ├── wal_log_hints.json │ │ ├── wal_receiver_timeout.json │ │ ├── wal_sender_timeout.json │ │ ├── wal_skip_threshold.json │ │ ├── wal_sync_method.json │ │ ├── wal_writer_delay.json │ │ ├── wal_writer_flush_after.json │ │ └── work_mem.json │ └── special │ │ ├── archive_command.json │ │ ├── archive_mode.json │ │ ├── autovacuum.json │ │ ├── autovacuum_analyze_scale_factor.json │ │ ├── autovacuum_analyze_threshold.json │ │ ├── autovacuum_freeze_max_age.json │ │ ├── autovacuum_max_workers.json │ │ ├── autovacuum_multixact_freeze_max_age.json │ │ ├── autovacuum_naptime.json │ │ ├── autovacuum_vacuum_cost_delay.json │ │ ├── autovacuum_vacuum_cost_limit.json │ │ ├── autovacuum_vacuum_insert_scale_factor.json │ │ ├── autovacuum_vacuum_insert_threshold.json │ │ ├── autovacuum_vacuum_scale_factor.json │ │ ├── autovacuum_vacuum_threshold.json │ │ ├── autovacuum_work_mem.json │ │ ├── backend_flush_after.json │ │ ├── bgwriter_delay.json │ │ ├── bgwriter_flush_after.json │ │ ├── bgwriter_lru_maxpages.json │ │ ├── bgwriter_lru_multiplier.json │ │ ├── checkpoint_completion_target.json │ │ ├── checkpoint_flush_after.json │ │ ├── checkpoint_timeout.json │ │ ├── checkpoint_warning.json │ │ ├── client_connection_check_interval.json │ │ ├── cluster_name.json │ │ ├── commit_delay.json │ │ ├── commit_siblings.json │ │ ├── cpu_index_tuple_cost.json │ │ ├── cpu_operator_cost.json │ │ ├── cpu_tuple_cost.json │ │ ├── cursor_tuple_fraction.json │ │ ├── data_sync_retry.json │ │ ├── deadlock_timeout.json │ │ ├── default_statistics_target.json │ │ ├── default_transaction_deferrable.json │ │ ├── effective_cache_size.json │ │ ├── effective_io_concurrency.json │ │ ├── enable_async_append.json │ │ ├── enable_bitmapscan.json │ │ ├── enable_hashagg.json │ │ ├── enable_hashjoin.json │ │ ├── enable_indexonlyscan.json │ │ ├── enable_indexscan.json │ │ ├── enable_material.json │ │ ├── enable_mergejoin.json │ │ ├── enable_nestloop.json │ │ ├── enable_seqscan.json │ │ ├── enable_sort.json │ │ ├── enable_tidscan.json │ │ ├── from_collapse_limit.json │ │ ├── full_page_writes.json │ │ ├── geqo.json │ │ ├── geqo_effort.json │ │ ├── geqo_generations.json │ │ ├── geqo_pool_size.json │ │ ├── geqo_seed.json │ │ ├── geqo_selection_bias.json │ │ ├── geqo_threshold.json │ │ ├── gin_fuzzy_search_limit.json │ │ ├── gin_pending_list_limit.json │ │ ├── hash_mem_multiplier.json │ │ ├── hot_standby_feedback.json │ │ ├── huge_pages.json │ │ ├── jit.json │ │ ├── jit_above_cost.json │ │ ├── jit_inline_above_cost.json │ │ ├── jit_optimize_above_cost.json │ │ ├── join_collapse_limit.json │ │ ├── log_checkpoints.json │ │ ├── log_connections.json │ │ ├── log_destination.json │ │ ├── log_disconnections.json │ │ ├── log_line_prefix.json │ │ ├── log_min_duration_statement.json │ │ ├── log_rotation_size.json │ │ ├── log_temp_files.json │ │ ├── logging_collector.json │ │ ├── logical_decoding_work_mem.json │ │ ├── maintenance_io_concurrency.json │ │ ├── maintenance_work_mem.json │ │ ├── max_connections.json │ │ ├── max_files_per_process.json │ │ ├── max_locks_per_transaction.json │ │ ├── max_logical_replication_workers.json │ │ ├── max_parallel_maintenance_workers.json │ │ ├── max_parallel_workers.json │ │ ├── max_parallel_workers_per_gather.json │ │ ├── max_pred_locks_per_page.json │ │ ├── max_pred_locks_per_relation.json │ │ ├── max_pred_locks_per_transaction.json │ │ ├── max_prepared_transactions.json │ │ ├── max_replication_slots.json │ │ ├── max_slot_wal_keep_size.json │ │ ├── max_stack_depth.json │ │ ├── max_standby_archive_delay.json │ │ ├── max_standby_streaming_delay.json │ │ ├── max_sync_workers_per_subscription.json │ │ ├── max_wal_senders.json │ │ ├── max_wal_size.json │ │ ├── max_worker_processes.json │ │ ├── min_dynamic_shared_memory.json │ │ ├── min_parallel_index_scan_size.json │ │ ├── min_parallel_table_scan_size.json │ │ ├── min_wal_size.json │ │ ├── old_snapshot_threshold.json │ │ ├── parallel_leader_participation.json │ │ ├── parallel_setup_cost.json │ │ ├── parallel_tuple_cost.json │ │ ├── quote_all_identifiers.json │ │ ├── random_page_cost.json │ │ ├── seq_page_cost.json │ │ ├── shared_buffers.json │ │ ├── shared_preload_libraries.json │ │ ├── temp_buffers.json │ │ ├── temp_file_limit.json │ │ ├── trace_notify.json │ │ ├── trace_recovery_messages.json │ │ ├── trace_sort.json │ │ ├── track_activities.json │ │ ├── track_activity_query_size.json │ │ ├── track_commit_timestamp.json │ │ ├── track_counts.json │ │ ├── track_functions.json │ │ ├── track_io_timing.json │ │ ├── track_wal_io_timing.json │ │ ├── vacuum_cost_delay.json │ │ ├── vacuum_cost_limit.json │ │ ├── vacuum_cost_page_dirty.json │ │ ├── vacuum_cost_page_hit.json │ │ ├── vacuum_cost_page_miss.json │ │ ├── vacuum_defer_cleanup_age.json │ │ ├── vacuum_failsafe_age.json │ │ ├── vacuum_freeze_min_age.json │ │ ├── vacuum_freeze_table_age.json │ │ ├── vacuum_multixact_failsafe_age.json │ │ ├── vacuum_multixact_freeze_min_age.json │ │ ├── vacuum_multixact_freeze_table_age.json │ │ ├── wal_block_size.json │ │ ├── wal_buffers.json │ │ ├── wal_compression.json │ │ ├── wal_init_zero.json │ │ ├── wal_keep_size.json │ │ ├── wal_level.json │ │ ├── wal_log_hints.json │ │ ├── wal_receiver_timeout.json │ │ ├── wal_sender_timeout.json │ │ ├── wal_skip_threshold.json │ │ ├── wal_sync_method.json │ │ ├── wal_writer_delay.json │ │ ├── wal_writer_flush_after.json │ │ └── work_mem.json │ ├── target_knobs.txt │ └── tuning_lake │ ├── archive_command.txt │ ├── archive_mode.txt │ ├── autovacuum.txt │ ├── autovacuum_analyze_scale_factor.txt │ ├── autovacuum_analyze_threshold.txt │ ├── autovacuum_freeze_max_age.txt │ ├── autovacuum_max_workers.txt │ ├── autovacuum_multixact_freeze_max_age.txt │ ├── autovacuum_naptime.txt │ ├── autovacuum_vacuum_cost_delay.txt │ ├── autovacuum_vacuum_cost_limit.txt │ ├── autovacuum_vacuum_insert_scale_factor.txt │ ├── autovacuum_vacuum_insert_threshold.txt │ ├── autovacuum_vacuum_scale_factor.txt │ ├── autovacuum_vacuum_threshold.txt │ ├── autovacuum_work_mem.txt │ ├── backend_flush_after.txt │ ├── bgwriter_delay.txt │ ├── bgwriter_flush_after.txt │ ├── bgwriter_lru_maxpages.txt │ ├── bgwriter_lru_multiplier.txt │ ├── checkpoint_completion_target.txt │ ├── checkpoint_flush_after.txt │ ├── checkpoint_timeout.txt │ ├── checkpoint_warning.txt │ ├── client_connection_check_interval.txt │ ├── cluster_name.txt │ ├── commit_delay.txt │ ├── commit_siblings.txt │ ├── cpu_index_tuple_cost.txt │ ├── cpu_operator_cost.txt │ ├── cpu_tuple_cost.txt │ ├── cursor_tuple_fraction.txt │ ├── data_sync_retry.txt │ ├── deadlock_timeout.txt │ ├── default_statistics_target.txt │ ├── default_transaction_deferrable.txt │ ├── effective_cache_size.txt │ ├── effective_io_concurrency.txt │ ├── enable_async_append.txt │ ├── enable_bitmapscan.txt │ ├── enable_hashagg.txt │ ├── enable_hashjoin.txt │ ├── enable_indexonlyscan.txt │ ├── enable_indexscan.txt │ ├── enable_material.txt │ ├── enable_mergejoin.txt │ ├── enable_nestloop.txt │ ├── enable_seqscan.txt │ ├── enable_sort.txt │ ├── enable_tidscan.txt │ ├── from_collapse_limit.txt │ ├── full_page_writes.txt │ ├── geqo.txt │ ├── geqo_effort.txt │ ├── geqo_generations.txt │ ├── geqo_pool_size.txt │ ├── geqo_seed.txt │ ├── geqo_selection_bias.txt │ ├── geqo_threshold.txt │ ├── gin_fuzzy_search_limit.txt │ ├── gin_pending_list_limit.txt │ ├── hash_mem_multiplier.txt │ ├── hot_standby_feedback.txt │ ├── huge_pages.txt │ ├── jit.txt │ ├── jit_above_cost.txt │ ├── jit_inline_above_cost.txt │ ├── jit_optimize_above_cost.txt │ ├── join_collapse_limit.txt │ ├── log_checkpoints.txt │ ├── log_connections.txt │ ├── log_destination.txt │ ├── log_disconnections.txt │ ├── log_line_prefix.txt │ ├── log_min_duration_statement.txt │ ├── log_rotation_size.txt │ ├── log_temp_files.txt │ ├── logging_collector.txt │ ├── logical_decoding_work_mem.txt │ ├── maintenance_io_concurrency.txt │ ├── maintenance_work_mem.txt │ ├── max_connections.txt │ ├── max_files_per_process.txt │ ├── max_locks_per_transaction.txt │ ├── max_logical_replication_workers.txt │ ├── max_parallel_maintenance_workers.txt │ ├── max_parallel_workers.txt │ ├── max_parallel_workers_per_gather.txt │ ├── max_pred_locks_per_page.txt │ ├── max_pred_locks_per_relation.txt │ ├── max_pred_locks_per_transaction.txt │ ├── max_prepared_transactions.txt │ ├── max_replication_slots.txt │ ├── max_slot_wal_keep_size.txt │ ├── max_stack_depth.txt │ ├── max_standby_archive_delay.txt │ ├── max_standby_streaming_delay.txt │ ├── max_sync_workers_per_subscription.txt │ ├── max_wal_senders.txt │ ├── max_wal_size.txt │ ├── max_worker_processes.txt │ ├── min_dynamic_shared_memory.txt │ ├── min_parallel_index_scan_size.txt │ ├── min_parallel_table_scan_size.txt │ ├── min_wal_size.txt │ ├── old_snapshot_threshold.txt │ ├── parallel_leader_participation.txt │ ├── parallel_setup_cost.txt │ ├── parallel_tuple_cost.txt │ ├── quote_all_identifiers.txt │ ├── random_page_cost.txt │ ├── seq_page_cost.txt │ ├── shared_buffers.txt │ ├── shared_preload_libraries.txt │ ├── temp_buffers.txt │ ├── temp_file_limit.txt │ ├── trace_notify.txt │ ├── trace_recovery_messages.txt │ ├── trace_sort.txt │ ├── track_activities.txt │ ├── track_activity_query_size.txt │ ├── track_commit_timestamp.txt │ ├── track_counts.txt │ ├── track_functions.txt │ ├── track_io_timing.txt │ ├── track_wal_io_timing.txt │ ├── vacuum_cost_delay.txt │ ├── vacuum_cost_limit.txt │ ├── vacuum_cost_page_dirty.txt │ ├── vacuum_cost_page_hit.txt │ ├── vacuum_cost_page_miss.txt │ ├── vacuum_defer_cleanup_age.txt │ ├── vacuum_failsafe_age.txt │ ├── vacuum_freeze_min_age.txt │ ├── vacuum_freeze_table_age.txt │ ├── vacuum_multixact_failsafe_age.txt │ ├── vacuum_multixact_freeze_min_age.txt │ ├── vacuum_multixact_freeze_table_age.txt │ ├── wal_block_size.txt │ ├── wal_buffers.txt │ ├── wal_compression.txt │ ├── wal_init_zero.txt │ ├── wal_keep_size.txt │ ├── wal_level.txt │ ├── wal_log_hints.txt │ ├── wal_receiver_timeout.txt │ ├── wal_sender_timeout.txt │ ├── wal_skip_threshold.txt │ ├── wal_sync_method.txt │ ├── wal_writer_delay.txt │ ├── wal_writer_flush_after.txt │ └── work_mem.txt ├── requirements.txt ├── scripts ├── build_benchmark.sh ├── install_benchbase.sh ├── recover_mysql.sh └── recover_postgres.sh ├── sql └── tpch │ ├── Q1.sql │ ├── Q10.sql │ ├── Q11.sql │ ├── Q12.sql │ ├── Q13.sql │ ├── Q14.sql │ ├── Q15.sql │ ├── Q16.sql │ ├── Q17.sql │ ├── Q18.sql │ ├── Q19.sql │ ├── Q2.sql │ ├── Q20.sql │ ├── Q21.sql │ ├── Q22.sql │ ├── Q3.sql │ ├── Q4.sql │ ├── Q5.sql │ ├── Q6.sql │ ├── Q7.sql │ ├── Q8.sql │ └── Q9.sql └── src ├── config_recommender ├── coarse_stage.py ├── fine_stage.py └── workload_runner.py ├── dbms ├── dbms_template.py ├── mysql.py └── postgres.py ├── demo ├── entrypage.py ├── structured_knowlegde_mysql.json ├── structured_knowlegde_postgres.json ├── suggestion_mysql.json ├── suggestion_postgres.json └── util │ ├── coarse_space.py │ ├── coarse_stage.py │ ├── compare_coarse.py │ ├── compare_fine.py │ ├── compare_space.py │ ├── default_space.py │ ├── fine_space.py │ ├── fine_stage.py │ ├── get_knobs.py │ ├── get_structured.ipynb │ ├── handle_res_page.py │ ├── knob_selection.py │ └── knowledge_transformation.py ├── knowledge_handler ├── __pycache__ │ ├── gpt.cpython-310.pyc │ ├── knowledge_preparation.cpython-310.pyc │ ├── knowledge_transformation.cpython-310.pyc │ ├── knowledge_update.cpython-310.pyc │ └── utils.cpython-310.pyc ├── gpt.py ├── knowledge_preparation.py ├── knowledge_transformation.py ├── knowledge_update.py └── utils.py ├── run_gptuner.py └── space_optimizer ├── coarse_space.py ├── default_space.py ├── fine_space.py └── knob_selection.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/demo_page.png -------------------------------------------------------------------------------- /assets/demo_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/demo_result.png -------------------------------------------------------------------------------- /assets/gptuner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/gptuner.png -------------------------------------------------------------------------------- /assets/gptuner.png:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/gptuner.png:Zone.Identifier -------------------------------------------------------------------------------- /assets/gptuner_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/gptuner_overview.png -------------------------------------------------------------------------------- /assets/gptuner_result_postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/assets/gptuner_result_postgresql.png -------------------------------------------------------------------------------- /configs/mysql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/configs/mysql.ini -------------------------------------------------------------------------------- /configs/postgres.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/configs/postgres.ini -------------------------------------------------------------------------------- /example_pool/autovacuum_freeze_max_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/example_pool/autovacuum_freeze_max_age.txt -------------------------------------------------------------------------------- /example_pool/max_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/example_pool/max_wal_size.txt -------------------------------------------------------------------------------- /example_pool/shared_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/example_pool/shared_buffers.txt -------------------------------------------------------------------------------- /example_pool/vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/example_pool/vacuum_cost_delay.txt -------------------------------------------------------------------------------- /example_pool/wal_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/example_pool/wal_buffers.txt -------------------------------------------------------------------------------- /gptuner-technical-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/gptuner-technical-report.pdf -------------------------------------------------------------------------------- /knowledge_collection/mysql/knob_info/knob_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knob_info/knob_update.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/knob_info/system_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knob_info/system_view.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/binlog_row_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/binlog_row_image.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/div_precision_increment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/div_precision_increment.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/general_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/general_log.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/host_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/host_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_buffer_pool_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_buffer_pool_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_change_buffering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_change_buffering.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_dedicated_server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_dedicated_server.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite_files.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_doublewrite_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_flush_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_flush_sync.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_log_file_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_log_file_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_log_files_in_group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_log_files_in_group.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_lru_scan_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_lru_scan_depth.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_max_undo_log_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_max_undo_log_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_page_cleaners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_page_cleaners.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_purge_batch_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_purge_batch_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_random_read_ahead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_random_read_ahead.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_spin_wait_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_spin_wait_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/innodb_thread_concurrency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/innodb_thread_concurrency.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/join_buffer_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/join_buffer_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/key_cache_block_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/key_cache_block_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/log_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/log_output.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/max_heap_table_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/max_heap_table_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/max_relay_log_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/max_relay_log_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/max_user_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/max_user_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/net_write_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/net_write_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/open_files_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/open_files_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/query_prealloc_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/query_prealloc_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/relay_log_space_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/relay_log_space_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/rpl_read_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/rpl_read_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/rpl_stop_slave_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/rpl_stop_slave_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/slave_allow_batching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/slave_allow_batching.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/slave_parallel_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/slave_parallel_type.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/sort_buffer_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/sort_buffer_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/table_open_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/table_open_cache.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/temptable_max_ram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/temptable_max_ram.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/thread_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/thread_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/gpt/tmp_table_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/knowledge_sources/gpt/tmp_table_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/manual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /knowledge_collection/mysql/knowledge_sources/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/binlog_group_commit_sync_delay.txt: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/binlog_group_commit_sync_no_delay_count.txt: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/binlog_row_image.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/div_precision_increment.txt: -------------------------------------------------------------------------------- 1 | 30 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/general_log.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/host_cache_size.txt: -------------------------------------------------------------------------------- 1 | 65536 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_adaptive_hash_index_parts.txt: -------------------------------------------------------------------------------- 1 | 512 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_adaptive_max_sleep_delay.txt: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_autoextend_increment.txt: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_buffer_pool_chunk_size.txt: -------------------------------------------------------------------------------- 1 | 536870912 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_buffer_pool_dump_pct.txt: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_change_buffer_max_size.txt: -------------------------------------------------------------------------------- 1 | 50 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_change_buffering.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_compression_failure_threshold_pct.txt: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_compression_pad_pct_max.txt: -------------------------------------------------------------------------------- 1 | 75 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_concurrency_tickets.txt: -------------------------------------------------------------------------------- 1 | 4294967295 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_dedicated_server.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_disable_sort_file_cache.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_doublewrite.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_doublewrite_batch_size.txt: -------------------------------------------------------------------------------- 1 | 256 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_doublewrite_files.txt: -------------------------------------------------------------------------------- 1 | 256 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_doublewrite_pages.txt: -------------------------------------------------------------------------------- 1 | 512 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_flush_sync.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_file_size.txt: -------------------------------------------------------------------------------- 1 | 53687091200 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_files_in_group.txt: -------------------------------------------------------------------------------- 1 | 10000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_spin_cpu_abs_lwm.txt: -------------------------------------------------------------------------------- 1 | 4294967295 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_spin_cpu_pct_hwm.txt: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_wait_for_flush_spin_hwm.txt: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_log_write_ahead_size.txt: -------------------------------------------------------------------------------- 1 | 16384 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_lru_scan_depth.txt: -------------------------------------------------------------------------------- 1 | 2048 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_max_dirty_pages_pct.txt: -------------------------------------------------------------------------------- 1 | 99 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_max_dirty_pages_pct_lwm.txt: -------------------------------------------------------------------------------- 1 | 99 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_max_undo_log_size.txt: -------------------------------------------------------------------------------- 1 | 9223372036854775807 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_online_alter_log_max_size.txt: -------------------------------------------------------------------------------- 1 | 1073741824 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_page_cleaners.txt: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_purge_batch_size.txt: -------------------------------------------------------------------------------- 1 | 5000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_purge_rseg_truncate_frequency.txt: -------------------------------------------------------------------------------- 1 | 128 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_random_read_ahead.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_read_ahead_threshold.txt: -------------------------------------------------------------------------------- 1 | 64 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_spin_wait_delay.txt: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/innodb_thread_concurrency.txt: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/join_buffer_size.txt: -------------------------------------------------------------------------------- 1 | 53687091200 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/key_cache_block_size.txt: -------------------------------------------------------------------------------- 1 | 16384 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/log_output.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/max_heap_table_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/max/max_heap_table_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/max_relay_log_size.txt: -------------------------------------------------------------------------------- 1 | 1073741824 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/max_user_connections.txt: -------------------------------------------------------------------------------- 1 | 10000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/net_write_timeout.txt: -------------------------------------------------------------------------------- 1 | 31536000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/open_files_limit.txt: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/query_prealloc_size.txt: -------------------------------------------------------------------------------- 1 | 8388608 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/range_optimizer_max_mem_size.txt: -------------------------------------------------------------------------------- 1 | 9223372036854775807 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/relay_log_space_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/max/relay_log_space_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/rpl_read_size.txt: -------------------------------------------------------------------------------- 1 | 9223372036854775807 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/rpl_stop_slave_timeout.txt: -------------------------------------------------------------------------------- 1 | 31536000 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/slave_allow_batching.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/slave_parallel_type.txt: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/sort_buffer_size.txt: -------------------------------------------------------------------------------- 1 | 8388608 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/stored_program_definition_cache.txt: -------------------------------------------------------------------------------- 1 | 524288 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/table_open_cache.txt: -------------------------------------------------------------------------------- 1 | 524288 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/tablespace_definition_cache.txt: -------------------------------------------------------------------------------- 1 | 524288 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/temptable_max_ram.txt: -------------------------------------------------------------------------------- 1 | 96636764160 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/thread_cache_size.txt: -------------------------------------------------------------------------------- 1 | 16384 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/max/tmp_table_size.txt: -------------------------------------------------------------------------------- 1 | 53687091200 -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/binlog_row_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/binlog_row_image.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/general_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/general_log.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/host_cache_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/host_cache_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/innodb_doublewrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/innodb_doublewrite.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/innodb_flush_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/innodb_flush_sync.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/join_buffer_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/join_buffer_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/log_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/log_output.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/max_relay_log_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/max_relay_log_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/net_write_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/net_write_timeout.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/open_files_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/open_files_limit.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/rpl_read_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/rpl_read_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/sort_buffer_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/sort_buffer_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/table_open_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/table_open_cache.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/temptable_max_ram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/temptable_max_ram.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/thread_cache_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/thread_cache_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/normal/tmp_table_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/normal/tmp_table_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/binlog_row_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/binlog_row_image.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/general_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/general_log.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/host_cache_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/host_cache_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/innodb_flush_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/innodb_flush_sync.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/innodb_log_wait_for_flush_spin_hwm.json: -------------------------------------------------------------------------------- 1 | {"special_knob": false} -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/innodb_log_write_ahead_size.json: -------------------------------------------------------------------------------- 1 | {"special_knob": false} -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/join_buffer_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/join_buffer_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/log_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/log_output.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/net_write_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/net_write_timeout.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/open_files_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/open_files_limit.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/rpl_read_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/rpl_read_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/sort_buffer_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/sort_buffer_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/table_open_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/table_open_cache.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/temptable_max_ram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/temptable_max_ram.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/thread_cache_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/thread_cache_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/structured_knowledge/special/tmp_table_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/structured_knowledge/special/tmp_table_size.json -------------------------------------------------------------------------------- /knowledge_collection/mysql/target_knobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/target_knobs.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/binlog_group_commit_sync_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/binlog_group_commit_sync_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/binlog_row_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/binlog_row_image.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/div_precision_increment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/div_precision_increment.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/general_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/general_log.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/host_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/host_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_adaptive_hash_index_parts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_adaptive_hash_index_parts.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_adaptive_max_sleep_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_adaptive_max_sleep_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_autoextend_increment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_autoextend_increment.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_chunk_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_chunk_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_dump_pct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_dump_pct.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_buffer_pool_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_change_buffer_max_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_change_buffer_max_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_change_buffering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_change_buffering.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_compression_pad_pct_max.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_compression_pad_pct_max.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_concurrency_tickets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_concurrency_tickets.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_dedicated_server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_dedicated_server.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_disable_sort_file_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_disable_sort_file_cache.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_doublewrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_doublewrite.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_doublewrite_batch_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_doublewrite_batch_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_doublewrite_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_doublewrite_files.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_doublewrite_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_doublewrite_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_flush_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_flush_sync.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_ft_total_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_ft_total_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_file_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_file_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_files_in_group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_files_in_group.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_spin_cpu_abs_lwm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_spin_cpu_abs_lwm.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_spin_cpu_pct_hwm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_spin_cpu_pct_hwm.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_wait_for_flush_spin_hwm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_wait_for_flush_spin_hwm.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_log_write_ahead_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_log_write_ahead_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_lru_scan_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_lru_scan_depth.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_max_dirty_pages_pct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_max_dirty_pages_pct.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_max_dirty_pages_pct_lwm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_max_dirty_pages_pct_lwm.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_max_undo_log_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_max_undo_log_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_online_alter_log_max_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_online_alter_log_max_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_page_cleaners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_page_cleaners.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_purge_batch_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_purge_batch_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_random_read_ahead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_random_read_ahead.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_read_ahead_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_read_ahead_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_spin_wait_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_spin_wait_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_stats_transient_sample_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_stats_transient_sample_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/innodb_thread_concurrency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/innodb_thread_concurrency.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/join_buffer_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/join_buffer_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/key_cache_block_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/key_cache_block_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/log_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/log_output.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/max_heap_table_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/max_heap_table_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/max_relay_log_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/max_relay_log_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/max_user_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/max_user_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/net_write_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/net_write_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/open_files_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/open_files_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/query_prealloc_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/query_prealloc_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/range_optimizer_max_mem_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/range_optimizer_max_mem_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/relay_log_space_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/relay_log_space_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/rpl_read_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/rpl_read_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/rpl_stop_slave_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/rpl_stop_slave_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/slave_allow_batching.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/slave_allow_batching.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/slave_parallel_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/slave_parallel_type.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/sort_buffer_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/sort_buffer_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/stored_program_definition_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/stored_program_definition_cache.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/table_open_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/table_open_cache.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/tablespace_definition_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/tablespace_definition_cache.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/temptable_max_ram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/temptable_max_ram.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/thread_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/thread_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/mysql/tuning_lake/tmp_table_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/mysql/tuning_lake/tmp_table_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/candidate_knobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/candidate_knobs.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knob_info/knob_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knob_info/knob_update.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/knob_info/official_document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knob_info/official_document.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/knob_info/system_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knob_info/system_view.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/archive_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/archive_command.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/archive_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/archive_mode.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/autovacuum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/autovacuum.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_max_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_max_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_naptime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_naptime.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/autovacuum_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/backend_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/backend_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_lru_maxpages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/bgwriter_lru_maxpages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/checkpoint_warning.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/cluster_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/cluster_name.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/commit_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/commit_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/commit_siblings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/commit_siblings.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/cpu_index_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/cpu_index_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/cpu_operator_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/cpu_operator_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/cpu_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/cpu_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/cursor_tuple_fraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/cursor_tuple_fraction.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/data_sync_retry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/data_sync_retry.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/deadlock_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/deadlock_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/effective_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/effective_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_async_append.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_async_append.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_bitmapscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_bitmapscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_hashagg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_hashagg.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_hashjoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_hashjoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_indexonlyscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_indexonlyscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_indexscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_indexscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_material.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_mergejoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_mergejoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_nestloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_nestloop.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_seqscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_seqscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/enable_tidscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/enable_tidscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/from_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/from_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/full_page_writes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/full_page_writes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_effort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_effort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_generations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_generations.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_pool_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_pool_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_seed.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_selection_bias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_selection_bias.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/geqo_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/geqo_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/gin_fuzzy_search_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/gin_fuzzy_search_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/gin_pending_list_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/gin_pending_list_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/hash_mem_multiplier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/hash_mem_multiplier.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/hot_standby_feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/hot_standby_feedback.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/huge_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/huge_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/jit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/jit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/jit_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/jit_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/jit_inline_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/jit_inline_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/join_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/join_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_checkpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_checkpoints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_destination.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_destination.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_disconnections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_disconnections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_line_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_line_prefix.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_rotation_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_rotation_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/log_temp_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/log_temp_files.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/logging_collector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/logging_collector.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/maintenance_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/maintenance_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_files_per_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_files_per_process.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_parallel_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_parallel_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_replication_slots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_replication_slots.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_slot_wal_keep_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_slot_wal_keep_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_stack_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_stack_depth.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_wal_senders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_wal_senders.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/max_worker_processes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/max_worker_processes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/min_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/min_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/old_snapshot_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/old_snapshot_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/parallel_setup_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/parallel_setup_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/parallel_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/parallel_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/quote_all_identifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/quote_all_identifiers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/random_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/random_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/seq_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/seq_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/shared_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/shared_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/temp_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/temp_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/temp_file_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/temp_file_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/trace_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/trace_notify.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/trace_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/trace_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_activities.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_commit_timestamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_commit_timestamp.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_counts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_counts.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_functions.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_io_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_io_timing.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/track_wal_io_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/track_wal_io_timing.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_dirty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_dirty.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_hit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_hit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_miss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_cost_page_miss.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_failsafe_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_failsafe_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/vacuum_freeze_min_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/vacuum_freeze_min_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_block_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_block_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_compression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_compression.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_init_zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_init_zero.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_keep_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_keep_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_level.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_log_hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_log_hints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_receiver_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_receiver_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_sender_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_sender_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_skip_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_skip_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_sync_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_sync_method.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_writer_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_writer_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/wal_writer_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/wal_writer_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/gpt/work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/gpt/work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/archive_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/archive_command.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/archive_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/archive_mode.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/autovacuum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/autovacuum.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/autovacuum_naptime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/autovacuum_naptime.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/autovacuum_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/autovacuum_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/backend_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/backend_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/bgwriter_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/bgwriter_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/checkpoint_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/checkpoint_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/checkpoint_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/checkpoint_warning.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/cluster_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/cluster_name.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/commit_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/commit_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/commit_siblings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/commit_siblings.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/cpu_operator_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/cpu_operator_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/cpu_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/cpu_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/data_sync_retry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/data_sync_retry.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/deadlock_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/deadlock_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_bitmapscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_bitmapscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_hashagg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_hashagg.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_hashjoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_hashjoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_indexscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_indexscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_material.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_mergejoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_mergejoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_nestloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_nestloop.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_seqscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_seqscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/enable_tidscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/enable_tidscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/from_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/from_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/full_page_writes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/full_page_writes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_effort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_effort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_generations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_generations.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_pool_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_pool_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_seed.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_selection_bias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_selection_bias.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/geqo_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/geqo_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/hash_mem_multiplier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/hash_mem_multiplier.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/huge_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/huge_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/jit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/jit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/jit_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/jit_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/join_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/join_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_checkpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_checkpoints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_destination.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_destination.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_disconnections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_disconnections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_line_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_line_prefix.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_rotation_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_rotation_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/log_temp_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/log_temp_files.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/logging_collector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/logging_collector.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/max_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/max_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/max_stack_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/max_stack_depth.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/max_wal_senders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/max_wal_senders.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/max_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/max_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/min_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/min_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/parallel_setup_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/parallel_setup_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/parallel_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/parallel_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/random_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/random_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/seq_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/seq_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/shared_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/shared_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/temp_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/temp_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/temp_file_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/temp_file_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/trace_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/trace_notify.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/trace_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/trace_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/track_activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/track_activities.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/track_counts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/track_counts.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/track_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/track_functions.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/track_io_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/track_io_timing.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/vacuum_cost_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/vacuum_cost_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/vacuum_cost_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_compression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_compression.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_init_zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_init_zero.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_keep_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_keep_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_level.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_log_hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_log_hints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_sender_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_sender_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_skip_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_skip_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_sync_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_sync_method.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/wal_writer_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/wal_writer_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/manual/work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/manual/work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/archive_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/archive_command.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/archive_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/archive_mode.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/autovacuum_max_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/autovacuum_max_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/bgwriter_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/bgwriter_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/bgwriter_lru_maxpages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/bgwriter_lru_maxpages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/checkpoint_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/checkpoint_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/checkpoint_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/checkpoint_warning.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/cluster_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/cluster_name.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/effective_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/effective_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/hot_standby_feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/hot_standby_feedback.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/huge_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/huge_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/jit.txt: -------------------------------------------------------------------------------- 1 | You may want to disable it for OLTP systems with simple queries. -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_checkpoints.txt: -------------------------------------------------------------------------------- 1 | Turn it on, you want to know when checkpoints happen. -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_destination.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_destination.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_disconnections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_disconnections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_line_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_line_prefix.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_rotation_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_rotation_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/log_temp_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/log_temp_files.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/logging_collector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/logging_collector.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/maintenance_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/maintenance_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_parallel_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_parallel_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_replication_slots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_replication_slots.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_wal_senders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_wal_senders.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/max_worker_processes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/max_worker_processes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/min_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/min_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/random_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/random_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/shared_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/shared_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/vacuum_cost_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/vacuum_cost_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/vacuum_cost_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/knowledge_sources/web/work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/knowledge_sources/web/work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/archive_command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/archive_command.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/archive_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/archive_mode.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/autovacuum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/autovacuum.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/bgwriter_delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/bgwriter_delay.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/cluster_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/cluster_name.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/commit_delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/commit_delay.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/commit_siblings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/commit_siblings.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/cpu_tuple_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/cpu_tuple_cost.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/data_sync_retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/data_sync_retry.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_hashagg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_hashagg.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_hashjoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_hashjoin.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_material.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_material.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_nestloop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_nestloop.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_seqscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_seqscan.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_sort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/enable_tidscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/enable_tidscan.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/geqo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/geqo.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/geqo_effort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/geqo_effort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/geqo_pool_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/geqo_pool_size.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/geqo_seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/geqo_seed.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/geqo_threshold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/geqo_threshold.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/huge_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/huge_pages.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/jit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/jit.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/jit_above_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/jit_above_cost.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/log_checkpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/log_checkpoints.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/log_connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/log_connections.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/log_destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/log_destination.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/log_line_prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/log_line_prefix.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/log_temp_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/log_temp_files.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/max_connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/max_connections.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/max_stack_depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/max_stack_depth.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/max_wal_senders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/max_wal_senders.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/max_wal_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/max_wal_size.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/min_wal_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/min_wal_size.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/seq_page_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/seq_page_cost.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/shared_buffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/shared_buffers.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/temp_buffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/temp_buffers.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/temp_file_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/temp_file_limit.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/trace_notify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/trace_notify.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/trace_sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/trace_sort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/track_counts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/track_counts.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/track_functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/track_functions.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/track_io_timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/track_io_timing.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_block_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_block_size.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_buffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_buffers.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_compression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_compression.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_init_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_init_zero.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_keep_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_keep_size.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_level.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_log_hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_log_hints.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/wal_sync_method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/wal_sync_method.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/normal/work_mem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/normal/work_mem.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/archive_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/archive_mode.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/autovacuum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/autovacuum.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/bgwriter_delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/bgwriter_delay.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/cluster_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/cluster_name.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/commit_delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/commit_delay.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/cpu_tuple_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/cpu_tuple_cost.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/enable_hashagg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/enable_hashagg.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/enable_seqscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/enable_seqscan.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/enable_sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/enable_sort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/enable_tidscan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/enable_tidscan.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/geqo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/geqo.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/geqo_effort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/geqo_effort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/geqo_seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/geqo_seed.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/huge_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/huge_pages.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/jit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/jit.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/trace_sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/trace_sort.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/wal_buffers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/wal_buffers.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/wal_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/wal_level.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/structured_knowledge/special/work_mem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/structured_knowledge/special/work_mem.json -------------------------------------------------------------------------------- /knowledge_collection/postgres/target_knobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/target_knobs.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/archive_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/archive_command.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/archive_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/archive_mode.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_analyze_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_analyze_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_freeze_max_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_freeze_max_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_max_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_max_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_naptime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_naptime.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_cost_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_cost_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_cost_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_vacuum_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/autovacuum_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/autovacuum_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/backend_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/backend_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/bgwriter_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/bgwriter_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/bgwriter_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/bgwriter_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/bgwriter_lru_maxpages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/bgwriter_lru_maxpages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/bgwriter_lru_multiplier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/bgwriter_lru_multiplier.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/checkpoint_completion_target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/checkpoint_completion_target.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/checkpoint_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/checkpoint_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/checkpoint_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/checkpoint_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/checkpoint_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/checkpoint_warning.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/cluster_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/cluster_name.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/commit_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/commit_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/commit_siblings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/commit_siblings.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/cpu_index_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/cpu_index_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/cpu_operator_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/cpu_operator_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/cpu_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/cpu_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/cursor_tuple_fraction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/cursor_tuple_fraction.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/data_sync_retry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/data_sync_retry.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/deadlock_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/deadlock_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/default_statistics_target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/default_statistics_target.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/effective_cache_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/effective_cache_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/effective_io_concurrency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/effective_io_concurrency.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_async_append.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_async_append.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_bitmapscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_bitmapscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_hashagg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_hashagg.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_hashjoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_hashjoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_indexonlyscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_indexonlyscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_indexscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_indexscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_material.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_material.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_mergejoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_mergejoin.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_nestloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_nestloop.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_seqscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_seqscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/enable_tidscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/enable_tidscan.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/from_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/from_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/full_page_writes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/full_page_writes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_effort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_effort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_generations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_generations.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_pool_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_pool_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_seed.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_selection_bias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_selection_bias.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/geqo_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/geqo_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/gin_fuzzy_search_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/gin_fuzzy_search_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/gin_pending_list_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/gin_pending_list_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/hash_mem_multiplier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/hash_mem_multiplier.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/hot_standby_feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/hot_standby_feedback.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/huge_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/huge_pages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/jit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/jit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/jit_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/jit_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/jit_inline_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/jit_inline_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/jit_optimize_above_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/jit_optimize_above_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/join_collapse_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/join_collapse_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_checkpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_checkpoints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_destination.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_destination.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_disconnections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_disconnections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_line_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_line_prefix.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_min_duration_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_min_duration_statement.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_rotation_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_rotation_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/log_temp_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/log_temp_files.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/logging_collector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/logging_collector.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/logical_decoding_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/logical_decoding_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/maintenance_io_concurrency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/maintenance_io_concurrency.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/maintenance_work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/maintenance_work_mem.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_connections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_connections.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_files_per_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_files_per_process.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_locks_per_transaction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_locks_per_transaction.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_parallel_workers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_parallel_workers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_pred_locks_per_page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_pred_locks_per_page.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_pred_locks_per_relation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_pred_locks_per_relation.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_prepared_transactions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_prepared_transactions.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_replication_slots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_replication_slots.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_slot_wal_keep_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_slot_wal_keep_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_stack_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_stack_depth.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_standby_archive_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_standby_archive_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_standby_streaming_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_standby_streaming_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_wal_senders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_wal_senders.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/max_worker_processes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/max_worker_processes.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/min_dynamic_shared_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/min_dynamic_shared_memory.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/min_parallel_index_scan_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/min_parallel_index_scan_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/min_parallel_table_scan_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/min_parallel_table_scan_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/min_wal_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/min_wal_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/old_snapshot_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/old_snapshot_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/parallel_leader_participation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/parallel_leader_participation.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/parallel_setup_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/parallel_setup_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/parallel_tuple_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/parallel_tuple_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/quote_all_identifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/quote_all_identifiers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/random_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/random_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/seq_page_cost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/seq_page_cost.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/shared_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/shared_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/shared_preload_libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/shared_preload_libraries.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/temp_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/temp_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/temp_file_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/temp_file_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/trace_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/trace_notify.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/trace_recovery_messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/trace_recovery_messages.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/trace_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/trace_sort.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_activities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_activities.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_activity_query_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_activity_query_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_commit_timestamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_commit_timestamp.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_counts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_counts.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_functions.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_io_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_io_timing.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/track_wal_io_timing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/track_wal_io_timing.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_cost_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_cost_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_cost_limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_cost_limit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_cost_page_dirty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_cost_page_dirty.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_cost_page_hit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_cost_page_hit.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_cost_page_miss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_cost_page_miss.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_defer_cleanup_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_defer_cleanup_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_failsafe_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_failsafe_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_freeze_min_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_freeze_min_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_freeze_table_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_freeze_table_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/vacuum_multixact_failsafe_age.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/vacuum_multixact_failsafe_age.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_block_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_block_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_buffers.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_compression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_compression.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_init_zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_init_zero.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_keep_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_keep_size.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_level.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_log_hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_log_hints.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_receiver_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_receiver_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_sender_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_sender_timeout.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_skip_threshold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_skip_threshold.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_sync_method.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_sync_method.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_writer_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_writer_delay.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/wal_writer_flush_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/wal_writer_flush_after.txt -------------------------------------------------------------------------------- /knowledge_collection/postgres/tuning_lake/work_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/knowledge_collection/postgres/tuning_lake/work_mem.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/scripts/build_benchmark.sh -------------------------------------------------------------------------------- /scripts/install_benchbase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/scripts/install_benchbase.sh -------------------------------------------------------------------------------- /scripts/recover_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/scripts/recover_mysql.sh -------------------------------------------------------------------------------- /scripts/recover_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/scripts/recover_postgres.sh -------------------------------------------------------------------------------- /sql/tpch/Q1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q1.sql -------------------------------------------------------------------------------- /sql/tpch/Q10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q10.sql -------------------------------------------------------------------------------- /sql/tpch/Q11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q11.sql -------------------------------------------------------------------------------- /sql/tpch/Q12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q12.sql -------------------------------------------------------------------------------- /sql/tpch/Q13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q13.sql -------------------------------------------------------------------------------- /sql/tpch/Q14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q14.sql -------------------------------------------------------------------------------- /sql/tpch/Q15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q15.sql -------------------------------------------------------------------------------- /sql/tpch/Q16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q16.sql -------------------------------------------------------------------------------- /sql/tpch/Q17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q17.sql -------------------------------------------------------------------------------- /sql/tpch/Q18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q18.sql -------------------------------------------------------------------------------- /sql/tpch/Q19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q19.sql -------------------------------------------------------------------------------- /sql/tpch/Q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q2.sql -------------------------------------------------------------------------------- /sql/tpch/Q20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q20.sql -------------------------------------------------------------------------------- /sql/tpch/Q21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q21.sql -------------------------------------------------------------------------------- /sql/tpch/Q22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q22.sql -------------------------------------------------------------------------------- /sql/tpch/Q3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q3.sql -------------------------------------------------------------------------------- /sql/tpch/Q4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q4.sql -------------------------------------------------------------------------------- /sql/tpch/Q5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q5.sql -------------------------------------------------------------------------------- /sql/tpch/Q6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q6.sql -------------------------------------------------------------------------------- /sql/tpch/Q7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q7.sql -------------------------------------------------------------------------------- /sql/tpch/Q8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q8.sql -------------------------------------------------------------------------------- /sql/tpch/Q9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/sql/tpch/Q9.sql -------------------------------------------------------------------------------- /src/config_recommender/coarse_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/config_recommender/coarse_stage.py -------------------------------------------------------------------------------- /src/config_recommender/fine_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/config_recommender/fine_stage.py -------------------------------------------------------------------------------- /src/config_recommender/workload_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/config_recommender/workload_runner.py -------------------------------------------------------------------------------- /src/dbms/dbms_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/dbms/dbms_template.py -------------------------------------------------------------------------------- /src/dbms/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/dbms/mysql.py -------------------------------------------------------------------------------- /src/dbms/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/dbms/postgres.py -------------------------------------------------------------------------------- /src/demo/entrypage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/entrypage.py -------------------------------------------------------------------------------- /src/demo/structured_knowlegde_mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/structured_knowlegde_mysql.json -------------------------------------------------------------------------------- /src/demo/structured_knowlegde_postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/structured_knowlegde_postgres.json -------------------------------------------------------------------------------- /src/demo/suggestion_mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/suggestion_mysql.json -------------------------------------------------------------------------------- /src/demo/suggestion_postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/suggestion_postgres.json -------------------------------------------------------------------------------- /src/demo/util/coarse_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/coarse_space.py -------------------------------------------------------------------------------- /src/demo/util/coarse_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/coarse_stage.py -------------------------------------------------------------------------------- /src/demo/util/compare_coarse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/compare_coarse.py -------------------------------------------------------------------------------- /src/demo/util/compare_fine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/compare_fine.py -------------------------------------------------------------------------------- /src/demo/util/compare_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/compare_space.py -------------------------------------------------------------------------------- /src/demo/util/default_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/default_space.py -------------------------------------------------------------------------------- /src/demo/util/fine_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/fine_space.py -------------------------------------------------------------------------------- /src/demo/util/fine_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/fine_stage.py -------------------------------------------------------------------------------- /src/demo/util/get_knobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/get_knobs.py -------------------------------------------------------------------------------- /src/demo/util/get_structured.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/get_structured.ipynb -------------------------------------------------------------------------------- /src/demo/util/handle_res_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/handle_res_page.py -------------------------------------------------------------------------------- /src/demo/util/knob_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/knob_selection.py -------------------------------------------------------------------------------- /src/demo/util/knowledge_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/demo/util/knowledge_transformation.py -------------------------------------------------------------------------------- /src/knowledge_handler/__pycache__/gpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/__pycache__/gpt.cpython-310.pyc -------------------------------------------------------------------------------- /src/knowledge_handler/__pycache__/knowledge_preparation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/__pycache__/knowledge_preparation.cpython-310.pyc -------------------------------------------------------------------------------- /src/knowledge_handler/__pycache__/knowledge_transformation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/__pycache__/knowledge_transformation.cpython-310.pyc -------------------------------------------------------------------------------- /src/knowledge_handler/__pycache__/knowledge_update.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/__pycache__/knowledge_update.cpython-310.pyc -------------------------------------------------------------------------------- /src/knowledge_handler/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/knowledge_handler/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/gpt.py -------------------------------------------------------------------------------- /src/knowledge_handler/knowledge_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/knowledge_preparation.py -------------------------------------------------------------------------------- /src/knowledge_handler/knowledge_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/knowledge_transformation.py -------------------------------------------------------------------------------- /src/knowledge_handler/knowledge_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/knowledge_update.py -------------------------------------------------------------------------------- /src/knowledge_handler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/knowledge_handler/utils.py -------------------------------------------------------------------------------- /src/run_gptuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/run_gptuner.py -------------------------------------------------------------------------------- /src/space_optimizer/coarse_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/space_optimizer/coarse_space.py -------------------------------------------------------------------------------- /src/space_optimizer/default_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/space_optimizer/default_space.py -------------------------------------------------------------------------------- /src/space_optimizer/fine_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/space_optimizer/fine_space.py -------------------------------------------------------------------------------- /src/space_optimizer/knob_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolidLao/GPTuner/HEAD/src/space_optimizer/knob_selection.py --------------------------------------------------------------------------------