Skip to content

Sharing and distributing log files/build metadata? #441

Open
@thoughtpolice

Description

@thoughtpolice

buck2 log is pretty cool, since it lets you look at what build commands a user ran and what their output is, and you can do things like log cmd or log replay to watch the build. Is it possible or recommended to 'share' these log files? What would some infrastructure for doing that look like? Maybe something like:

  • Users run buck2 build ... a bunch
  • Their logs can get synchronized to something like an HTTP endpoint (maybe a proxy that just fronts an S3 bucket)
  • Something goes wrong, a user asks for help, posts their Build ID.
  • You could run buck2 log cmd --trace-id $BUILD_ID to find out what happened.
  • This would (transparently?) download the log files from some endpoint (somehow?)

There could be other useful things to derive from this possibly, assuming you had these logs. For example, you could use these logs as a direct source of build analytic information from users to derive information about build times, etc.

Is there any kind of "thing" like this inside Meta? Does this seem interesting? To be truly useful it would need some support in the core executable, I think. It seems like something kind of like what buck2 rage does, right? Except I'd want it in all cases, not just failures.

I imagine this could look like the following for OSS users:

  • A .buckconfig key like buck2_logs.upload_address is set to https://buck2-logs.aseipp.dev/
  • All .pb.zst files are POST'd to $UPLOAD_ADDRESS/upload with their trace ID as a primary key, asynchronously, by the daemon
  • When a user says buck2 log cmd --trace-id $TRACE_ID, then:
    • HTTP GET $UPLOAD_ADDRESS/trace/$TRACE_ID
    • This should return a json object containing metadata and a new address to find the log content at
    • That new address is the public URL to download the .pb.zst file
    • This allows users to materialize logs on demand
  • Something something something authorization with a bearer token
  • Ideally the HTTP protocol is simple enough to implement "by hand" in a short afternoon

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions