-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AIP-157 Partial response implementation #717
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,7 @@ DB_NAME=tekton-results | |
DB_SSLMODE=disable | ||
DB_SSLROOTCERT= | ||
DB_ENABLE_AUTO_MIGRATION=true | ||
DB_MAX_IDLE_CONNECTIONS=10 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm assuming you did this @sayan-biswas because I didn't need to set these defaults when I added the tuning options ? If so, thanks for the correction. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or was this accidental? ...If it was, in hindsight, I does probably make sense to not set these, even to the defaults. (though 10 does not line up with the default as described in the doc. Users can always add these to their config map. |
||
DB_MAX_OPEN_CONNECTIONS=10 | ||
GRPC_WORKER_POOL=2 | ||
K8S_QPS=5 | ||
K8S_BURST=10 | ||
PROFILING=false | ||
PROFILING_PORT=6060 | ||
FEATURE_GATES= | ||
SERVER_PORT=8080 | ||
PROMETHEUS_PORT=9090 | ||
PROMETHEUS_HISTOGRAM=false | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You deleted all my tuning options here in the README @sayan-biswas .... we need to minially document them, even if they are not specified in the config/base/env/config file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ohh.. Not sure why how this was missed. I'll rebase again to include the changes.