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
Container Registry
Model registry
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
Maunium
synapse
Commits
ddd25def
Commit
ddd25def
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Implement a _simple_select_many_batch
parent
d685ae73
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
synapse/storage/_base.py
+67
-0
67 additions, 0 deletions
synapse/storage/_base.py
synapse/storage/presence.py
+18
-17
18 additions, 17 deletions
synapse/storage/presence.py
synapse/storage/push_rule.py
+20
-43
20 additions, 43 deletions
synapse/storage/push_rule.py
with
105 additions
and
60 deletions
synapse/storage/_base.py
+
67
−
0
View file @
ddd25def
...
...
@@ -629,6 +629,73 @@ class SQLBaseStore(object):
return
self
.
cursor_to_dict
(
txn
)
@defer.inlineCallbacks
def
_simple_select_many_batch
(
self
,
table
,
column
,
iterable
,
retcols
,
keyvalues
=
{},
desc
=
"
_simple_select_many_batch
"
,
batch_size
=
100
):
"""
Executes a SELECT query on the named table, which may return zero or
more rows, returning the result as a list of dicts.
Filters rows by if value of `column` is in `iterable`.
Args:
txn : Transaction object
table : string giving the table name
column : column name to test for inclusion against `iterable`
iterable : list
keyvalues : dict of column names and values to select the rows with
retcols : list of strings giving the names of the columns to return
"""
results
=
[]
chunks
=
[
iterable
[
i
:
i
+
batch_size
]
for
i
in
xrange
(
0
,
len
(
iterable
),
batch_size
)]
for
chunk
in
chunks
:
rows
=
yield
self
.
runInteraction
(
desc
,
self
.
_simple_select_many_txn
,
table
,
column
,
chunk
,
keyvalues
,
retcols
)
results
.
extend
(
rows
)
defer
.
returnValue
(
results
)
def
_simple_select_many_txn
(
self
,
txn
,
table
,
column
,
iterable
,
keyvalues
,
retcols
):
"""
Executes a SELECT query on the named table, which may return zero or
more rows, returning the result as a list of dicts.
Filters rows by if value of `column` is in `iterable`.
Args:
txn : Transaction object
table : string giving the table name
column : column name to test for inclusion against `iterable`
iterable : list
keyvalues : dict of column names and values to select the rows with
retcols : list of strings giving the names of the columns to return
"""
sql
=
"
SELECT %s FROM %s
"
%
(
"
,
"
.
join
(
retcols
),
table
)
clauses
=
[]
values
=
[]
clauses
.
append
(
"
%s IN (%s)
"
%
(
column
,
"
,
"
.
join
(
"
?
"
for
_
in
iterable
))
)
values
.
extend
(
iterable
)
for
key
,
value
in
keyvalues
.
items
():
clauses
.
append
(
"
%s = ?
"
%
(
key
,))
values
.
append
(
value
)
if
clauses
:
sql
=
"
%s WHERE %s
"
%
(
sql
,
"
AND
"
.
join
(
clauses
),
)
txn
.
execute
(
sql
,
values
)
return
self
.
cursor_to_dict
(
txn
)
def
_simple_update_one
(
self
,
table
,
keyvalues
,
updatevalues
,
desc
=
"
_simple_update_one
"
):
"""
Executes an UPDATE query on the named table, setting new values for
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/presence.py
+
18
−
17
View file @
ddd25def
...
...
@@ -48,24 +48,25 @@ class PresenceStore(SQLBaseStore):
desc
=
"
get_presence_state
"
,
)
@cachedList
(
get_presence_state
.
cache
,
list_name
=
"
user_localparts
"
)
@cachedList
(
get_presence_state
.
cache
,
list_name
=
"
user_localparts
"
,
inlineCallbacks
=
True
)
def
get_presence_states
(
self
,
user_localparts
):
def
f
(
txn
):
results
=
{}
for
user_localpart
in
user_localparts
:
res
=
self
.
_simple_select_one_txn
(
txn
,
table
=
"
presence
"
,
keyvalues
=
{
"
user_id
"
:
user_localpart
},
retcols
=
[
"
state
"
,
"
status_msg
"
,
"
mtime
"
],
allow_none
=
True
,
)
if
res
:
results
[
user_localpart
]
=
res
return
results
return
self
.
runInteraction
(
"
get_presence_states
"
,
f
)
rows
=
yield
self
.
_simple_select_many_batch
(
table
=
"
presence
"
,
column
=
"
user_id
"
,
iterable
=
user_localparts
,
retcols
=
(
"
user_id
"
,
"
state
"
,
"
status_msg
"
,
"
mtime
"
,)
,
desc
=
"
get_
presence
_states
"
,
)
defer
.
returnValue
({
row
[
"
user_id
"
]:
{
"
state
"
:
row
[
"
state
"
],
"
status_msg
"
:
row
[
"
status_msg
"
],
"
mtime
"
:
row
[
"
mtime
"
],
}
for
row
in
rows
}
)
def
set_presence_state
(
self
,
user_localpart
,
new_state
):
res
=
self
.
_simple_update_one
(
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/push_rule.py
+
20
−
43
View file @
ddd25def
...
...
@@ -65,32 +65,20 @@ class PushRuleStore(SQLBaseStore):
if
not
user_ids
:
defer
.
returnValue
({})
batch_size
=
100
def
f
(
txn
,
user_ids_to_fetch
):
sql
=
(
"
SELECT pr.*
"
"
FROM push_rules AS pr
"
"
LEFT JOIN push_rules_enable AS pre
"
"
ON pr.user_name = pre.user_name AND pr.rule_id = pre.rule_id
"
"
WHERE pr.user_name
"
"
IN (
"
+
"
,
"
.
join
(
"
?
"
for
_
in
user_ids_to_fetch
)
+
"
)
"
"
AND (pre.enabled IS NULL OR pre.enabled = 1)
"
"
ORDER BY pr.user_name, pr.priority_class DESC, pr.priority DESC
"
)
txn
.
execute
(
sql
,
user_ids_to_fetch
)
return
self
.
cursor_to_dict
(
txn
)
results
=
{}
chunks
=
[
user_ids
[
i
:
i
+
batch_size
]
for
i
in
xrange
(
0
,
len
(
user_ids
),
batch_size
)]
for
batch_user_ids
in
chunks
:
rows
=
yield
self
.
runInteraction
(
"
bulk_get_push_rules
"
,
f
,
batch_user_ids
)
rows
=
yield
self
.
_simple_select_many_batch
(
table
=
"
push_rules
"
,
column
=
"
user_name
"
,
iterable
=
user_ids
,
retcols
=
(
"
*
"
,),
desc
=
"
bulk_get_push_rules
"
,
)
rows
.
sort
(
key
=
lambda
e
:
(
-
e
[
"
priority_class
"
],
-
e
[
"
priority
"
]))
for
row
in
rows
:
results
.
setdefault
(
row
[
'
user_name
'
],
[]).
append
(
row
)
for
row
in
rows
:
results
.
setdefault
(
row
[
'
user_name
'
],
[]).
append
(
row
)
defer
.
returnValue
(
results
)
@defer.inlineCallbacks
...
...
@@ -98,28 +86,17 @@ class PushRuleStore(SQLBaseStore):
if
not
user_ids
:
defer
.
returnValue
({})
batch_size
=
100
def
f
(
txn
,
user_ids_to_fetch
):
sql
=
(
"
SELECT user_name, rule_id, enabled
"
"
FROM push_rules_enable
"
"
WHERE user_name
"
"
IN (
"
+
"
,
"
.
join
(
"
?
"
for
_
in
user_ids_to_fetch
)
+
"
)
"
)
txn
.
execute
(
sql
,
user_ids_to_fetch
)
return
self
.
cursor_to_dict
(
txn
)
results
=
{}
chunks
=
[
user_ids
[
i
:
i
+
batch_size
]
for
i
in
xrange
(
0
,
len
(
user_ids
),
batch_size
)]
for
batch_user_ids
in
chunks
:
rows
=
yield
self
.
runInteraction
(
"
bulk_get_push_rules_enabled
"
,
f
,
batch_user_ids
)
for
row
in
rows
:
results
.
setdefault
(
row
[
'
user_name
'
],
{})[
row
[
'
rule_id
'
]]
=
row
[
'
enabled
'
]
rows
=
yield
self
.
_simple_select_many_batch
(
table
=
"
push_rules_enable
"
,
column
=
"
user_name
"
,
iterable
=
user_ids
,
retcols
=
(
"
user_name
"
,
"
rule_id
"
,
"
enabled
"
,),
desc
=
"
bulk_get_push_rules_enabled
"
,
)
for
row
in
rows
:
results
.
setdefault
(
row
[
'
user_name
'
],
{})[
row
[
'
rule_id
'
]]
=
row
[
'
enabled
'
]
defer
.
returnValue
(
results
)
@defer.inlineCallbacks
...
...
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