Giter VIP home page Giter VIP logo

Comments (7)

bparees avatar bparees commented on August 19, 2024

it sounds like your scenario is effectively the same as running:

oc delete pod foo

and then while the command returns immediately, the pod keeps running for some period of time until it is killed. Is that accurate?

If so, i think the only way we can do better here is to offer a way for you to "wait for termination" when deleting objects (we'd have to watch/poll to see when the object actually goes away).

Note that your containers should be getting a SIGTERM when the delete occurs, so if they are continuing to do work, they are ignoring that signal (in which case k8s gives them about 30s to terminate before it hard-kills them). You might be able to modify the grace period such that the pod is immediately terminated instead, as a workaround.

from jenkins-plugin.

gabemontero avatar gabemontero commented on August 19, 2024

(will create trello card or incorporate into existing card if applicable once we lock down the detail or two @bparees asked @livelace about)

from jenkins-plugin.

livelace avatar livelace commented on August 19, 2024

and then while the command returns immediately, the pod keeps running for some period of time until it is killed. Is that accurate?

Yes, absolutely. The period depend on the node utilization, application inside pod ... etc In my case the problem is in parse xml file, which locked inside pod and the next Jenkins step can't handle it correctly.

If so, i think the only way we can do better here is to offer a way for you to "wait for termination" when deleting objects (we'd have to watch/poll to see when the object actually goes away).

It sounds good.

from jenkins-plugin.

gabemontero avatar gabemontero commented on August 19, 2024

I've opened this trello card to track this request ... closing github issue out per process.

from jenkins-plugin.

bparees avatar bparees commented on August 19, 2024

@livelace did you try setting the grace period to 0s? i'm curious if that would fix your problem:
https://github.com/kubernetes/kubernetes/blob/master/pkg/api/v1/types.go#L160-L164

from jenkins-plugin.

livelace avatar livelace commented on August 19, 2024

@bparees I didn't find the "deletionGracePeriodSeconds" parameter in my "ClusterPolicy". But I compared situation with deletion of objects.

  1. for type in route rc dc svc pod;do for i in $(oc get $type | awk '{print $1}');do oc delete $type $i;done;done - one Pod which did some operations (postStart hook) was alive for 1-2 minutes in the "Terminating" state.
  2. for type in route rc dc svc pod;do for i in $(oc get $type | awk '{print $1}');do oc delete --grace-period=0 $type $i;done;done - it killed all immediately

I think, that both parameters are needed, because someone wants to get completely finished writing of data, and someone wants to get the immediately deleted objects.

I want that it could complete all tasks and shift to the next step :)

from jenkins-plugin.

bparees avatar bparees commented on August 19, 2024

@bparees I didn't find the "deletionGracePeriodSeconds" parameter in my "ClusterPolicy"

it's not a cluster policy setting, it's a setting on each resource (in this case the pod resource).

But yes if your pods need that grace period to properly clean up then setting it to zero won't be a valid workaround for your scenario, unfortunately.

from jenkins-plugin.

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.