Files
nexus/knowledgebase/csd-wiki/ICSD/GCP-FinOps-flow---increase-backlog-quota-size_706806534.md

1.7 KiB

GCP-FinOps-flow---increase-backlog-quota-size_706806534

This document provides instructions on how to increase backlog quota size in Vertica.

  1. Follow below steps to get IDM token

curl -X POST https://:<ingress_port>/idm-service/v3.0/tokens -d @/tmp/idm.json -k -H "Content-type: Application/json"

idm.json

{

"passwordCredentials": {

"username": "diadmin",

"password": "1ISO*help"

},

"tenantName": "181783837"

}

2. Run below command to increase backlog quota to 100Mb.

Note: cloud_google_cm_billing_raw_flowControl is the dataset id used for GCP finops flow.

curl -X POST https://:<ingress_port>/itom-data-ingestion-administration/urest/v3/dataSetFlowControl -d @/tmp/d.json -k -H "Content-type: Application/json" -H "X-Auth-Token:"

d.json

{

"id": "cloud_google_cm_billing_raw_flowControl",

"configurationId": "cloud_google_cm_billing_raw",

"type":"dataSetConfiguration",

"backlogQuotaInMB": 100

}

Related pages