···201201202202It will take a minute but it should pull all records from that user.
203203204204+## Upstream Firehose Configuration
205205+206206+Konbini supports both standard firehose endpoints as well as jetstream. If
207207+bandwidth and CPU usage is a concern, and you trust the jetstream endpoint,
208208+then it may be worth trying that out.
209209+210210+The configuration file is formatted as follows:
211211+212212+```json
213213+{
214214+ "backends": [
215215+ {
216216+ "type": "jetstream",
217217+ "host": "jetstream1.us-west.bsky.network"
218218+ }
219219+ ]
220220+}
221221+```
222222+223223+The default (implicit) configuration file looks like this:
224224+225225+```json
226226+{
227227+ "backends": [
228228+ {
229229+ "type": "firehose",
230230+ "host": "bsky.network"
231231+ }
232232+ ]
233233+}
234234+```
235235+236236+Note that this is an array of backends, you can specify multiple upstreams, and
237237+konbini will read from all of them. The main intended purpose of this is to be
238238+able to subscribe directly to PDSs. PDSs currently only support the full
239239+firehose endpoint, not jetstream, so be sure to specify a type of "firehose"
240240+for individual PDS endpoints.
241241+204242## License
205243206244MIT (whyrusleeping)