Skip to content

Commit

Permalink
fix: decrease coordinator requriements
Browse files Browse the repository at this point in the history
  • Loading branch information
reinthal committed Jan 16, 2025
1 parent 0dbfc34 commit 2ced296
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
23 changes: 21 additions & 2 deletions apps/base/dremio/dremio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,34 @@ spec:
values:
image: dremio/dremio-oss
imageTag: "25.2"
# Dremio Coordinator
coordinator:
# CPU & Memory
# Memory allocated to each coordinator, expressed in MB.
# CPU allocated to each coordinator, expressed in CPU cores.
cpu: 4
memory: 4096

# This count is used for slave coordinators only.
# The total number of coordinators will always be count + 1.
# If this is greater than zero then the client and flight ports on the master
# will be deactivated to steer these requests away from the master node.
count: 1

# Coordinator data volume size (applies to the master coordinator only).
# In most managed Kubernetes environments (AKS, GKE, etc.), the size of the disk has a direct impact on
# the provisioned and maximum performance of the disk.
volumeSize: 50Gi
storageClass: "longhorn-local"
executor:
count: 3
cpu: 4
memory: 4096
volumeSize: 128Gi
volumeSize: 50Gi
storageClass: longhorn-local
cloudCache:
volumes:
- size: 100Gi
- size: 50Gi
storageClass: "longhorn-local"
distStorage:
type: "aws"
Expand Down
4 changes: 2 additions & 2 deletions apps/staging/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ resources:
- ../base/traefik
- ../base/nessie
- ../base/dagster
- ../base/ray
#- ../base/ray
- ../base/cyberchef
- ../base/trino
#- ../base/elastic
- ../base/kubeflow
#- ../base/kubeflow
- ../base/forgejo
- ../base/dremio

0 comments on commit 2ced296

Please sign in to comment.