Giter VIP home page Giter VIP logo

Comments (8)

bcressey avatar bcressey commented on June 7, 2024 2

Adjusted the title to reflect that the impact isn't Redis-specific in any way.

from bottlerocket.

rpkelly avatar rpkelly commented on June 7, 2024 1

With the release of Bottlerocket v1.19.4 the containerd issue should be addressed!

from bottlerocket.

evgeny-goldin avatar evgeny-goldin commented on June 7, 2024 1

Yeap, v1.19.4 has this issue fixed - all Redis Pods are starting normally using Karpenter's EC2NodeClass:

spec:
    amiFamily: Bottlerocket
    amiSelectorTerms:
    - name: bottlerocket-aws-k8s-1.28-x86_64-v1.19.4*
      owner: "651937483462"
    - name: bottlerocket-aws-k8s-1.28-aarch64-v1.19.4*
      owner: "651937483462"

from bottlerocket.

jessesuen avatar jessesuen commented on June 7, 2024

In case anyone is wondering what the exec probes are doing, it simply invoke redis-cli to issue a localhost redis PING command:

$ cat /health/redis_readiness.sh
response=$(
  redis-cli \
    -a "${AUTH}" --no-auth-warning \
    -h localhost \
    -p 6379 \
    ping
)
if [ "$response" != "PONG" ] ; then
  echo "$response"
  exit 1
fi
echo "response=$response"

from bottlerocket.

rpkelly avatar rpkelly commented on June 7, 2024

Thanks for the report! This seems similar #3866 reported yesterday. Could you please confirm if this is occurring consistently or intermittently?

from bottlerocket.

jessesuen avatar jessesuen commented on June 7, 2024

Agree it seems similar to #3866.

It is intermittent. And weirdly, given enough time (30m), it the exec probe eventually succeeded.

Other notes, the actual resource usage was nowhere near CPU or memory limits of the node. It was one of the first thing we checked since based on past experience, exec probes can easily fail if the node ran out of CPU cycles to actually execute the probe in a timely manner.

from bottlerocket.

bcressey avatar bcressey commented on June 7, 2024

Likely this: containerd/containerd#10036

Let's try the repro case but 1.19.3 included the containerd 1.6.30 update so it lines up.

from bottlerocket.

bcressey avatar bcressey commented on June 7, 2024

Resolving now that 1.19.4 is out.

from bottlerocket.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.