CarpaNet.Jetstream lets you connect to a Bluesky Jetstream instance.
This library is experimental and not stable. Expect issues and bugs!
The package contains two clients:
JetstreamV2Client— the current Jetstream service (bluesky-social/jetstream): thenetwork.bsky.jetstream.subscribeEventslive websocket plus the sealed-archive replay API. Use this for new code.JetstreamClient— the legacy v1/subscribewire.
SubscribeAsync is a managed stream: automatic reconnect with backoff, seq-based resume and dedup, optional dict-zstd compression with automatic dictionary fetch/rotation, and seamless archive-backfill-to-live cutover.
using var client = new JetstreamV2Client(
new Uri(BlueskyServices.JetstreamUsEast),
new JetstreamV2ClientOptions { EnableCompression = true });
var options = new JetstreamV2SubscribeOptions
{
Collections = new[] { "app.bsky.feed.post" }, // exact NSIDs or wildcards like app.bsky.feed.*
// LiveCursor = lastSeq, // resume a live tail from a saved seq
// AfterSeq = 0, // or: replay the whole sealed archive first, then go live
// SnapshotOnly = true, // or: archive dump only, no websocket
};
await foreach (var evt in client.SubscribeAsync(options, cts.Token))
{
if (evt.Kind == JetstreamV2EventKind.Commit && evt.Commit is { } commit)
{
Console.WriteLine($"[{commit.Operation}] seq={evt.Seq} {commit.Collection}/{commit.Rkey}");
// Typed records via your generated context:
// var post = commit.GetRecord(ATProtoJsonContext.Default.AppBskyFeedPost);
}
}Persist the last evt.Seq and pass it back (LiveCursor for live, AfterSeq for replay) to resume. Delivery is at-least-once — fold idempotently or dedup by seq. The archive endpoints (PlanSnapshotAsync, GetSegmentAsync, GetBlockAsync, plus the JetstreamSegmentFormat decoder) are also available directly.
byte[]? zstdDictionary = null;
if (zstdDictionaryPath != null)
{
zstdDictionary = File.ReadAllBytes(zstdDictionaryPath);
Console.WriteLine($"Loaded zstd dictionary from {zstdDictionaryPath} ({zstdDictionary.Length} bytes)");
}
else if (compress)
{
Console.WriteLine("Warning: --compress specified without --zstd-dictionary. Binary frames will fail to decompress.");
}
using var client = new JetstreamClient(new Uri(endpoint), zstdDictionary);
var options = new JetstreamSubscribeOptions
{
Cursor = cursor,
WantedCollections = collections.Count > 0 ? collections : null,
WantedDids = dids.Count > 0 ? dids : null,
Compress = compress,
};
try
{
await foreach (var evt in client.SubscribeAsync(options, cts.Token))
{
switch (evt.Kind)
{
// ... switch on events...
}
}
}
