Fix incorrect version in yarn.lock, and more spell-checking in README.md

Signed-off-by: Damon Kaswell <damon.kaswell1@hp.com>
This commit is contained in:
Damon Kaswell
2022-10-26 18:59:32 -07:00
committed by Fredrik Adelöw
parent fab23eed93
commit faed48221e
2 changed files with 1353 additions and 52 deletions
@@ -29,7 +29,7 @@ This approach has the following benefits,
1. Reduced ingestion latency - each burst commits entities which are processed before the entire list is processed.
2. Stable pressure - each period between bursts provides an opportunity for the processing pipeline to settle without overwhelming the pipeline with a large number of unprocessed entities.
3. Built-in retry / back-off - Failed bursts are automatically retried with a built-in backoff interval providing an opportunity for the data source to reset its rate limits before retrying the burst.
3. Built-in retry / back-off - Failed bursts are automatically retried with a built-in back-off interval providing an opportunity for the data source to reset its rate limits before retrying the burst.
4. Prevents orphan entities - Deleted entities are removed as with `full` mutation with a low memory footprint.
## Requirements
@@ -173,7 +173,7 @@ export class MyIncrementalEntityProvider implements IncrementalEntityProvider<My
}
```
`around` method is used for setup and teardown. For example, if you need to create a client that will connect to the API, you would do that here.
`around` method is used for setup and tear-down. For example, if you need to create a client that will connect to the API, you would do that here.
```ts
export class MyIncrementalEntityProvider implements IncrementalEntityProvider<Cursor, Context> {
+1351 -50
View File
File diff suppressed because it is too large Load Diff