Arunodoy Banerjee
Arunodoy Banerjee
Implement feature gates tracking system to support data-driven decisions about eliminating beta stage for new features, as discussed in sig-architecture. Components added: - Feature gates SQL metric (metrics/kubernetes/feature_gates.sql) * Tracks...
- Add company-level aggregation queries using count(distinct e.id) to both kubernetes and shared project_developer_stats.sql - Prevents double-counting when multiple developers from same company work on same GitHub events - Ensures...
Replace percentile_disc(0.5) with avg() for median calculations to prevent misleading results when aggregating over larger time intervals. This addresses the issue where medians calculated over extended periods showed inflated values...
- Reduce All_All contribution threshold from 10x to 5x multiplier - Reduce RepoGroup_All contribution threshold from 5x to 2x multiplier - Reduce All_Country contribution threshold from 5x to 2x multiplier...
**Please** add a meaningful description for your change here ------------------------ Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily: - [ ]...
- Add docencoding UTF-8 option to Javadoc configuration in BeamModulePlugin - Replace U+2019 (RIGHT SINGLE QUOTATION MARK) with ASCII apostrophe in source files - Fixes rendering issue where Unicode apostrophes...
**Please** add a meaningful description for your change here ------------------------ Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily: - [ ]...
**Please** add a meaningful description for your change here ------------------------ Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily: - [ ]...
--- **^ Add meaningful description above** Read the **[Pull Request Guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#pull-request-guidelines)** for more information. In case of fundamental code changes, an Airflow Improvement Proposal ([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals)) is needed. In case of...
The update_xcom_entry endpoint was calling XComModel.serialize_value twice, causing values to be excessively serialized. This made the updated XCom values unusable when retrieved by tasks. Changes: - Removed duplicate XComModel.serialize_value call...