Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

Expose get_composite_estimate() on hll_sketch in the Python binding

Đang mở Phù hợp với người mới
#68 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
2/5
Thời gian dự kiến
1-3 giờ
Mức phù hợp với người mới
78/100
Loại issue
Tính năng
Độ rõ ràng
Đặc tả rõ ràng
Mức độ hoạt động
Sôi nổi
Công nghệ
cpp, java, python
Lĩnh vực
api

Hướng nghiên cứu

Bắt đầu trong src/hll_wrapper.cpp và tìm hiểu cách get_estimate() được cung cấp trên hll_sketch; so sánh binding đó với hll/include/hll.hpp và Java HllSketch API được tham chiếu. Công việc hoàn tất khi các bên gọi Python có thể gọi get_composite_estimate() và các kiểm tra liên quan của binding xác nhận rằng phương thức này khả dụng và trả về ước tính tổng hợp bên dưới.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

Request

The Python binding exposes get_estimate() only. Both reference implementations additionally expose the estimator that gives an order-independent result, and we would like it available from Python:

  • get_composite_estimate() — public in C++ (hll/include/hll.hpp, hll_sketch_alloc::get_composite_estimate()) and in Java (HllSketch.getCompositeEstimate(), "This is less accurate than the getEstimate() method and is automatically used when the sketch has gone through union operations where the more accurate HIP estimator cannot be used.")

This is the only method we are asking for as binding parity, since it is the only one of the three discussed below that is public in both C++ and Java.

Use case, and why it matters from Python specifically

In datasketches-cpp#374 a maintainer explains that HLL carries two estimators — HIP, which is more accurate but order-dependent, and the composite estimator, which is order-independent — and that:

The choice of estimator here lets you make a trade-off between accuracy and order-independence.

with getCompositeEstimate() named as the way to take the order-independent side. That guidance is clear and we would like to follow it.

From Python we currently cannot. On datasketches==5.2.0, dir(hll_sketch) returns 18 public methods, none of which selects an estimator, and src/hll_wrapper.cpp on main binds no such method. So a Python caller who needs reproducibility across merge orders has no supported way to ask for it, while the same program in C++ or Java does.

Minimal illustration — one sketch, one fixed multiset of 3,000 distinct strings, four insertion orders, no union anywhere:

datasketches 5.2.0 · lg_k=12 · HLL_8
  sorted       est=2993.822394   HipAccum=2993.82   KxQ0=2616.65   NumAtCurMin=1972
  shuffle(1)   est=2982.892501   HipAccum=2982.89   KxQ0=2616.65   NumAtCurMin=1972
  shuffle(2)   est=2995.259277   HipAccum=2995.26   KxQ0=2616.65   NumAtCurMin=1972
  shuffle(3)   est=2965.637291   HipAccum=2965.64   KxQ0=2616.65   NumAtCurMin=1972
from datasketches import hll_sketch, tgt_hll_type
items = [f"item-{i}" for i in range(3000)]
def build(order):
    s = hll_sketch(12, tgt_hll_type.HLL_8)
    for x in order: s.update(x)
    return s
# same multiset, different insertion order -> different get_estimate()

Register state (KxQ0, NumAtCurMin, read from to_string()) is identical across all four; the reported estimate tracks HipAccum. Same-order runs are byte-for-byte deterministic across fresh processes. This is the documented HIP behaviour and we are not reporting it as a defect — it is simply the use case for wanting the other estimator.

Two related observations, offered separately
  1. get_hip_estimate() — mentioned in #374, but it does not appear in the current public C++ or Java API, so we are not requesting it as parity. Noting it only so the omission is deliberate rather than an oversight in this request.

  2. Out-of-order stateis_out_of_order_flag() is private in C++ and absent from the Java public API, so this is a new-API question rather than parity. It would nonetheless be useful to a caller: it is the only way to know whether a returned get_estimate() is currently order-dependent. Today it is reachable from Python only by string-matching to_string(). Entirely at your discretion, and happy to drop it.

A documentation question, if it's welcome here

The Sketch Criteria page lists as a required property:

Order Insensitive: Results independent of item presentation order

Read literally, that is difficult to reconcile with #374 in the case where getEstimate() returns HIP — including for a single sketch fed raw input, as above, with no union involved. Would it be worth qualifying that wording for HLL when the HIP estimator is in use? Happy to open this separately if it would be better tracked on its own.

Environment

datasketches 5.2.0 (current release) · Python 3.12 · lg_k=12 · HLL_8

Ngôn ngữ chính
Jupyter Notebook
Star
46
Fork
9
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của apache/datasketches-python

Tất cả issue của apache/datasketches-python

Issue tương tự

Thêm issue về Backend & API Design

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.