-
Notifications
You must be signed in to change notification settings - Fork 43
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add parents/ancestry methods #231
base: master
Are you sure you want to change the base?
Conversation
datacommons_client/endpoints/node.py
Outdated
result = {} | ||
|
||
# Use a thread pool to fetch ancestry graphs in parallel for each input entity | ||
with ThreadPoolExecutor(max_workers=ANCESTRY_MAX_WORKERS) as executor: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add the number of works as an optional argument to the fetch_entity_ancestry function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done as max_concurrent_requests
for a more user-friendly name. It defaults to ANCESTRY_MAX_WORKERS
|
||
|
||
@dataclass(frozen=True) | ||
class Parent(SerializableMixin): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think making the name Parent
more general. Maybe Entity
or Node
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @dwnoble!
Node
already exists. It's indeed more general.
The only reason why I created Parent
was to match the website API return format.
[
{
"dcid": "undata-geo/G00134000",
"name": "Americas",
"type": "GeoRegion"
},
{
"dcid": "northamerica",
"name": "North America",
"type": "Continent"
},
{
"dcid": "LatinAmericaAndCaribbean",
"name": "Latin America and the Caribbean",
"type": "UNGeoRegion"
},
{
"dcid": "CentralAmerica",
"name": "Central America (including Mexico)",
"type": "UNGeoRegion"
},
{
"dcid": "Earth",
"name": "World",
"type": "Place"
}
]
If you prefer, we could get rid of this Parent
class and just use Node
. The only downside is that divergence, but maybe that's ok. Let me know!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine re-using node, and eventually updating the website API response to use the node response as well
from datacommons_client.models.graph import AncestryMap | ||
from datacommons_client.models.graph import Parent | ||
|
||
PARENTS_MAX_WORKERS = 10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here- can this be an optional param for the user-facing function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already the case. Here's the function signature:
def build_ancestry_map(
root: str,
fetch_fn: Callable[[str], tuple[Parent, ...]],
max_workers: Optional[int] = PARENTS_MAX_WORKERS,
) -> tuple[str, AncestryMap]
Or did you mean something different?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking about adding it as a parameter to fetch_entity_ancestry
. Though that could get a little confusing having two concurrency params
Add ancestry tools
45316c5
to
8fccc33
Compare
This PR is part of a group of PRs which will bring some key features from the Data Commons website API to the client library (e.g #229, #230)
TL;DR
Fetch entity parents: A new Node method (
fetch_entity_parents
) which usescontainedInPlace
to get the immediate parents for a given entity or list of entities.Fetch entity ancestry: A new Node method
fetch_entity_ancestry
performs a parallel breadth-first traversal to construct the full ancestry chain for an entity — all the way up to Earth — and returns it in either flat or nested form.With this PR, I aimed to replicate the
/api/place/parent
of the website API. Under the hood, this endpoint relies on legacy calls to the REST V1 bulk info endpoint.Being able to get the full ancestry for an entity (or list of entities) is a very helpful feature. However, doing this through the Node endpoint requires recursively resolving each parent until you reach the root of the place graph (in this case always "Earth"). This PR introduces logic to make that process as efficient and easy to use as possible for users (and being careful not to make any repeated or unnecessary calls to the API).
build_ancestry_map
) to ensure we resolve ancestry level by level, starting from the root entity. This avoids recursion and makes parallel execution easier to manage and reason about.containedInPlace
, I usedThreadPoolExecutor
to fetch parent nodes in parallel. This drastically reduces total resolution time for large (e.g many entities) or deep ancestry chains (e.g. "Kampala" -> "Uganda" -> "Africa" -> "Earth").The data can be returned as two different types:
/api/place/parent
— for parity with the website version or cases when only the list of upstream places is needed.Example usage:
For entity parents
By itself, the above doesn't match the website endpoint, or provide a complete ancestry.
Full ancestry
Which can also be returned as a nested structure: