Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
22227fa6
Unverified
Commit
22227fa6
authored
1 year ago
by
tamaina
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
perf(backend): Use addBulk to add deliver queues (#11114)
parent
92d9946f
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
packages/backend/src/core/QueueService.ts
+34
-2
34 additions, 2 deletions
packages/backend/src/core/QueueService.ts
packages/backend/src/core/activitypub/ApDeliverManagerService.ts
+11
-8
11 additions, 8 deletions
...s/backend/src/core/activitypub/ApDeliverManagerService.ts
with
45 additions
and
10 deletions
packages/backend/src/core/QueueService.ts
+
34
−
2
View file @
22227fa6
...
...
@@ -8,7 +8,7 @@ import { DI } from '@/di-symbols.js';
import
{
bindThis
}
from
'
@/decorators.js
'
;
import
type
{
Antenna
}
from
'
@/server/api/endpoints/i/import-antennas.js
'
;
import
type
{
DbQueue
,
DeliverQueue
,
EndedPollNotificationQueue
,
InboxQueue
,
ObjectStorageQueue
,
RelationshipQueue
,
SystemQueue
,
WebhookDeliverQueue
}
from
'
./QueueModule.js
'
;
import
type
{
DbJobData
,
RelationshipJobData
,
ThinUser
}
from
'
../queue/types.js
'
;
import
type
{
DbJobData
,
DeliverJobData
,
RelationshipJobData
,
ThinUser
}
from
'
../queue/types.js
'
;
import
type
httpSignature
from
'
@peertube/http-signature
'
;
import
type
*
as
Bull
from
'
bullmq
'
;
...
...
@@ -69,7 +69,7 @@ export class QueueService {
if
(
content
==
null
)
return
null
;
if
(
to
==
null
)
return
null
;
const
data
=
{
const
data
:
DeliverJobData
=
{
user
:
{
id
:
user
.
id
,
},
...
...
@@ -88,6 +88,38 @@ export class QueueService {
});
}
/**
* ApDeliverManager-DeliverManager.execute()からinboxesを突っ込んでaddBulkしたい
* @param user `{ id: string; }` この関数ではThinUserに変換しないので前もって変換してください
* @param content IActivity | null
* @param inboxes `Map<string, boolean>` / key: to (inbox url), value: isSharedInbox (whether it is sharedInbox)
* @returns void
*/
@
bindThis
public
async
deliverMany
(
user
:
ThinUser
,
content
:
IActivity
|
null
,
inboxes
:
Map
<
string
,
boolean
>
)
{
const
opts
=
{
attempts
:
this
.
config
.
deliverJobMaxAttempts
??
12
,
backoff
:
{
type
:
'
custom
'
,
},
removeOnComplete
:
true
,
removeOnFail
:
true
,
};
await
this
.
deliverQueue
.
addBulk
(
Array
.
from
(
inboxes
.
entries
()).
map
(
d
=>
({
name
:
d
[
0
],
data
:
{
user
,
content
,
to
:
d
[
0
],
isSharedInbox
:
d
[
1
],
}
as
DeliverJobData
,
opts
,
})));
return
;
}
@
bindThis
public
inbox
(
activity
:
IActivity
,
signature
:
httpSignature
.
IParsedSignature
)
{
const
data
=
{
...
...
This diff is collapsed.
Click to expand it.
packages/backend/src/core/activitypub/ApDeliverManagerService.ts
+
11
−
8
View file @
22227fa6
...
...
@@ -7,6 +7,7 @@ import type { LocalUser, RemoteUser, User } from '@/models/entities/User.js';
import
{
QueueService
}
from
'
@/core/QueueService.js
'
;
import
{
UserEntityService
}
from
'
@/core/entities/UserEntityService.js
'
;
import
{
bindThis
}
from
'
@/decorators.js
'
;
import
{
ThinUser
}
from
'
@/queue/types.js
'
;
interface
IRecipe
{
type
:
string
;
...
...
@@ -94,7 +95,7 @@ export class ApDeliverManagerService {
}
class
DeliverManager
{
private
actor
:
{
id
:
User
[
'
id
'
];
host
:
null
;
}
;
private
actor
:
ThinUser
;
private
activity
:
any
;
private
recipes
:
IRecipe
[]
=
[];
...
...
@@ -111,7 +112,13 @@ class DeliverManager {
actor
:
{
id
:
User
[
'
id
'
];
host
:
null
;
},
activity
:
any
,
)
{
this
.
actor
=
actor
;
// 型で弾いてはいるが一応ローカルユーザーかチェック
if
(
actor
.
host
!=
null
)
throw
new
Error
(
'
actor.host must be null
'
);
// パフォーマンス向上のためキューに突っ込むのはidのみに絞る
this
.
actor
=
{
id
:
actor
.
id
,
};
this
.
activity
=
activity
;
}
...
...
@@ -155,9 +162,8 @@ class DeliverManager {
*/
@
bindThis
public
async
execute
()
{
if
(
!
this
.
userEntityService
.
isLocalUser
(
this
.
actor
))
return
;
// The value flags whether it is shared or not.
// key: inbox URL, value: whether it is sharedInbox
const
inboxes
=
new
Map
<
string
,
boolean
>
();
/*
...
...
@@ -201,9 +207,6 @@ class DeliverManager {
.
forEach
(
recipe
=>
inboxes
.
set
(
recipe
.
to
.
inbox
!
,
false
));
// deliver
for
(
const
inbox
of
inboxes
)
{
// inbox[0]: inbox, inbox[1]: whether it is sharedInbox
this
.
queueService
.
deliver
(
this
.
actor
,
this
.
activity
,
inbox
[
0
],
inbox
[
1
]);
}
this
.
queueService
.
deliverMany
(
this
.
actor
,
this
.
activity
,
inboxes
);
}
}
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