') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Coalesce webhook-triggered incremental sync in MS Teams and Slack by KrisBraun · Pull Request #261 · plotday/plot · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion connectors/ms-teams/src/ms-teams.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,6 +27,13 @@ import {

const DM_CHANNEL_ID = "__direct_messages__";
const MAX_SYNC_BATCHES = 50;

/**
* Delay before a webhook-triggered incremental sync runs. The pass is
* scheduled as a keyed coalescing task, so a burst of Graph notifications
* collapses into one pass that fires at most this long after the first one.
*/
const INCREMENTAL_SYNC_COALESCE_MS = 10_000;
/** Graph subscriptions for Teams channel messages max out at ~60 minutes. */
const SUBSCRIPTION_EXPIRY_MINUTES = 55;

Expand DownExpand Up@@ -459,14 +466,24 @@ export class MsTeams extends Connector<MsTeams> {
};
await this.set(`sync_state_${channelId}`, incrementalState);

// Coalesced: Graph sends one change notification per channel message, so
// enqueueing an immediate task per notification floods the queue during
// active conversation and the duplicate passes (each re-fetching the same
// 1-hour window) stack concurrently into one worker. A notification burst
// collapses into a single pass; one arriving mid-pass schedules exactly
// one follow-up. The 1-hour window means the delayed pass still covers
// every notified change.
const syncCallback = await this.callback(
this.syncBatch,
1,
"incremental",
channelId,
false
);
await this.runTask(syncCallback);
await this.scheduleTask(`incremental-sync:${channelId}`, syncCallback, {
runAt: new Date(Date.now() + INCREMENTAL_SYNC_COALESCE_MS),
coalesce: true,
});
}

// ---- Subscription renewal ----
Expand Down
37 changes: 37 additions & 0 deletions connectors/slack/src/slack.test.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -423,3 +423,40 @@ describe("onNoteReactionChanged (custom emoji outbound)", () => {
expect(fetchMock).not.toHaveBeenCalled();
});
});

describe("startIncrementalSync — coalesced scheduling", () => {
it("schedules a keyed coalescing task instead of enqueueing per event", async () => {
const store = makeStore({ channel_webhook_C123: { url: "https://x" } });
const scheduleTask = vi.fn(async () => "cancel-token");
const runTask = vi.fn(async () => {});
const tools = {
store,
callbacks: { create: vi.fn(async () => "cb-token") },
tasks: { scheduleTask, runTask },
integrations: {},
network: {},
files: {},
};
const slack = new Slack(
"twist-instance-1" as never,
{ getTools: () => tools } as never
// eslint-disable-next-line @typescript-eslint/no-explicit-any
) as any;

await slack.startIncrementalSync("C123");

// One Slack event per message must NOT become one queued task per event —
// the pass is scheduled under a stable per-channel key with coalesce so
// bursts collapse into a single pending pass.
expect(runTask).not.toHaveBeenCalled();
expect(scheduleTask).toHaveBeenCalledTimes(1);
const [key, , options] = scheduleTask.mock.calls[0] as unknown as [
string,
unknown,
{ runAt: Date; coalesce?: boolean },
];
expect(key).toBe("incremental-sync:C123");
expect(options.coalesce).toBe(true);
expect(options.runAt.getTime()).toBeGreaterThan(Date.now());
});
});
21 changes: 20 additions & 1 deletion connectors/slack/src/slack.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -73,6 +73,14 @@ import { slackFacets } from "./slack-facets";
* - `mpim:history` - Read group direct messages
* - `stars:read` / `stars:write` - Read and manage the user's saved items
*/

/**
* Delay before an event-triggered incremental sync runs. The pass is
* scheduled as a keyed coalescing task, so a burst of message events
* collapses into one pass that fires at most this long after the first one.
*/
const INCREMENTAL_SYNC_COALESCE_MS = 10_000;

export class Slack extends Connector<Slack> {
static readonly PROVIDER = AuthProvider.Slack;
static readonly handleReplies = true;
Expand DownExpand Up@@ -1021,14 +1029,25 @@ export class Slack extends Connector<Slack> {
};

await this.set(`sync_state_${channelId}`, incrementalState);

// Coalesced: Slack delivers one event per message, so enqueueing an
// immediate task per event turns a busy channel into a flood of duplicate
// passes (each re-fetching the same 15-minute window) that run
// concurrently in one worker. A burst of events collapses into a single
// pass; an event arriving mid-pass schedules exactly one follow-up. The
// 15-minute window (with the coalesce delay well inside it) means the
// delayed pass still covers every notified message.
const syncCallback = await this.callback(
this.syncBatch,
1,
"incremental",
channelId,
false
);
await this.runTask(syncCallback);
await this.scheduleTask(`incremental-sync:${channelId}`, syncCallback, {
runAt: new Date(Date.now() + INCREMENTAL_SYNC_COALESCE_MS),
coalesce: true,
});
}

private starredKey(channelId: string, threadTs: string): string {
Expand Down
Loading