Giter Site home page Giter Site logo

Comments (17)

cuu508 avatar cuu508 commented on July 25, 2024 1

0.7.1-beta.1 works here with the Django dev server:

image

image

from runitor.

lakemike avatar lakemike commented on July 25, 2024 1

This fixed it. Thank you very much! πŸ‘

from runitor.

lakemike avatar lakemike commented on July 25, 2024

I have the same issue since v0.7 beta, also with a self-hosted healthcheck.io instance. So far, I am back to v0.6 stable.

from runitor.

fabMrc avatar fabMrc commented on July 25, 2024

Yes I read your issue yesterday
0.6.0 is working nice

from runitor.

bdd avatar bdd commented on July 25, 2024

Yes I read your issue yesterday

0.6.0 is working nice

If you read #14, then you saw the simple web server pasted to debug the operation. Can you by any chance run it to see if runitor is sensing the body?

Do you have an option to dump the entire HTTP session on the receiver side (the instance that handles requests to healthchecks.openstack.local)

I tried to reproduce the issue running a hosted HC instance locally in a container, and then on another machine in the same network, but couldn't reproduce the behavior you and @lakemike report.

Maybe we can ping @cuu508 to give us some hot debugging tips.

from runitor.

cuu508 avatar cuu508 commented on July 25, 2024

Looks like I can reproduce it when testing against a development version of Healthchecks running locally (manage.py runserver).

runitor 0.6.0 sends the Content-Length header but runitor 0.7.0 sends Transfer-Encoding: chunked.

I suspect the Django development server doesn't like "chunked"

0.6.0:

image

0.7.0:

image

@lakemike, @fabMrc what Dockerfile are you using?

from runitor.

cuu508 avatar cuu508 commented on July 25, 2024

Pretty sure it has something to do with the chunked encoding.

Command:

runitor-v0.7.0-linux-amd64 -uuid 3b0aabaa-9c33-4974-963a-c334dee68c66 --api-url http://localhost:8000/ping  -no-start-ping -- echo hi

If I use "Follow TCP stream" in Wireshark, I can see the chunk sizes sent by the client (3 and 0):

image

And the server complains about "3" – looks like it doesn't recognize it.

from runitor.

bdd avatar bdd commented on July 25, 2024

Thanks for the helpful pointers @cuu508.

No wonder I couldn't reproduce this because local container was behind Caddy and the remote install was behind Nginx.

It's a bummer Django's dev server doesn't fully support HTTP RFC but unless I'm overlooking a fact, runitor doesn't need to stream the request either. The decision to do chunked encoding comes from Go's HTTP library (here exactly https://golang.org/src/net/http/transfer.go#L167). I'll run a few sessiosn under debugger to see what underlying change from 0.6.0 to 0.7.0 changed code flow to take TE: chunked path and see if I can quickly publish a 0.7.1.

from runitor.

bdd avatar bdd commented on July 25, 2024

And the server complains about "3" – looks like it doesn't recognize it.

Yet it returns HTTP 200 as the status while the body mentions and HTTP 400 Bad Request?

from runitor.

bdd avatar bdd commented on July 25, 2024

Request preparation goes through a type switch at https://golang.org/src/net/http/request.go#L888.

With 0.7.0, the ping body is read from a ring buffer to implement tailing with limited resources. Because it doesn't match this limited type switch, library proceeds with assumption of not being able to deduce a header send time content length, resorting to transfer encoding.

I have two options: I either introduce a type switch in api.go:APIClient.Post for *internal.RingBuffer type, or in the main, I convert the ringbuffer to a *strings.Reader type, which will surely cause one more copy, but granted it's just 10K in most cases, it's nothing important.

I'll get back to this later today.

from runitor.

bdd avatar bdd commented on July 25, 2024

@cuu508 @fabMrc @lakemike can you try with 0.7.1-beta.1 binaries?

See the commit above, it's essentially a two line change, explicitly setting the content length to prevent conversion to chunked encoding.

I only tested this with tcpdump. I'd appreciate a πŸ‘ or πŸ‘Ž with Django devel server setup.

from runitor.

fabMrc avatar fabMrc commented on July 25, 2024

Fixed it works nice I receive log in email body and it is recorded in healtcheckio

from runitor.

cuu508 avatar cuu508 commented on July 25, 2024

@fabMrc are using Django development server in your setup? If so, please consider switching to gunicorn or uwsgi. From Django docs:

DO NOT USE THIS SERVER IN A PRODUCTION SETTING. It has not gone through security audits or performance tests. (And that’s how it’s gonna stay. We’re in the business of making Web frameworks, not Web servers, so improving this server to be able to handle a production environment is outside the scope of Django.)

from runitor.

fabMrc avatar fabMrc commented on July 25, 2024

No I am using uwsgi

from runitor.

cuu508 avatar cuu508 commented on July 25, 2024

No I am using uwsgi

TIL uwsgi doesn't yet automagically support chunked. It supports reading chunked request body using uwsgi-specific API. And there's a wsgi-manage-chunked-input configuration option coming, but looks like it is not here yet.

from runitor.

bdd avatar bdd commented on July 25, 2024

Alright, v0.7.1 is out for the two (maybe three) people in the world, running their instances behind toy servers and want to use runitor ;)

from runitor.

fabMrc avatar fabMrc commented on July 25, 2024

haha nice to be a VIP user ^^ I am using linuxserver/healthckeckio docker image

from runitor.

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.