I am sure this might be a rookie doubt, i am tryin...
# getting-started
t
I am sure this might be a rookie doubt, i am trying to setup pinot on azure, i spun up a 5 nodes kubernetes cluster on azure with B2s (2vcpu, 4gb memory) ie with sufficient memory but when i install pinot using helm , pinot-server doesn’t come up due to insufficient memory (each server requires 1 gb as per default values.yml)
m
Which step fails?
t
I think it was because I had total 5 nodes provisioned, on reducing server count to 1, it worked..
m
Ok
t
thanks
r
@Tanmay Varun configure limits for resource usage on each pinot component.
t
thanks @Rajat Yadav can you please share sample or links on how to do that on kubernetes pinot deployment or otherwise.
r
in the helm charts for every component there is resources config uncomment it and provide the limits according to the node resources u r using.
Copy code
resources:
    limits:
      cpu: 1
      memory: 8G
    requests:
      cpu: 100m
      memory: 256Mi
these type of config u have to provide in every pinot component.
t
Got it, thanks Rajat