Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
1bbbb664
Unverified
Commit
1bbbb664
authored
7 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Add MB_DB_CONNECTION_TIMEOUT_MS env var to configure connection timeouts
parent
38440129
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/config.clj
+1
-1
1 addition, 1 deletion
src/metabase/config.clj
src/metabase/driver.clj
+6
-4
6 additions, 4 deletions
src/metabase/driver.clj
with
7 additions
and
5 deletions
src/metabase/config.clj
+
1
−
1
View file @
1bbbb664
...
...
@@ -9,7 +9,7 @@
"Are we running on a Windows machine?"
(
s/includes?
(
s/lower-case
(
System/getProperty
"os.name"
))
"win"
))
(
def
^
:private
^
:const
app-defaults
(
def
^
:private
app-defaults
"Global application defaults"
{
:mb-run-mode
"prod"
;; DB Settings
...
...
This diff is collapsed.
Click to expand it.
src/metabase/driver.clj
+
6
−
4
View file @
1bbbb664
...
...
@@ -2,6 +2,7 @@
(
:require
[
clj-time.format
:as
tformat
]
[
clojure.tools.logging
:as
log
]
[
medley.core
:as
m
]
[
metabase.config
:as
config
]
[
metabase.models
[
database
:refer
[
Database
]]
[
setting
:refer
[
defsetting
]]]
...
...
@@ -360,10 +361,11 @@
;; ## Implementation-Agnostic Driver API
(
def
^
:private
^
:const
can-connect-timeout-ms
"Consider `can-connect?`/`can-connect-with-details?` to have failed after this many milliseconds."
5000
)
(
def
^
:private
can-connect-timeout-ms
"Consider `can-connect?`/`can-connect-with-details?` to have failed after this many milliseconds.
By default, this is 5 seconds. You can configure this value by setting the env var `MB_DB_CONNECTION_TIMEOUT_MS`."
(
or
(
config/config-int
:mb-db-connection-timeout-ms
)
5000
))
(
defn
can-connect-with-details?
"Check whether we can connect to a database with ENGINE and DETAILS-MAP and perform a basic query
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment