···201202It will take a minute but it should pull all records from that user.
20300000000000000000000000000000000000000204## License
205206MIT (whyrusleeping)
···201202It will take a minute but it should pull all records from that user.
203204+## Upstream Firehose Configuration
205+206+Konbini supports both standard firehose endpoints as well as jetstream. If
207+bandwidth and CPU usage is a concern, and you trust the jetstream endpoint,
208+then it may be worth trying that out.
209+210+The configuration file is formatted as follows:
211+212+```json
213+{
214+ "backends": [
215+ {
216+ "type": "jetstream",
217+ "host": "jetstream1.us-west.bsky.network"
218+ }
219+ ]
220+}
221+```
222+223+The default (implicit) configuration file looks like this:
224+225+```json
226+{
227+ "backends": [
228+ {
229+ "type": "firehose",
230+ "host": "bsky.network"
231+ }
232+ ]
233+}
234+```
235+236+Note that this is an array of backends, you can specify multiple upstreams, and
237+konbini will read from all of them. The main intended purpose of this is to be
238+able to subscribe directly to PDSs. PDSs currently only support the full
239+firehose endpoint, not jetstream, so be sure to specify a type of "firehose"
240+for individual PDS endpoints.
241+242## License
243244MIT (whyrusleeping)