Spaces:
Sleeping
Sleeping
leo-bourrel
commited on
!merge: from dev origin
Browse files- .gitattributes +4 -1
- .pre-commit-config.yaml +60 -0
- Dockerfile +3 -0
- README.md +1 -1
- docker-entrypoint-initdb.d/pg_hba.conf +94 -0
- docker-entrypoint-initdb.d/postgresql.conf +796 -0
- requirements.txt +1 -1
- sorbobotapp/conversation_retrieval_chain.py +2 -2
.gitattributes
CHANGED
@@ -33,5 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
-
|
|
|
37 |
*.pgdata filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
data/sorbobot.db filter=lfs diff=lfs merge=lfs -text
|
37 |
+
data/ filter=lfs diff=lfs merge=lfs -text
|
38 |
*.pgdata filter=lfs diff=lfs merge=lfs -text
|
39 |
+
|
40 |
+
SU_CSV.db filter=lfs diff=lfs merge=lfs -text
|
.pre-commit-config.yaml
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
default_install_hook_types:
|
2 |
+
# Mandatory to install both pre-commit and pre-push hooks (see https://pre-commit.com/#top_level-default_install_hook_types)
|
3 |
+
# Add new hook types here to ensure automatic installation when running `pre-commit install`
|
4 |
+
- pre-commit
|
5 |
+
- pre-push
|
6 |
+
repos:
|
7 |
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
8 |
+
rev: v4.3.0
|
9 |
+
hooks:
|
10 |
+
- id: trailing-whitespace
|
11 |
+
- id: end-of-file-fixer
|
12 |
+
- id: check-yaml
|
13 |
+
- id: check-json
|
14 |
+
- id: check-added-large-files
|
15 |
+
|
16 |
+
- repo: https://github.com/srstevenson/nb-clean
|
17 |
+
rev: 3.0.0
|
18 |
+
hooks:
|
19 |
+
- id: nb-clean
|
20 |
+
args:
|
21 |
+
- --remove-empty-cells
|
22 |
+
- --preserve-cell-metadata
|
23 |
+
- --
|
24 |
+
|
25 |
+
# - repo: https://github.com/pre-commit/mirrors-mypy
|
26 |
+
# rev: 'v1.5.1'
|
27 |
+
# hooks:
|
28 |
+
# - id: mypy
|
29 |
+
|
30 |
+
- repo: local
|
31 |
+
hooks:
|
32 |
+
- id: black
|
33 |
+
name: Formatting (black)
|
34 |
+
entry: black
|
35 |
+
language: system
|
36 |
+
types: [python]
|
37 |
+
stages: [commit]
|
38 |
+
# - id: ruff
|
39 |
+
# name: Linter (ruff)
|
40 |
+
# entry: ruff
|
41 |
+
# language: system
|
42 |
+
# types: [python]
|
43 |
+
# stages: [commit]
|
44 |
+
# - id: test
|
45 |
+
# name: Unit tests (pytest)
|
46 |
+
# entry: make test
|
47 |
+
# pass_filenames: false
|
48 |
+
# language: system
|
49 |
+
# types: [python]
|
50 |
+
# stages: [push]
|
51 |
+
# - id: dvc-pre-push
|
52 |
+
# name: DVC pre-push
|
53 |
+
# entry: dvc
|
54 |
+
# args:
|
55 |
+
# - git-hook
|
56 |
+
# - pre-push
|
57 |
+
# require_serial: true
|
58 |
+
# verbose: true
|
59 |
+
# language: system
|
60 |
+
# stages: [push]
|
Dockerfile
CHANGED
@@ -39,6 +39,9 @@ RUN make install # may need sudo
|
|
39 |
WORKDIR $HOME
|
40 |
COPY ./ $HOME
|
41 |
|
|
|
|
|
|
|
42 |
COPY "execution.sh" "/usr/local/bin/"
|
43 |
|
44 |
COPY ./docker-entrypoint-initdb.d/ /docker-entrypoint-initdb.d/
|
|
|
39 |
WORKDIR $HOME
|
40 |
COPY ./ $HOME
|
41 |
|
42 |
+
COPY ./docker-entrypoint-initdb.d/postgresql.conf /var/lib/postgresql/data/postgresql.conf
|
43 |
+
COPY ./docker-entrypoint-initdb.d/pg_hba.conf X
|
44 |
+
|
45 |
COPY "execution.sh" "/usr/local/bin/"
|
46 |
|
47 |
COPY ./docker-entrypoint-initdb.d/ /docker-entrypoint-initdb.d/
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 📈
|
4 |
colorFrom: gray
|
5 |
colorTo: indigo
|
|
|
1 |
---
|
2 |
+
title: Sorbobot
|
3 |
emoji: 📈
|
4 |
colorFrom: gray
|
5 |
colorTo: indigo
|
docker-entrypoint-initdb.d/pg_hba.conf
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PostgreSQL Client Authentication Configuration File
|
2 |
+
# ===================================================
|
3 |
+
#
|
4 |
+
# Refer to the "Client Authentication" section in the PostgreSQL
|
5 |
+
# documentation for a complete description of this file. A short
|
6 |
+
# synopsis follows.
|
7 |
+
#
|
8 |
+
# This file controls: which hosts are allowed to connect, how clients
|
9 |
+
# are authenticated, which PostgreSQL user names they can use, which
|
10 |
+
# databases they can access. Records take one of these forms:
|
11 |
+
#
|
12 |
+
# local DATABASE USER METHOD [OPTIONS]
|
13 |
+
# host DATABASE USER ADDRESS METHOD [OPTIONS]
|
14 |
+
# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
|
15 |
+
# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
|
16 |
+
# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
|
17 |
+
# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
|
18 |
+
#
|
19 |
+
# (The uppercase items must be replaced by actual values.)
|
20 |
+
#
|
21 |
+
# The first field is the connection type:
|
22 |
+
# - "local" is a Unix-domain socket
|
23 |
+
# - "host" is a TCP/IP socket (encrypted or not)
|
24 |
+
# - "hostssl" is a TCP/IP socket that is SSL-encrypted
|
25 |
+
# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted
|
26 |
+
# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted
|
27 |
+
# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted
|
28 |
+
#
|
29 |
+
# DATABASE can be "all", "sameuser", "samerole", "replication", a
|
30 |
+
# database name, or a comma-separated list thereof. The "all"
|
31 |
+
# keyword does not match "replication". Access to replication
|
32 |
+
# must be enabled in a separate record (see example below).
|
33 |
+
#
|
34 |
+
# USER can be "all", a user name, a group name prefixed with "+", or a
|
35 |
+
# comma-separated list thereof. In both the DATABASE and USER fields
|
36 |
+
# you can also write a file name prefixed with "@" to include names
|
37 |
+
# from a separate file.
|
38 |
+
#
|
39 |
+
# ADDRESS specifies the set of hosts the record matches. It can be a
|
40 |
+
# host name, or it is made up of an IP address and a CIDR mask that is
|
41 |
+
# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
|
42 |
+
# specifies the number of significant bits in the mask. A host name
|
43 |
+
# that starts with a dot (.) matches a suffix of the actual host name.
|
44 |
+
# Alternatively, you can write an IP address and netmask in separate
|
45 |
+
# columns to specify the set of hosts. Instead of a CIDR-address, you
|
46 |
+
# can write "samehost" to match any of the server's own IP addresses,
|
47 |
+
# or "samenet" to match any address in any subnet that the server is
|
48 |
+
# directly connected to.
|
49 |
+
#
|
50 |
+
# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
|
51 |
+
# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
|
52 |
+
# Note that "password" sends passwords in clear text; "md5" or
|
53 |
+
# "scram-sha-256" are preferred since they send encrypted passwords.
|
54 |
+
#
|
55 |
+
# OPTIONS are a set of options for the authentication in the format
|
56 |
+
# NAME=VALUE. The available options depend on the different
|
57 |
+
# authentication methods -- refer to the "Client Authentication"
|
58 |
+
# section in the documentation for a list of which options are
|
59 |
+
# available for which authentication methods.
|
60 |
+
#
|
61 |
+
# Database and user names containing spaces, commas, quotes and other
|
62 |
+
# special characters must be quoted. Quoting one of the keywords
|
63 |
+
# "all", "sameuser", "samerole" or "replication" makes the name lose
|
64 |
+
# its special character, and just match a database or username with
|
65 |
+
# that name.
|
66 |
+
#
|
67 |
+
# This file is read on server startup and when the server receives a
|
68 |
+
# SIGHUP signal. If you edit the file on a running system, you have to
|
69 |
+
# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
|
70 |
+
# or execute "SELECT pg_reload_conf()".
|
71 |
+
#
|
72 |
+
# Put your actual configuration here
|
73 |
+
# ----------------------------------
|
74 |
+
#
|
75 |
+
# If you want to allow non-local connections, you need to add more
|
76 |
+
# "host" records. In that case you will also need to make PostgreSQL
|
77 |
+
# listen on a non-local interface via the listen_addresses
|
78 |
+
# configuration parameter, or via the -i or -h command line switches.
|
79 |
+
|
80 |
+
@authcomment@
|
81 |
+
|
82 |
+
# TYPE DATABASE USER ADDRESS METHOD
|
83 |
+
|
84 |
+
@remove-line-for-nolocal@# "local" is for Unix domain socket connections only
|
85 |
+
@remove-line-for-nolocal@local all all @authmethodlocal@
|
86 |
+
# IPv4 local connections:
|
87 |
+
host all all 127.0.0.1/32 @authmethodhost@
|
88 |
+
# IPv6 local connections:
|
89 |
+
host all all ::1/128 @authmethodhost@
|
90 |
+
# Allow replication connections from localhost, by a user with the
|
91 |
+
# replication privilege.
|
92 |
+
@remove-line-for-nolocal@local replication all @authmethodlocal@
|
93 |
+
host replication all 127.0.0.1/32 @authmethodhost@
|
94 |
+
host replication all ::1/128 @authmethodhost@
|
docker-entrypoint-initdb.d/postgresql.conf
ADDED
@@ -0,0 +1,796 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# -----------------------------
|
2 |
+
# PostgreSQL configuration file
|
3 |
+
# -----------------------------
|
4 |
+
#
|
5 |
+
# This file consists of lines of the form:
|
6 |
+
#
|
7 |
+
# name = value
|
8 |
+
#
|
9 |
+
# (The "=" is optional.) Whitespace may be used. Comments are introduced with
|
10 |
+
# "#" anywhere on a line. The complete list of parameter names and allowed
|
11 |
+
# values can be found in the PostgreSQL documentation.
|
12 |
+
#
|
13 |
+
# The commented-out settings shown in this file represent the default values.
|
14 |
+
# Re-commenting a setting is NOT sufficient to revert it to the default value;
|
15 |
+
# you need to reload the server.
|
16 |
+
#
|
17 |
+
# This file is read on server startup and when the server receives a SIGHUP
|
18 |
+
# signal. If you edit the file on a running system, you have to SIGHUP the
|
19 |
+
# server for the changes to take effect, run "pg_ctl reload", or execute
|
20 |
+
# "SELECT pg_reload_conf()". Some parameters, which are marked below,
|
21 |
+
# require a server shutdown and restart to take effect.
|
22 |
+
#
|
23 |
+
# Any parameter can also be given as a command-line option to the server, e.g.,
|
24 |
+
# "postgres -c log_connections=on". Some parameters can be changed at run time
|
25 |
+
# with the "SET" SQL command.
|
26 |
+
#
|
27 |
+
# Memory units: B = bytes Time units: us = microseconds
|
28 |
+
# kB = kilobytes ms = milliseconds
|
29 |
+
# MB = megabytes s = seconds
|
30 |
+
# GB = gigabytes min = minutes
|
31 |
+
# TB = terabytes h = hours
|
32 |
+
# d = days
|
33 |
+
|
34 |
+
|
35 |
+
#------------------------------------------------------------------------------
|
36 |
+
# FILE LOCATIONS
|
37 |
+
#------------------------------------------------------------------------------
|
38 |
+
|
39 |
+
# The default values of these variables are driven from the -D command-line
|
40 |
+
# option or PGDATA environment variable, represented here as ConfigDir.
|
41 |
+
|
42 |
+
#data_directory = 'ConfigDir' # use data in another directory
|
43 |
+
# (change requires restart)
|
44 |
+
#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file
|
45 |
+
# (change requires restart)
|
46 |
+
#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file
|
47 |
+
# (change requires restart)
|
48 |
+
|
49 |
+
# If external_pid_file is not explicitly set, no extra PID file is written.
|
50 |
+
#external_pid_file = '' # write an extra PID file
|
51 |
+
# (change requires restart)
|
52 |
+
|
53 |
+
|
54 |
+
#------------------------------------------------------------------------------
|
55 |
+
# CONNECTIONS AND AUTHENTICATION
|
56 |
+
#------------------------------------------------------------------------------
|
57 |
+
|
58 |
+
# - Connection Settings -
|
59 |
+
|
60 |
+
#listen_addresses = 'localhost' # what IP address(es) to listen on;
|
61 |
+
# comma-separated list of addresses;
|
62 |
+
# defaults to 'localhost'; use '*' for all
|
63 |
+
# (change requires restart)
|
64 |
+
#port = 5432 # (change requires restart)
|
65 |
+
#max_connections = 100 # (change requires restart)
|
66 |
+
#superuser_reserved_connections = 3 # (change requires restart)
|
67 |
+
#unix_socket_directories = '/tmp' # comma-separated list of directories
|
68 |
+
# (change requires restart)
|
69 |
+
#unix_socket_group = '' # (change requires restart)
|
70 |
+
#unix_socket_permissions = 0777 # begin with 0 to use octal notation
|
71 |
+
# (change requires restart)
|
72 |
+
#bonjour = off # advertise server via Bonjour
|
73 |
+
# (change requires restart)
|
74 |
+
#bonjour_name = '' # defaults to the computer name
|
75 |
+
# (change requires restart)
|
76 |
+
|
77 |
+
# - TCP settings -
|
78 |
+
# see "man tcp" for details
|
79 |
+
|
80 |
+
#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds;
|
81 |
+
# 0 selects the system default
|
82 |
+
#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds;
|
83 |
+
# 0 selects the system default
|
84 |
+
#tcp_keepalives_count = 0 # TCP_KEEPCNT;
|
85 |
+
# 0 selects the system default
|
86 |
+
#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds;
|
87 |
+
# 0 selects the system default
|
88 |
+
|
89 |
+
#client_connection_check_interval = 0 # time between checks for client
|
90 |
+
# disconnection while running queries;
|
91 |
+
# 0 for never
|
92 |
+
|
93 |
+
# - Authentication -
|
94 |
+
|
95 |
+
#authentication_timeout = 1min # 1s-600s
|
96 |
+
#password_encryption = scram-sha-256 # scram-sha-256 or md5
|
97 |
+
#db_user_namespace = off
|
98 |
+
|
99 |
+
# GSSAPI using Kerberos
|
100 |
+
#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab'
|
101 |
+
#krb_caseins_users = off
|
102 |
+
|
103 |
+
# - SSL -
|
104 |
+
|
105 |
+
#ssl = off
|
106 |
+
#ssl_ca_file = ''
|
107 |
+
#ssl_cert_file = 'server.crt'
|
108 |
+
#ssl_crl_file = ''
|
109 |
+
#ssl_crl_dir = ''
|
110 |
+
#ssl_key_file = 'server.key'
|
111 |
+
#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers
|
112 |
+
#ssl_prefer_server_ciphers = on
|
113 |
+
#ssl_ecdh_curve = 'prime256v1'
|
114 |
+
#ssl_min_protocol_version = 'TLSv1.2'
|
115 |
+
#ssl_max_protocol_version = ''
|
116 |
+
#ssl_dh_params_file = ''
|
117 |
+
#ssl_passphrase_command = ''
|
118 |
+
#ssl_passphrase_command_supports_reload = off
|
119 |
+
|
120 |
+
|
121 |
+
#------------------------------------------------------------------------------
|
122 |
+
# RESOURCE USAGE (except WAL)
|
123 |
+
#------------------------------------------------------------------------------
|
124 |
+
|
125 |
+
# - Memory -
|
126 |
+
|
127 |
+
#shared_buffers = 32MB # min 128kB
|
128 |
+
# (change requires restart)
|
129 |
+
#huge_pages = try # on, off, or try
|
130 |
+
# (change requires restart)
|
131 |
+
#huge_page_size = 0 # zero for system default
|
132 |
+
# (change requires restart)
|
133 |
+
#temp_buffers = 8MB # min 800kB
|
134 |
+
#max_prepared_transactions = 0 # zero disables the feature
|
135 |
+
# (change requires restart)
|
136 |
+
# Caution: it is not advisable to set max_prepared_transactions nonzero unless
|
137 |
+
# you actively intend to use prepared transactions.
|
138 |
+
#work_mem = 4MB # min 64kB
|
139 |
+
#hash_mem_multiplier = 1.0 # 1-1000.0 multiplier on hash table work_mem
|
140 |
+
#maintenance_work_mem = 64MB # min 1MB
|
141 |
+
#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem
|
142 |
+
#logical_decoding_work_mem = 64MB # min 64kB
|
143 |
+
#max_stack_depth = 2MB # min 100kB
|
144 |
+
#shared_memory_type = mmap # the default is the first option
|
145 |
+
# supported by the operating system:
|
146 |
+
# mmap
|
147 |
+
# sysv
|
148 |
+
# windows
|
149 |
+
# (change requires restart)
|
150 |
+
#dynamic_shared_memory_type = posix # the default is the first option
|
151 |
+
# supported by the operating system:
|
152 |
+
# posix
|
153 |
+
# sysv
|
154 |
+
# windows
|
155 |
+
# mmap
|
156 |
+
# (change requires restart)
|
157 |
+
#min_dynamic_shared_memory = 0MB # (change requires restart)
|
158 |
+
|
159 |
+
# - Disk -
|
160 |
+
|
161 |
+
#temp_file_limit = -1 # limits per-process temp file space
|
162 |
+
# in kilobytes, or -1 for no limit
|
163 |
+
|
164 |
+
# - Kernel Resources -
|
165 |
+
|
166 |
+
#max_files_per_process = 1000 # min 64
|
167 |
+
# (change requires restart)
|
168 |
+
|
169 |
+
# - Cost-Based Vacuum Delay -
|
170 |
+
|
171 |
+
#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables)
|
172 |
+
#vacuum_cost_page_hit = 1 # 0-10000 credits
|
173 |
+
#vacuum_cost_page_miss = 2 # 0-10000 credits
|
174 |
+
#vacuum_cost_page_dirty = 20 # 0-10000 credits
|
175 |
+
#vacuum_cost_limit = 200 # 1-10000 credits
|
176 |
+
|
177 |
+
# - Background Writer -
|
178 |
+
|
179 |
+
#bgwriter_delay = 200ms # 10-10000ms between rounds
|
180 |
+
#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables
|
181 |
+
#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round
|
182 |
+
#bgwriter_flush_after = 0 # measured in pages, 0 disables
|
183 |
+
|
184 |
+
# - Asynchronous Behavior -
|
185 |
+
|
186 |
+
#backend_flush_after = 0 # measured in pages, 0 disables
|
187 |
+
#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching
|
188 |
+
#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching
|
189 |
+
#max_worker_processes = 8 # (change requires restart)
|
190 |
+
#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers
|
191 |
+
#max_parallel_maintenance_workers = 2 # taken from max_parallel_workers
|
192 |
+
#max_parallel_workers = 8 # maximum number of max_worker_processes that
|
193 |
+
# can be used in parallel operations
|
194 |
+
#parallel_leader_participation = on
|
195 |
+
#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate
|
196 |
+
# (change requires restart)
|
197 |
+
|
198 |
+
|
199 |
+
#------------------------------------------------------------------------------
|
200 |
+
# WRITE-AHEAD LOG
|
201 |
+
#------------------------------------------------------------------------------
|
202 |
+
|
203 |
+
# - Settings -
|
204 |
+
|
205 |
+
#wal_level = replica # minimal, replica, or logical
|
206 |
+
# (change requires restart)
|
207 |
+
#fsync = on # flush data to disk for crash safety
|
208 |
+
# (turning this off can cause
|
209 |
+
# unrecoverable data corruption)
|
210 |
+
#synchronous_commit = on # synchronization level;
|
211 |
+
# off, local, remote_write, remote_apply, or on
|
212 |
+
#wal_sync_method = fsync # the default is the first option
|
213 |
+
# supported by the operating system:
|
214 |
+
# open_datasync
|
215 |
+
# fdatasync (default on Linux and FreeBSD)
|
216 |
+
# fsync
|
217 |
+
# fsync_writethrough
|
218 |
+
# open_sync
|
219 |
+
#full_page_writes = on # recover from partial page writes
|
220 |
+
#wal_log_hints = off # also do full page writes of non-critical updates
|
221 |
+
# (change requires restart)
|
222 |
+
#wal_compression = off # enable compression of full-page writes
|
223 |
+
#wal_init_zero = on # zero-fill new WAL files
|
224 |
+
#wal_recycle = on # recycle WAL files
|
225 |
+
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
|
226 |
+
# (change requires restart)
|
227 |
+
#wal_writer_delay = 200ms # 1-10000 milliseconds
|
228 |
+
#wal_writer_flush_after = 1MB # measured in pages, 0 disables
|
229 |
+
#wal_skip_threshold = 2MB
|
230 |
+
|
231 |
+
#commit_delay = 0 # range 0-100000, in microseconds
|
232 |
+
#commit_siblings = 5 # range 1-1000
|
233 |
+
|
234 |
+
# - Checkpoints -
|
235 |
+
|
236 |
+
#checkpoint_timeout = 5min # range 30s-1d
|
237 |
+
#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0
|
238 |
+
#checkpoint_flush_after = 0 # measured in pages, 0 disables
|
239 |
+
#checkpoint_warning = 30s # 0 disables
|
240 |
+
#max_wal_size = 1GB
|
241 |
+
#min_wal_size = 80MB
|
242 |
+
|
243 |
+
# - Archiving -
|
244 |
+
|
245 |
+
#archive_mode = off # enables archiving; off, on, or always
|
246 |
+
# (change requires restart)
|
247 |
+
#archive_command = '' # command to use to archive a logfile segment
|
248 |
+
# placeholders: %p = path of file to archive
|
249 |
+
# %f = file name only
|
250 |
+
# e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f'
|
251 |
+
#archive_timeout = 0 # force a logfile segment switch after this
|
252 |
+
# number of seconds; 0 disables
|
253 |
+
|
254 |
+
# - Archive Recovery -
|
255 |
+
|
256 |
+
# These are only used in recovery mode.
|
257 |
+
|
258 |
+
#restore_command = '' # command to use to restore an archived logfile segment
|
259 |
+
# placeholders: %p = path of file to restore
|
260 |
+
# %f = file name only
|
261 |
+
# e.g. 'cp /mnt/server/archivedir/%f %p'
|
262 |
+
#archive_cleanup_command = '' # command to execute at every restartpoint
|
263 |
+
#recovery_end_command = '' # command to execute at completion of recovery
|
264 |
+
|
265 |
+
# - Recovery Target -
|
266 |
+
|
267 |
+
# Set these only when performing a targeted recovery.
|
268 |
+
|
269 |
+
#recovery_target = '' # 'immediate' to end recovery as soon as a
|
270 |
+
# consistent state is reached
|
271 |
+
# (change requires restart)
|
272 |
+
#recovery_target_name = '' # the named restore point to which recovery will proceed
|
273 |
+
# (change requires restart)
|
274 |
+
#recovery_target_time = '' # the time stamp up to which recovery will proceed
|
275 |
+
# (change requires restart)
|
276 |
+
#recovery_target_xid = '' # the transaction ID up to which recovery will proceed
|
277 |
+
# (change requires restart)
|
278 |
+
#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed
|
279 |
+
# (change requires restart)
|
280 |
+
#recovery_target_inclusive = on # Specifies whether to stop:
|
281 |
+
# just after the specified recovery target (on)
|
282 |
+
# just before the recovery target (off)
|
283 |
+
# (change requires restart)
|
284 |
+
#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID
|
285 |
+
# (change requires restart)
|
286 |
+
#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown'
|
287 |
+
# (change requires restart)
|
288 |
+
|
289 |
+
|
290 |
+
#------------------------------------------------------------------------------
|
291 |
+
# REPLICATION
|
292 |
+
#------------------------------------------------------------------------------
|
293 |
+
|
294 |
+
# - Sending Servers -
|
295 |
+
|
296 |
+
# Set these on the primary and on any standby that will send replication data.
|
297 |
+
|
298 |
+
#max_wal_senders = 10 # max number of walsender processes
|
299 |
+
# (change requires restart)
|
300 |
+
#max_replication_slots = 10 # max number of replication slots
|
301 |
+
# (change requires restart)
|
302 |
+
#wal_keep_size = 0 # in megabytes; 0 disables
|
303 |
+
#max_slot_wal_keep_size = -1 # in megabytes; -1 disables
|
304 |
+
#wal_sender_timeout = 60s # in milliseconds; 0 disables
|
305 |
+
#track_commit_timestamp = off # collect timestamp of transaction commit
|
306 |
+
# (change requires restart)
|
307 |
+
|
308 |
+
# - Primary Server -
|
309 |
+
|
310 |
+
# These settings are ignored on a standby server.
|
311 |
+
|
312 |
+
#synchronous_standby_names = '' # standby servers that provide sync rep
|
313 |
+
# method to choose sync standbys, number of sync standbys,
|
314 |
+
# and comma-separated list of application_name
|
315 |
+
# from standby(s); '*' = all
|
316 |
+
#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
|
317 |
+
|
318 |
+
# - Standby Servers -
|
319 |
+
|
320 |
+
# These settings are ignored on a primary server.
|
321 |
+
|
322 |
+
#primary_conninfo = '' # connection string to sending server
|
323 |
+
#primary_slot_name = '' # replication slot on sending server
|
324 |
+
#promote_trigger_file = '' # file name whose presence ends recovery
|
325 |
+
#hot_standby = on # "off" disallows queries during recovery
|
326 |
+
# (change requires restart)
|
327 |
+
#max_standby_archive_delay = 30s # max delay before canceling queries
|
328 |
+
# when reading WAL from archive;
|
329 |
+
# -1 allows indefinite delay
|
330 |
+
#max_standby_streaming_delay = 30s # max delay before canceling queries
|
331 |
+
# when reading streaming WAL;
|
332 |
+
# -1 allows indefinite delay
|
333 |
+
#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name
|
334 |
+
# is not set
|
335 |
+
#wal_receiver_status_interval = 10s # send replies at least this often
|
336 |
+
# 0 disables
|
337 |
+
#hot_standby_feedback = off # send info from standby to prevent
|
338 |
+
# query conflicts
|
339 |
+
#wal_receiver_timeout = 60s # time that receiver waits for
|
340 |
+
# communication from primary
|
341 |
+
# in milliseconds; 0 disables
|
342 |
+
#wal_retrieve_retry_interval = 5s # time to wait before retrying to
|
343 |
+
# retrieve WAL after a failed attempt
|
344 |
+
#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery
|
345 |
+
|
346 |
+
# - Subscribers -
|
347 |
+
|
348 |
+
# These settings are ignored on a publisher.
|
349 |
+
|
350 |
+
#max_logical_replication_workers = 4 # taken from max_worker_processes
|
351 |
+
# (change requires restart)
|
352 |
+
#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers
|
353 |
+
|
354 |
+
|
355 |
+
#------------------------------------------------------------------------------
|
356 |
+
# QUERY TUNING
|
357 |
+
#------------------------------------------------------------------------------
|
358 |
+
|
359 |
+
# - Planner Method Configuration -
|
360 |
+
|
361 |
+
#enable_async_append = on
|
362 |
+
#enable_bitmapscan = on
|
363 |
+
#enable_gathermerge = on
|
364 |
+
#enable_hashagg = on
|
365 |
+
#enable_hashjoin = on
|
366 |
+
#enable_incremental_sort = on
|
367 |
+
#enable_indexscan = on
|
368 |
+
#enable_indexonlyscan = on
|
369 |
+
#enable_material = on
|
370 |
+
#enable_memoize = on
|
371 |
+
#enable_mergejoin = on
|
372 |
+
#enable_nestloop = on
|
373 |
+
#enable_parallel_append = on
|
374 |
+
#enable_parallel_hash = on
|
375 |
+
#enable_partition_pruning = on
|
376 |
+
#enable_partitionwise_join = off
|
377 |
+
#enable_partitionwise_aggregate = off
|
378 |
+
#enable_seqscan = on
|
379 |
+
#enable_sort = on
|
380 |
+
#enable_tidscan = on
|
381 |
+
|
382 |
+
# - Planner Cost Constants -
|
383 |
+
|
384 |
+
#seq_page_cost = 1.0 # measured on an arbitrary scale
|
385 |
+
#random_page_cost = 4.0 # same scale as above
|
386 |
+
#cpu_tuple_cost = 0.01 # same scale as above
|
387 |
+
#cpu_index_tuple_cost = 0.005 # same scale as above
|
388 |
+
#cpu_operator_cost = 0.0025 # same scale as above
|
389 |
+
#parallel_setup_cost = 1000.0 # same scale as above
|
390 |
+
#parallel_tuple_cost = 0.1 # same scale as above
|
391 |
+
#min_parallel_table_scan_size = 8MB
|
392 |
+
#min_parallel_index_scan_size = 512kB
|
393 |
+
#effective_cache_size = 4GB
|
394 |
+
|
395 |
+
#jit_above_cost = 100000 # perform JIT compilation if available
|
396 |
+
# and query more expensive than this;
|
397 |
+
# -1 disables
|
398 |
+
#jit_inline_above_cost = 500000 # inline small functions if query is
|
399 |
+
# more expensive than this; -1 disables
|
400 |
+
#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if
|
401 |
+
# query is more expensive than this;
|
402 |
+
# -1 disables
|
403 |
+
|
404 |
+
# - Genetic Query Optimizer -
|
405 |
+
|
406 |
+
#geqo = on
|
407 |
+
#geqo_threshold = 12
|
408 |
+
#geqo_effort = 5 # range 1-10
|
409 |
+
#geqo_pool_size = 0 # selects default based on effort
|
410 |
+
#geqo_generations = 0 # selects default based on effort
|
411 |
+
#geqo_selection_bias = 2.0 # range 1.5-2.0
|
412 |
+
#geqo_seed = 0.0 # range 0.0-1.0
|
413 |
+
|
414 |
+
# - Other Planner Options -
|
415 |
+
|
416 |
+
#default_statistics_target = 100 # range 1-10000
|
417 |
+
#constraint_exclusion = partition # on, off, or partition
|
418 |
+
#cursor_tuple_fraction = 0.1 # range 0.0-1.0
|
419 |
+
#from_collapse_limit = 8
|
420 |
+
#jit = on # allow JIT compilation
|
421 |
+
#join_collapse_limit = 8 # 1 disables collapsing of explicit
|
422 |
+
# JOIN clauses
|
423 |
+
#plan_cache_mode = auto # auto, force_generic_plan or
|
424 |
+
# force_custom_plan
|
425 |
+
|
426 |
+
|
427 |
+
#------------------------------------------------------------------------------
|
428 |
+
# REPORTING AND LOGGING
|
429 |
+
#------------------------------------------------------------------------------
|
430 |
+
|
431 |
+
# - Where to Log -
|
432 |
+
|
433 |
+
#log_destination = 'stderr' # Valid values are combinations of
|
434 |
+
# stderr, csvlog, syslog, and eventlog,
|
435 |
+
# depending on platform. csvlog
|
436 |
+
# requires logging_collector to be on.
|
437 |
+
|
438 |
+
# This is used when logging to stderr:
|
439 |
+
#logging_collector = off # Enable capturing of stderr and csvlog
|
440 |
+
# into log files. Required to be on for
|
441 |
+
# csvlogs.
|
442 |
+
# (change requires restart)
|
443 |
+
|
444 |
+
# These are only used if logging_collector is on:
|
445 |
+
#log_directory = 'log' # directory where log files are written,
|
446 |
+
# can be absolute or relative to PGDATA
|
447 |
+
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
|
448 |
+
# can include strftime() escapes
|
449 |
+
#log_file_mode = 0600 # creation mode for log files,
|
450 |
+
# begin with 0 to use octal notation
|
451 |
+
#log_rotation_age = 1d # Automatic rotation of logfiles will
|
452 |
+
# happen after that time. 0 disables.
|
453 |
+
#log_rotation_size = 10MB # Automatic rotation of logfiles will
|
454 |
+
# happen after that much log output.
|
455 |
+
# 0 disables.
|
456 |
+
#log_truncate_on_rotation = off # If on, an existing log file with the
|
457 |
+
# same name as the new log file will be
|
458 |
+
# truncated rather than appended to.
|
459 |
+
# But such truncation only occurs on
|
460 |
+
# time-driven rotation, not on restarts
|
461 |
+
# or size-driven rotation. Default is
|
462 |
+
# off, meaning append to existing files
|
463 |
+
# in all cases.
|
464 |
+
|
465 |
+
# These are relevant when logging to syslog:
|
466 |
+
#syslog_facility = 'LOCAL0'
|
467 |
+
#syslog_ident = 'postgres'
|
468 |
+
#syslog_sequence_numbers = on
|
469 |
+
#syslog_split_messages = on
|
470 |
+
|
471 |
+
# This is only relevant when logging to eventlog (Windows):
|
472 |
+
# (change requires restart)
|
473 |
+
#event_source = 'PostgreSQL'
|
474 |
+
|
475 |
+
# - When to Log -
|
476 |
+
|
477 |
+
#log_min_messages = warning # values in order of decreasing detail:
|
478 |
+
# debug5
|
479 |
+
# debug4
|
480 |
+
# debug3
|
481 |
+
# debug2
|
482 |
+
# debug1
|
483 |
+
# info
|
484 |
+
# notice
|
485 |
+
# warning
|
486 |
+
# error
|
487 |
+
# log
|
488 |
+
# fatal
|
489 |
+
# panic
|
490 |
+
|
491 |
+
#log_min_error_statement = error # values in order of decreasing detail:
|
492 |
+
# debug5
|
493 |
+
# debug4
|
494 |
+
# debug3
|
495 |
+
# debug2
|
496 |
+
# debug1
|
497 |
+
# info
|
498 |
+
# notice
|
499 |
+
# warning
|
500 |
+
# error
|
501 |
+
# log
|
502 |
+
# fatal
|
503 |
+
# panic (effectively off)
|
504 |
+
|
505 |
+
#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements
|
506 |
+
# and their durations, > 0 logs only
|
507 |
+
# statements running at least this number
|
508 |
+
# of milliseconds
|
509 |
+
|
510 |
+
#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements
|
511 |
+
# and their durations, > 0 logs only a sample of
|
512 |
+
# statements running at least this number
|
513 |
+
# of milliseconds;
|
514 |
+
# sample fraction is determined by log_statement_sample_rate
|
515 |
+
|
516 |
+
#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding
|
517 |
+
# log_min_duration_sample to be logged;
|
518 |
+
# 1.0 logs all such statements, 0.0 never logs
|
519 |
+
|
520 |
+
|
521 |
+
#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements
|
522 |
+
# are logged regardless of their duration; 1.0 logs all
|
523 |
+
# statements from all transactions, 0.0 never logs
|
524 |
+
|
525 |
+
# - What to Log -
|
526 |
+
|
527 |
+
#debug_print_parse = off
|
528 |
+
#debug_print_rewritten = off
|
529 |
+
#debug_print_plan = off
|
530 |
+
#debug_pretty_print = on
|
531 |
+
#log_autovacuum_min_duration = -1 # log autovacuum activity;
|
532 |
+
# -1 disables, 0 logs all actions and
|
533 |
+
# their durations, > 0 logs only
|
534 |
+
# actions running at least this number
|
535 |
+
# of milliseconds.
|
536 |
+
#log_checkpoints = off
|
537 |
+
#log_connections = off
|
538 |
+
#log_disconnections = off
|
539 |
+
#log_duration = off
|
540 |
+
#log_error_verbosity = default # terse, default, or verbose messages
|
541 |
+
#log_hostname = off
|
542 |
+
#log_line_prefix = '%m [%p] ' # special values:
|
543 |
+
# %a = application name
|
544 |
+
# %u = user name
|
545 |
+
# %d = database name
|
546 |
+
# %r = remote host and port
|
547 |
+
# %h = remote host
|
548 |
+
# %b = backend type
|
549 |
+
# %p = process ID
|
550 |
+
# %P = process ID of parallel group leader
|
551 |
+
# %t = timestamp without milliseconds
|
552 |
+
# %m = timestamp with milliseconds
|
553 |
+
# %n = timestamp with milliseconds (as a Unix epoch)
|
554 |
+
# %Q = query ID (0 if none or not computed)
|
555 |
+
# %i = command tag
|
556 |
+
# %e = SQL state
|
557 |
+
# %c = session ID
|
558 |
+
# %l = session line number
|
559 |
+
# %s = session start timestamp
|
560 |
+
# %v = virtual transaction ID
|
561 |
+
# %x = transaction ID (0 if none)
|
562 |
+
# %q = stop here in non-session
|
563 |
+
# processes
|
564 |
+
# %% = '%'
|
565 |
+
# e.g. '<%u%%%d> '
|
566 |
+
#log_lock_waits = off # log lock waits >= deadlock_timeout
|
567 |
+
#log_recovery_conflict_waits = off # log standby recovery conflict waits
|
568 |
+
# >= deadlock_timeout
|
569 |
+
#log_parameter_max_length = -1 # when logging statements, limit logged
|
570 |
+
# bind-parameter values to N bytes;
|
571 |
+
# -1 means print in full, 0 disables
|
572 |
+
#log_parameter_max_length_on_error = 0 # when logging an error, limit logged
|
573 |
+
# bind-parameter values to N bytes;
|
574 |
+
# -1 means print in full, 0 disables
|
575 |
+
#log_statement = 'none' # none, ddl, mod, all
|
576 |
+
#log_replication_commands = off
|
577 |
+
#log_temp_files = -1 # log temporary files equal or larger
|
578 |
+
# than the specified size in kilobytes;
|
579 |
+
# -1 disables, 0 logs all temp files
|
580 |
+
#log_timezone = 'GMT'
|
581 |
+
|
582 |
+
|
583 |
+
#------------------------------------------------------------------------------
|
584 |
+
# PROCESS TITLE
|
585 |
+
#------------------------------------------------------------------------------
|
586 |
+
|
587 |
+
#cluster_name = '' # added to process titles if nonempty
|
588 |
+
# (change requires restart)
|
589 |
+
#update_process_title = on
|
590 |
+
|
591 |
+
|
592 |
+
#------------------------------------------------------------------------------
|
593 |
+
# STATISTICS
|
594 |
+
#------------------------------------------------------------------------------
|
595 |
+
|
596 |
+
# - Query and Index Statistics Collector -
|
597 |
+
|
598 |
+
#track_activities = on
|
599 |
+
#track_activity_query_size = 1024 # (change requires restart)
|
600 |
+
#track_counts = on
|
601 |
+
#track_io_timing = off
|
602 |
+
#track_wal_io_timing = off
|
603 |
+
#track_functions = none # none, pl, all
|
604 |
+
#stats_temp_directory = 'pg_stat_tmp'
|
605 |
+
|
606 |
+
|
607 |
+
# - Monitoring -
|
608 |
+
|
609 |
+
#compute_query_id = auto
|
610 |
+
#log_statement_stats = off
|
611 |
+
#log_parser_stats = off
|
612 |
+
#log_planner_stats = off
|
613 |
+
#log_executor_stats = off
|
614 |
+
|
615 |
+
|
616 |
+
#------------------------------------------------------------------------------
|
617 |
+
# AUTOVACUUM
|
618 |
+
#------------------------------------------------------------------------------
|
619 |
+
|
620 |
+
#autovacuum = on # Enable autovacuum subprocess? 'on'
|
621 |
+
# requires track_counts to also be on.
|
622 |
+
#autovacuum_max_workers = 3 # max number of autovacuum subprocesses
|
623 |
+
# (change requires restart)
|
624 |
+
#autovacuum_naptime = 1min # time between autovacuum runs
|
625 |
+
#autovacuum_vacuum_threshold = 50 # min number of row updates before
|
626 |
+
# vacuum
|
627 |
+
#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts
|
628 |
+
# before vacuum; -1 disables insert
|
629 |
+
# vacuums
|
630 |
+
#autovacuum_analyze_threshold = 50 # min number of row updates before
|
631 |
+
# analyze
|
632 |
+
#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum
|
633 |
+
#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of inserts over table
|
634 |
+
# size before insert vacuum
|
635 |
+
#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze
|
636 |
+
#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum
|
637 |
+
# (change requires restart)
|
638 |
+
#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age
|
639 |
+
# before forced vacuum
|
640 |
+
# (change requires restart)
|
641 |
+
#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for
|
642 |
+
# autovacuum, in milliseconds;
|
643 |
+
# -1 means use vacuum_cost_delay
|
644 |
+
#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for
|
645 |
+
# autovacuum, -1 means use
|
646 |
+
# vacuum_cost_limit
|
647 |
+
|
648 |
+
|
649 |
+
#------------------------------------------------------------------------------
|
650 |
+
# CLIENT CONNECTION DEFAULTS
|
651 |
+
#------------------------------------------------------------------------------
|
652 |
+
|
653 |
+
# - Statement Behavior -
|
654 |
+
|
655 |
+
#client_min_messages = notice # values in order of decreasing detail:
|
656 |
+
# debug5
|
657 |
+
# debug4
|
658 |
+
# debug3
|
659 |
+
# debug2
|
660 |
+
# debug1
|
661 |
+
# log
|
662 |
+
# notice
|
663 |
+
# warning
|
664 |
+
# error
|
665 |
+
#search_path = '"$user", public' # schema names
|
666 |
+
#row_security = on
|
667 |
+
#default_table_access_method = 'heap'
|
668 |
+
#default_tablespace = '' # a tablespace name, '' uses the default
|
669 |
+
#default_toast_compression = 'pglz' # 'pglz' or 'lz4'
|
670 |
+
#temp_tablespaces = '' # a list of tablespace names, '' uses
|
671 |
+
# only default tablespace
|
672 |
+
#check_function_bodies = on
|
673 |
+
#default_transaction_isolation = 'read committed'
|
674 |
+
#default_transaction_read_only = off
|
675 |
+
#default_transaction_deferrable = off
|
676 |
+
#session_replication_role = 'origin'
|
677 |
+
#statement_timeout = 0 # in milliseconds, 0 is disabled
|
678 |
+
#lock_timeout = 0 # in milliseconds, 0 is disabled
|
679 |
+
#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled
|
680 |
+
#idle_session_timeout = 0 # in milliseconds, 0 is disabled
|
681 |
+
#vacuum_freeze_table_age = 150000000
|
682 |
+
#vacuum_freeze_min_age = 50000000
|
683 |
+
#vacuum_failsafe_age = 1600000000
|
684 |
+
#vacuum_multixact_freeze_table_age = 150000000
|
685 |
+
#vacuum_multixact_freeze_min_age = 5000000
|
686 |
+
#vacuum_multixact_failsafe_age = 1600000000
|
687 |
+
#bytea_output = 'hex' # hex, escape
|
688 |
+
#xmlbinary = 'base64'
|
689 |
+
#xmloption = 'content'
|
690 |
+
#gin_pending_list_limit = 4MB
|
691 |
+
|
692 |
+
# - Locale and Formatting -
|
693 |
+
|
694 |
+
#datestyle = 'iso, mdy'
|
695 |
+
#intervalstyle = 'postgres'
|
696 |
+
#timezone = 'GMT'
|
697 |
+
#timezone_abbreviations = 'Default' # Select the set of available time zone
|
698 |
+
# abbreviations. Currently, there are
|
699 |
+
# Default
|
700 |
+
# Australia (historical usage)
|
701 |
+
# India
|
702 |
+
# You can create your own file in
|
703 |
+
# share/timezonesets/.
|
704 |
+
#extra_float_digits = 1 # min -15, max 3; any value >0 actually
|
705 |
+
# selects precise output mode
|
706 |
+
#client_encoding = sql_ascii # actually, defaults to database
|
707 |
+
# encoding
|
708 |
+
|
709 |
+
# These settings are initialized by initdb, but they can be changed.
|
710 |
+
#lc_messages = 'C' # locale for system error message
|
711 |
+
# strings
|
712 |
+
#lc_monetary = 'C' # locale for monetary formatting
|
713 |
+
#lc_numeric = 'C' # locale for number formatting
|
714 |
+
#lc_time = 'C' # locale for time formatting
|
715 |
+
|
716 |
+
# default configuration for text search
|
717 |
+
#default_text_search_config = 'pg_catalog.simple'
|
718 |
+
|
719 |
+
# - Shared Library Preloading -
|
720 |
+
|
721 |
+
#local_preload_libraries = ''
|
722 |
+
#session_preload_libraries = ''
|
723 |
+
#shared_preload_libraries = '' # (change requires restart)
|
724 |
+
#jit_provider = 'llvmjit' # JIT library to use
|
725 |
+
|
726 |
+
# - Other Defaults -
|
727 |
+
|
728 |
+
#dynamic_library_path = '$libdir'
|
729 |
+
#gin_fuzzy_search_limit = 0
|
730 |
+
|
731 |
+
|
732 |
+
#------------------------------------------------------------------------------
|
733 |
+
# LOCK MANAGEMENT
|
734 |
+
#------------------------------------------------------------------------------
|
735 |
+
|
736 |
+
#deadlock_timeout = 1s
|
737 |
+
#max_locks_per_transaction = 64 # min 10
|
738 |
+
# (change requires restart)
|
739 |
+
#max_pred_locks_per_transaction = 64 # min 10
|
740 |
+
# (change requires restart)
|
741 |
+
#max_pred_locks_per_relation = -2 # negative values mean
|
742 |
+
# (max_pred_locks_per_transaction
|
743 |
+
# / -max_pred_locks_per_relation) - 1
|
744 |
+
#max_pred_locks_per_page = 2 # min 0
|
745 |
+
|
746 |
+
|
747 |
+
#------------------------------------------------------------------------------
|
748 |
+
# VERSION AND PLATFORM COMPATIBILITY
|
749 |
+
#------------------------------------------------------------------------------
|
750 |
+
|
751 |
+
# - Previous PostgreSQL Versions -
|
752 |
+
|
753 |
+
#array_nulls = on
|
754 |
+
#backslash_quote = safe_encoding # on, off, or safe_encoding
|
755 |
+
#escape_string_warning = on
|
756 |
+
#lo_compat_privileges = off
|
757 |
+
#quote_all_identifiers = off
|
758 |
+
#standard_conforming_strings = on
|
759 |
+
#synchronize_seqscans = on
|
760 |
+
|
761 |
+
# - Other Platforms and Clients -
|
762 |
+
|
763 |
+
#transform_null_equals = off
|
764 |
+
|
765 |
+
|
766 |
+
#------------------------------------------------------------------------------
|
767 |
+
# ERROR HANDLING
|
768 |
+
#------------------------------------------------------------------------------
|
769 |
+
|
770 |
+
#exit_on_error = off # terminate session on any error?
|
771 |
+
#restart_after_crash = on # reinitialize after backend crash?
|
772 |
+
#data_sync_retry = off # retry or panic on failure to fsync
|
773 |
+
# data?
|
774 |
+
# (change requires restart)
|
775 |
+
#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+)
|
776 |
+
|
777 |
+
|
778 |
+
#------------------------------------------------------------------------------
|
779 |
+
# CONFIG FILE INCLUDES
|
780 |
+
#------------------------------------------------------------------------------
|
781 |
+
|
782 |
+
# These options allow settings to be loaded from files other than the
|
783 |
+
# default postgresql.conf. Note that these are directives, not variable
|
784 |
+
# assignments, so they can usefully be given more than once.
|
785 |
+
|
786 |
+
#include_dir = '...' # include files ending in '.conf' from
|
787 |
+
# a directory, e.g., 'conf.d'
|
788 |
+
#include_if_exists = '...' # include file only if it exists
|
789 |
+
#include = '...' # include file
|
790 |
+
|
791 |
+
|
792 |
+
#------------------------------------------------------------------------------
|
793 |
+
# CUSTOMIZED OPTIONS
|
794 |
+
#------------------------------------------------------------------------------
|
795 |
+
|
796 |
+
# Add settings for extensions here
|
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
black==23.11.0
|
2 |
-
gpt4all==
|
3 |
langchain==0.0.313
|
4 |
openai==0.28.1
|
5 |
pandas==2.1.1
|
|
|
1 |
black==23.11.0
|
2 |
+
gpt4all==2.0.2
|
3 |
langchain==0.0.313
|
4 |
openai==0.28.1
|
5 |
pandas==2.1.1
|
sorbobotapp/conversation_retrieval_chain.py
CHANGED
@@ -17,8 +17,8 @@ class CustomConversationalRetrievalChain(ConversationalRetrievalChain):
|
|
17 |
def _handle_docs(self, docs):
|
18 |
if len(docs) == 0:
|
19 |
return False, "No documents found. Can you rephrase ?"
|
20 |
-
|
21 |
-
|
22 |
elif len(docs) > 10:
|
23 |
return False, "Too many documents found. Can you specify your request ?"
|
24 |
return True, ""
|
|
|
17 |
def _handle_docs(self, docs):
|
18 |
if len(docs) == 0:
|
19 |
return False, "No documents found. Can you rephrase ?"
|
20 |
+
elif len(docs) == 1:
|
21 |
+
return False, "Only one document found. Can you rephrase ?"
|
22 |
elif len(docs) > 10:
|
23 |
return False, "Too many documents found. Can you specify your request ?"
|
24 |
return True, ""
|