MCPcopy Index your code
hub / github.com/feast-dev/feast / PostgreSQLConfig

Class PostgreSQLConfig

sdk/python/feast/infra/utils/postgres/postgres_config.py:14–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13
14class PostgreSQLConfig(FeastConfigBaseModel):
15 min_conn: int = 1
16 max_conn: int = 10
17 conn_type: ConnectionType = ConnectionType.singleton
18 host: StrictStr
19 port: int = 5432
20 database: StrictStr
21 db_schema: StrictStr = "public"
22 user: StrictStr
23 password: StrictStr
24 sslmode: Optional[StrictStr] = "require"
25 sslkey_path: Optional[StrictStr] = None
26 sslcert_path: Optional[StrictStr] = None
27 sslrootcert_path: Optional[StrictStr] = None
28 keepalives_idle: Optional[int] = None

Callers 1

bootstrapFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected