Skip to content

Commit 0d2cd8f

Browse files
committed
address codacy issue
1 parent a652429 commit 0d2cd8f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

broker/setup_broker/lvk/README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ or
3939

4040

4141
### Use GCP's Secret Manager
42-
[Secret Manager](https://cloud.google.com/secret-manager/docs/overview) is a service that allows users to manage and store sensitive data. Use the following code snippet to [create secrets](https://cloud.google.com/secret-manager/docs/creating-and-accessing-secrets#create) for your client ID
42+
43+
[Secret Manager](https://cloud.google.com/secret-manager/docs/overview) is a service that allows users to manage and
44+
store sensitive data. Use the following code snippet to
45+
[create secrets](https://cloud.google.com/secret-manager/docs/creating-and-accessing-secrets#create) for your client ID
4346
and client secret. This information will be used to deploy a broker instance with your client credentials.
4447

4548
```bash
@@ -86,8 +89,13 @@ gcloud secrets add-iam-policy-binding "${client_secret}" --member="serviceAccoun
8689
```
8790

8891
### BigQuery subscriptions
89-
Our broker uses [BigQuery subscriptions](https://cloud.google.com/pubsub/docs/bigquery) to write alert data directly to a BigQuery table.
90-
Messages receieved by BigQuery subscriptions that fail to write data to BigQuery are negatively acknowledged and re-sent. If the messages fail enough times (default number of attempts = 5), then the message is subsequently moved to a [dead letter topic](https://cloud.google.com/pubsub/docs/handling-failures#dead_letter_topic). A subscription to this dead letter topic is automatically made, allowing the user to identify which messages failed to write data to BigQuery and why the write operation failed.
92+
93+
Our broker uses [BigQuery subscriptions](https://cloud.google.com/pubsub/docs/bigquery) to write alert data directly to
94+
a BigQuery table. Messages receieved by BigQuery subscriptions that fail to write data to BigQuery are negatively
95+
acknowledged and re-sent. If the messages fail enough times (default number of attempts = 5), then the message is
96+
subsequently moved to a [dead letter topic](https://cloud.google.com/pubsub/docs/handling-failures#dead_letter_topic).
97+
A subscription to this dead letter topic is automatically made, allowing the user to identify which messages failed to
98+
write data to BigQuery and why the write operation failed.
9199

92100
## Deploy broker instance
93101

0 commit comments

Comments
 (0)