Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fields property #1374

Merged
merged 9 commits into from Dec 2, 2020
Merged

Add fields property #1374

merged 9 commits into from Dec 2, 2020

Conversation

ocelotl
Copy link
Contributor

@ocelotl ocelotl commented Nov 11, 2020

Fixes #1104

Fixes # (issue)

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

  • test_fields

Checklist:

  • Followed the style guidelines of this project
  • Changelogs have been updated
  • Unit tests have been added
  • Documentation has been updated

Tagging @carlosalberto as requested 馃憤

@ocelotl ocelotl requested a review from a team as a code owner November 11, 2020 01:43
@ocelotl ocelotl requested review from codeboten and hectorhdzg and removed request for a team November 11, 2020 01:43
@ocelotl ocelotl self-assigned this Nov 11, 2020
@ocelotl ocelotl added api Affects the API package. sdk Affects the SDK package. labels Nov 11, 2020
@ocelotl ocelotl force-pushed the issue_1104 branch 10 times, most recently from cba1c06 to 08d86fb Compare November 11, 2020 03:16
Copy link
Contributor

@codeboten codeboten left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is looking pretty good! Just a couple of questions I'd like to have answered before I approve

tato.py Outdated Show resolved Hide resolved

for propagator in self._propagators:
for field in propagator.fields:
composite_fields.add(field)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is the behaviour for the composite propagator specified in the spec?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it is, I tried to replicate the Go implementation with one particular difference. In this implementation a set is returned instead of a list. There is no defined order for these fields (these fields may be called in inject in an arbitrary order and even if this order is constant it has no relation with the fields themselves), so an ordered sequence like a list makes no sense. Also, (if I understand correctly) the intention of this attribute is to allow the user to tell if a certain field is also used in inject. That is an in operation that has a better (O(1)) performance in a set than in a list (O(N)).

@lzchen lzchen self-assigned this Nov 12, 2020
@ocelotl ocelotl force-pushed the issue_1104 branch 2 times, most recently from 19ee9fa to 7d432b9 Compare November 13, 2020 04:50
@ocelotl ocelotl force-pushed the issue_1104 branch 2 times, most recently from 579af1a to 92ccbf1 Compare November 13, 2020 19:19
Copy link
Contributor

@codeboten codeboten left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for addressing my comments.

@ocelotl ocelotl force-pushed the issue_1104 branch 2 times, most recently from 1ff26a1 to c76a8f9 Compare December 1, 2020 00:23
@@ -2,6 +2,8 @@

## Unreleased

- Add `fields` to propagators ([#1374](https://github.com/open-telemetry/opentelemetry-python/pull/1374))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR link should probably go on a new line

@lzchen lzchen merged commit 50f5c6c into open-telemetry:master Dec 2, 2020
RC1 automation moved this from In progress to Done Dec 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api Affects the API package. sdk Affects the SDK package.
Projects
No open projects
RC1
Done
Development

Successfully merging this pull request may close these issues.

Propagation: TextMap propagator must provide predefined propagation fields
4 participants