Giter Site home page Giter Site logo

Comments (9)

tomplus avatar tomplus commented on August 17, 2024 1

Correct me if I'm wrong but you want to have something like this:

create_namespaced_pod("pod-1", "ns-1", cb_success, cb_error)
create_namespaced_pod("pod-2", "ns-2", cb_success, cb_error)

so instead of using async_req i suggest you implement it in this way (draft):

def cb_helper(func_name, cb_success, cb_error, *args, **kwargs):
    try:
       result = func_name(*args, **kwargs)
    except Exception as ex:
       cb_error(ex)
    cb_success(result)

pool = with ThreadPool()
pool.apply_async(cb_helper, create_namespaced_pod, "pod-1", "ns-1", cb_success, cb_error)
pool.apply_async(cb_helper, create_namespaced_pod, "pod-2", "ns-2", cb_success, cb_error)    
....
....

so it uses synchronous requests but from threads so main thread is not blocked...

from python.

dirrao avatar dirrao commented on August 17, 2024

I would like to submit the PR if we align on this.

from python.

roycaihw avatar roycaihw commented on August 17, 2024

Upstream Kubernetes API doesn't support such callback mechanism AFAICT. Could you check with the upstream on this feature request?

from python.

dirrao avatar dirrao commented on August 17, 2024

@roycaihw
Async calls are submitted through python thread pool. Python thread pool does support callbacks.

Check api_client.py for the same

        if not async_req:
            return self.__call_api(resource_path, method,
                                   path_params, query_params, header_params,
                                   body, post_params, files,
                                   response_type, auth_settings,
                                   _return_http_data_only, collection_formats,
                                   _preload_content, _request_timeout, _host)

        return self.pool.apply_async(self.__call_api, (resource_path,
                                                       method, path_params,
                                                       query_params,
                                                       header_params, body,
                                                       post_params, files,
                                                       response_type,
                                                       auth_settings,
                                                       _return_http_data_only,
                                                       collection_formats,
                                                       _preload_content,
                                                       _request_timeout,
                                                       _host))

from python.

roycaihw avatar roycaihw commented on August 17, 2024

CC @tomplus Could you take a look?

from python.

tomplus avatar tomplus commented on August 17, 2024

apply_async returns AsyncResult so as you've written it doesn't support callbacks. These functions are auto-generated by OpenAPI Generator so it's not easy to introduce such change.

I can suggest using sync api calls but from a dedicated thread pool where you can add callbacks as you need. What do you think?

from python.

dirrao avatar dirrao commented on August 17, 2024

@tomplus
We were avoiding the synchronous requests due to performance reasons. It would be great if we make the requests asyncronous with callbacks support.

from python.

roycaihw avatar roycaihw commented on August 17, 2024

Marking this as resolved. Please let us know if you have more questions

/close

from python.

k8s-ci-robot avatar k8s-ci-robot commented on August 17, 2024

@roycaihw: Closing this issue.

In response to this:

Marking this as resolved. Please let us know if you have more questions

/close

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

from python.

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.