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
b3f19f9b
Unverified
Commit
b3f19f9b
authored
1 year ago
by
Cal Herries
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Remove POST api/database/:id/sync endpoint (#31543)
parent
63027880
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/metabase/api/database.clj
+3
-16
3 additions, 16 deletions
src/metabase/api/database.clj
src/metabase/events/sync_database.clj
+1
-3
1 addition, 3 deletions
src/metabase/events/sync_database.clj
test/metabase/sync/analyze_test.clj
+1
-1
1 addition, 1 deletion
test/metabase/sync/analyze_test.clj
with
5 additions
and
20 deletions
src/metabase/api/database.clj
+
3
−
16
View file @
b3f19f9b
...
...
@@ -945,22 +945,7 @@
api/generic-204-no-content
)
;;; ------------------------------------------ POST /api/database/:id/sync -------------------------------------------
;; TODO - Shouldn't we just check for superuser status instead of write checking?
;; NOTE Atte: This becomes maybe obsolete
#
_
{
:clj-kondo/ignore
[
:deprecated-var
]}
(
api/defendpoint-schema
POST
"/:id/sync"
"Update the metadata for this `Database`. This happens asynchronously."
[
id
]
;; just publish a message and let someone else deal with the logistics
;; TODO - does this make any more sense having this extra level of indirection?
;; Why not just use a future?
(
events/publish-event!
:database-trigger-sync
(
api/write-check
Database
id
))
{
:status
:ok
})
;; NOTE Atte Keinänen: If you think that these endpoints could have more descriptive names, please change them.
;; Currently these match the titles of the admin UI buttons that call these endpoints
;;; ------------------------------------------ POST /api/database/:id/sync_schema -------------------------------------------
;; Should somehow trigger sync-database/sync-database!
(
api/defendpoint
POST
"/:id/sync_schema"
...
...
@@ -988,6 +973,8 @@
(
t2/update!
Table
{
:id
[
:in
table-ids
]}
{
:initial_sync_status
"complete"
})))
{
:status
:ok
})
;;; ------------------------------------------ POST /api/database/:id/rescan_values -------------------------------------------
;; TODO - do we also want an endpoint to manually trigger analysis. Or separate ones for classification/fingerprinting?
(
def
^
:dynamic
*rescan-values-async*
...
...
This diff is collapsed.
Click to expand it.
src/metabase/events/sync_database.clj
+
1
−
3
View file @
b3f19f9b
...
...
@@ -12,9 +12,7 @@
(
def
^
:private
sync-database-topics
"The `Set` of event topics which are subscribed to for use in database syncing."
#
{
:database-create
;; published by POST /api/database/:id/sync -- a message to start syncing the DB right away
:database-trigger-sync
})
#
{
:database-create
})
(
defonce
^
:private
^
{
:doc
"Channel for receiving event notifications we want to subscribe to for database sync events."
}
sync-database-channel
...
...
This diff is collapsed.
Click to expand it.
test/metabase/sync/analyze_test.clj
+
1
−
1
View file @
b3f19f9b
...
...
@@ -172,7 +172,7 @@
(
defn-
api-sync!
"Trigger a sync of `table` via the API."
[
table
]
(
mt/user-http-request
:crowberto
:post
200
(
format
"database/%d/sync"
(
:db_id
table
))))
(
mt/user-http-request
:crowberto
:post
200
(
format
"database/%d/sync
_schema
"
(
:db_id
table
))))
;; use these functions to create fake Tables & Fields that are actually backed by something real in the database.
;; Otherwise when we go to resync them the logic will figure out Table/Field doesn't exist and mark it as inactive
...
...
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