Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
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
TeDomum
Matrix
Commits
940a1611
Commit
940a1611
authored
9 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Fix the background update
parent
90b50321
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
synapse/storage/background_updates.py
+8
-5
8 additions, 5 deletions
synapse/storage/background_updates.py
synapse/storage/schema/delta/25/fts.py
+3
-4
3 additions, 4 deletions
synapse/storage/schema/delta/25/fts.py
synapse/storage/search.py
+8
-8
8 additions, 8 deletions
synapse/storage/search.py
with
19 additions
and
17 deletions
synapse/storage/background_updates.py
+
8
−
5
View file @
940a1611
...
...
@@ -93,16 +93,19 @@ class BackgroundUpdateStore(SQLBaseStore):
sleep
=
defer
.
Deferred
()
self
.
_background_update_timer
=
self
.
_clock
.
call_later
(
self
.
BACKGROUND_UPDATE_INTERVAL_MS
/
1000.
,
sleep
.
callback
self
.
BACKGROUND_UPDATE_INTERVAL_MS
/
1000.
,
sleep
.
callback
,
None
)
try
:
yield
sleep
finally
:
self
.
_background_update_timer
=
None
result
=
yield
self
.
do_background_update
(
self
.
BACKGROUND_UPDATE_DURATION_MS
)
try
:
result
=
yield
self
.
do_background_update
(
self
.
BACKGROUND_UPDATE_DURATION_MS
)
except
:
logger
.
exception
(
"
Error doing update
"
)
if
result
is
None
:
logger
.
info
(
...
...
@@ -169,7 +172,7 @@ class BackgroundUpdateStore(SQLBaseStore):
duration_ms
=
time_stop
-
time_start
logger
.
info
(
"
Updating %. Updated %r items in %rms.
"
"
Updating %
r
. Updated %r items in %rms.
"
"
(total_rate=%r/ms, current_rate=%r/ms, total_updated=%r)
"
,
update_name
,
items_updated
,
duration_ms
,
performance
.
total_items_per_ms
(),
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/schema/delta/25/fts.py
+
3
−
4
View file @
940a1611
...
...
@@ -47,11 +47,10 @@ def run_upgrade(cur, database_engine, *args, **kwargs):
if
isinstance
(
database_engine
,
PostgresEngine
):
for
statement
in
get_statements
(
POSTGRES_TABLE
.
splitlines
()):
cur
.
execute
(
statement
)
return
if
isinstance
(
database_engine
,
Sqlite3Engine
):
elif
isinstance
(
database_engine
,
Sqlite3Engine
):
cur
.
execute
(
SQLITE_TABLE
)
return
else
:
raise
Exception
(
"
Unrecognized database engine
"
)
cur
.
execute
(
"
SELECT MIN(stream_ordering) FROM events
"
)
rows
=
cur
.
fetchall
()
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/search.py
+
8
−
8
View file @
940a1611
...
...
@@ -46,18 +46,18 @@ class SearchStore(BackgroundUpdateStore):
def
reindex_search_txn
(
txn
):
sql
=
(
"
SELECT stream_
id
, event_id FROM events
"
"
SELECT stream_
ordering
, event_id FROM events
"
"
WHERE ? <= stream_ordering AND stream_ordering < ?
"
"
AND (%s)
"
"
ORDER BY stream_ordering DESC
"
"
LIMIT ?
"
)
%
(
"
OR
"
.
join
(
"
type =
'
%s
'"
%
TYPES
),)
)
%
(
"
OR
"
.
join
(
"
type =
'
%s
'"
%
(
t
,)
for
t
in
TYPES
),)
txn
.
execute
(
sql
,
target_min_stream_id
,
max_stream_id
,
batch_size
)
txn
.
execute
(
sql
,
(
target_min_stream_id
,
max_stream_id
,
batch_size
)
)
rows
=
txn
.
fetch
_
all
()
rows
=
txn
.
fetchall
()
if
not
rows
:
return
None
return
0
min_stream_id
=
rows
[
-
1
][
0
]
event_ids
=
[
row
[
1
]
for
row
in
rows
]
...
...
@@ -102,7 +102,7 @@ class SearchStore(BackgroundUpdateStore):
for
index
in
range
(
0
,
len
(
event_search_rows
),
INSERT_CLUMP_SIZE
):
clump
=
event_search_rows
[
index
:
index
+
INSERT_CLUMP_SIZE
]
txn
.
execute
_
many
(
sql
,
clump
)
txn
.
executemany
(
sql
,
clump
)
progress
=
{
"
target_min_stream_id_inclusive
"
:
target_min_stream_id
,
...
...
@@ -116,11 +116,11 @@ class SearchStore(BackgroundUpdateStore):
return
len
(
event_search_rows
)
result
=
yield
self
.
runInteration
(
result
=
yield
self
.
runIntera
c
tion
(
self
.
EVENT_SEARCH_UPDATE_NAME
,
reindex_search_txn
)
if
result
is
None
:
if
not
result
:
yield
self
.
_end_background_update
(
self
.
EVENT_SEARCH_UPDATE_NAME
)
defer
.
returnValue
(
result
)
...
...
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