GithubHelp home page GithubHelp logo

Comments (9)

agentzh avatar agentzh commented on June 30, 2024 4

@Fr3DBr BTW, a much more efficient way of delaying your upstream request is using ngx_lua's access_by_lua_block directive:

location / {
    access_by_lua_block { ngx.sleep(5) }
    proxy_pass http://svr_backend;
    include proxy.inc;
}

It's much much more efficient than your current echo_sleep + echo_location combination, especially for large upstream responses.

from echo-nginx-module.

agentzh avatar agentzh commented on June 30, 2024 1

@Fr3DBr See

https://github.com/openresty/lua-nginx-module/#lua_check_client_abort

Read the document.

from echo-nginx-module.

agentzh avatar agentzh commented on June 30, 2024 1

@Fr3DBr BTW, you may find the lua-resty-limit-traffic library useful:

https://github.com/openresty/lua-resty-limit-traffic

It's shipped with OpenResty by default.

from echo-nginx-module.

agentzh avatar agentzh commented on June 30, 2024

@Fr3DBr In your case, the upstream request won't be sent until 5 sec is elapsed. Your web browser's "file being downloaded" is just its best guess and it's definitely untrue for your case here.

from echo-nginx-module.

agentzh avatar agentzh commented on June 30, 2024

BTW, sorry for the delay on my side.

from echo-nginx-module.

Fr3DBr avatar Fr3DBr commented on June 30, 2024

Hey @agentzh but, will this stop/pause any other requests while sleeping (parallelism) ?

from echo-nginx-module.

agentzh avatar agentzh commented on June 30, 2024

@Fr3DBr No, it's nonblocking. Read the documentation.

from echo-nginx-module.

Fr3DBr avatar Fr3DBr commented on June 30, 2024

@agentzh Ah, then this is fine, also do you have a way to detect in lua, if a connection was closed or not ? Or in case this is closed by the client, will it abort the current code execution just fine ?

from echo-nginx-module.

Fr3DBr avatar Fr3DBr commented on June 30, 2024

@agentzh Thank you very much. 👍

from echo-nginx-module.

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.