Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
ec10bdd3
Unverified
Commit
ec10bdd3
authored
4 years ago
by
Erik Johnston
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Speed up unit tests when using PostgreSQL (#8450)
parent
62894673
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/8450.misc
+1
-0
1 addition, 0 deletions
changelog.d/8450.misc
synapse/storage/databases/main/events_worker.py
+12
-1
12 additions, 1 deletion
synapse/storage/databases/main/events_worker.py
tests/server.py
+4
-0
4 additions, 0 deletions
tests/server.py
with
17 additions
and
1 deletion
changelog.d/8450.misc
0 → 100644
+
1
−
0
View file @
ec10bdd3
Speed up unit tests when using PostgreSQL.
This diff is collapsed.
Click to expand it.
synapse/storage/databases/main/events_worker.py
+
12
−
1
View file @
ec10bdd3
...
@@ -74,6 +74,13 @@ class EventRedactBehaviour(Names):
...
@@ -74,6 +74,13 @@ class EventRedactBehaviour(Names):
class
EventsWorkerStore
(
SQLBaseStore
):
class
EventsWorkerStore
(
SQLBaseStore
):
# Whether to use dedicated DB threads for event fetching. This is only used
# if there are multiple DB threads available. When used will lock the DB
# thread for periods of time (so unit tests want to disable this when they
# run DB transactions on the main thread). See EVENT_QUEUE_* for more
# options controlling this.
USE_DEDICATED_DB_THREADS_FOR_EVENT_FETCHING
=
True
def
__init__
(
self
,
database
:
DatabasePool
,
db_conn
,
hs
):
def
__init__
(
self
,
database
:
DatabasePool
,
db_conn
,
hs
):
super
().
__init__
(
database
,
db_conn
,
hs
)
super
().
__init__
(
database
,
db_conn
,
hs
)
...
@@ -522,7 +529,11 @@ class EventsWorkerStore(SQLBaseStore):
...
@@ -522,7 +529,11 @@ class EventsWorkerStore(SQLBaseStore):
if
not
event_list
:
if
not
event_list
:
single_threaded
=
self
.
database_engine
.
single_threaded
single_threaded
=
self
.
database_engine
.
single_threaded
if
single_threaded
or
i
>
EVENT_QUEUE_ITERATIONS
:
if
(
not
self
.
USE_DEDICATED_DB_THREADS_FOR_EVENT_FETCHING
or
single_threaded
or
i
>
EVENT_QUEUE_ITERATIONS
):
self
.
_event_fetch_ongoing
-=
1
self
.
_event_fetch_ongoing
-=
1
return
return
else
:
else
:
...
...
This diff is collapsed.
Click to expand it.
tests/server.py
+
4
−
0
View file @
ec10bdd3
...
@@ -372,6 +372,10 @@ def setup_test_homeserver(cleanup_func, *args, **kwargs):
...
@@ -372,6 +372,10 @@ def setup_test_homeserver(cleanup_func, *args, **kwargs):
pool
.
threadpool
=
ThreadPool
(
clock
.
_reactor
)
pool
.
threadpool
=
ThreadPool
(
clock
.
_reactor
)
pool
.
running
=
True
pool
.
running
=
True
# We've just changed the Databases to run DB transactions on the same
# thread, so we need to disable the dedicated thread behaviour.
server
.
get_datastores
().
main
.
USE_DEDICATED_DB_THREADS_FOR_EVENT_FETCHING
=
False
return
server
return
server
...
...
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