https://signoz.io logo
#support
Title
# support
p

Prabhat Pankaj

01/17/2023, 4:04 PM
hi i need to change the persistent volume of queryService from default 1Gi to 10Gi in existing cluster . as these configuration require StatefulSet patch , which is not available for volume . what would be the best way to update it as needed ?
p

Pranay

01/17/2023, 5:00 PM
@Prashant Shahi do you have more insights on this?
p

Prashant Shahi

01/17/2023, 5:32 PM
@Prabhat Pankaj You can do that by including the following in
override-values.yaml
:
Copy code
queryService:
  persistence:
    size: 10Gi
However, I don't think you would need more than
1Gi
for that pvc.
PVC in query-service basically is for SQLite DB file which mainly holds data related to user, org, dashboard and TTL status
2 Views