Code Monkey home page Code Monkey logo

Comments (7)

MarSoft avatar MarSoft commented on August 17, 2024 2

Just for record: looks like in current version _max_subsegments can be publically changed by assigning to streaming_threshold property:

xray_recorder.streaming_threshold = 10

Also it is exposed as streaming_threshold argument to .configure() method.

from aws-xray-sdk-python.

haotianw465 avatar haotianw465 commented on August 17, 2024 1

Released as part of 0.96.

from aws-xray-sdk-python.

haotianw465 avatar haotianw465 commented on August 17, 2024

Hi, the SDK has thin layer modular design. The X-Ray recorder decides when to stream a segment (e.g. send out some closed children subsegments first) and the emitter simply executes what it is told to do. The default maximum number of subsegments it holds is set to 30: https://github.com/aws/aws-xray-sdk-python/blob/master/aws_xray_sdk/core/recorder.py#L46. The reason of using size of a subsegments array is that byte counting is expensive.

Depends on what do your segment look like 30 subsegments could still be large. You can modify it to a lower value so the streaming happens earlier and more frequent. This number is tested under UDP packet size 64KB but depend on your operating system configuration it might allow an even smaller packet pass through.

Hope it helps.

from aws-xray-sdk-python.

haotianw465 avatar haotianw465 commented on August 17, 2024

Close. Feel free to re-open for any additional comment.

from aws-xray-sdk-python.

thehesiod avatar thehesiod commented on August 17, 2024

I believe this is not configurable in xray-sdk, is this not the case? See https://github.com/aws/aws-xray-sdk-python/blob/master/aws_xray_sdk/core/recorder.py#L46

from aws-xray-sdk-python.

thehesiod avatar thehesiod commented on August 17, 2024

unfortunately I'm not allowed to re-open

from aws-xray-sdk-python.

haotianw465 avatar haotianw465 commented on August 17, 2024

Sorry about that. You are right. I confused it with our another SDK. The public interface configure() is missing a keyword argument for configuring this. Will add it to the next release. A PR is also welcome.

For workaround you can temporarily use xray_recorder._max_subsegments = 10 until the public interface is added.

from aws-xray-sdk-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.