Uh oh!
There was an error while loading. Please reload this page.
[Enhancement](pyudf) add helper command to show more py info - #60751
Conversation
Thearas
commented
Feb 13, 2026
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
b063409 to
afd10e7Comparelinrrzqqq
commented
Feb 13, 2026
run buildall |
doris-robot
commented
Feb 13, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Feb 13, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
afd10e7 to
061fc3fComparelinrrzqqq
commented
Feb 14, 2026
run buildall |
doris-robot
commented
Feb 14, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Feb 14, 2026
TPC-H: Total hot run time: 29678 ms |
doris-robot
commented
Feb 14, 2026
TPC-DS: Total hot run time: 183191 ms |
hello-stephen
commented
Feb 14, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 14, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 14, 2026
FE Regression Coverage ReportIncrement line coverage |
linrrzqqq
commented
Feb 14, 2026
run p0 |
hello-stephen
commented
Feb 14, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 14, 2026
FE Regression Coverage ReportIncrement line coverage |
061fc3f to
2fbd02fComparelinrrzqqq
commented
Feb 15, 2026
run buildall |
doris-robot
commented
Feb 15, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 15, 2026
FE UT Coverage ReportIncrement line coverage |
doris-robot
commented
Feb 15, 2026
TPC-H: Total hot run time: 28826 ms |
doris-robot
commented
Feb 15, 2026
TPC-DS: Total hot run time: 183957 ms |
doris-robot
commented
Feb 15, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 15, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 15, 2026
FE Regression Coverage ReportIncrement line coverage |
| // Parse JSON output: [{"name": "pkg", "version": "1.0"}, ...] | ||
| // Simple JSON parsing without external library | ||
| // Each entry looks like: {"name": "package_name", "version": "1.2.3"} | ||
| static std::regex entry_re( |
| THROW_IF_ERROR(list_installed_packages(version, &packages)); | ||
| for (const auto& [name, ver] : packages) { | ||
| TPythonPackageInfo info; |
There was a problem hiding this comment.
implement the method in py env
linrrzqqq
commented
Feb 19, 2026
run buildall |
hello-stephen
commented
Feb 19, 2026
FE UT Coverage ReportIncrement line coverage |
hello-stephen
commented
Feb 22, 2026
FE Regression Coverage ReportIncrement line coverage |
1 similar comment
hello-stephen
commented
Feb 22, 2026
FE Regression Coverage ReportIncrement line coverage |
12c8db6 to
40a6281Comparelinrrzqqq
commented
Feb 23, 2026
run buildall |
hello-stephen
commented
Feb 23, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Feb 23, 2026
TPC-H: Total hot run time: 29071 ms |
doris-robot
commented
Feb 23, 2026
TPC-DS: Total hot run time: 183557 ms |
hello-stephen
commented
Feb 23, 2026
FE Regression Coverage ReportIncrement line coverage |
40a6281 to
0644a72Comparelinrrzqqq
commented
Feb 24, 2026
run buildall |
hello-stephen
commented
Feb 24, 2026
Cloud UT Coverage ReportIncrement line coverage Increment coverage report
|
doris-robot
commented
Feb 24, 2026
TPC-H: Total hot run time: 28715 ms |
doris-robot
commented
Feb 24, 2026
TPC-DS: Total hot run time: 183615 ms |
hello-stephen
commented
Feb 24, 2026
FE UT Coverage ReportIncrement line coverage |
doris-robot
commented
Feb 24, 2026
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 24, 2026
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
hello-stephen
commented
Feb 24, 2026
FE Regression Coverage ReportIncrement line coverage |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
Uh oh!
There was an error while loading. Please reload this page.
…60751) doc: apache/doris-website#3402 Add the auxiliary commands `SHOW PYTHON VERSIONS` and `SHOW PYTHON PACKAGES IN '<VERSION>'` to display more PythonUDF-related information. ```sql Doris> show python versions; +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ | Version | EnvName | EnvType | BasePath | ExecutablePath | +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ | 3.9.18 | py39 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py39 | /mnt/disk7/linzhenqi/miniconda3/envs/py39/bin/python | | 3.8.10 | py3810 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py3810 | /mnt/disk7/linzhenqi/miniconda3/envs/py3810/bin/python | | 3.12.11 | py312 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py312 | /mnt/disk7/linzhenqi/miniconda3/envs/py312/bin/python | +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ 3 rows in set (0.02 sec) Doris> show python packages in '3.9.18'; +-----------------+-------------+ | Package | Version | +-----------------+-------------+ | pyarrow | 21.0.0 | | Bottleneck | 1.4.2 | | jieba | 0.42.1 | | six | 1.17.0 | | wheel | 0.45.1 | | python-dateutil | 2.9.0.post0 | | tzdata | 2025.3 | | setuptools | 80.9.0 | | numpy | 2.0.1 | | psutil | 7.0.0 | | pandas | 2.3.3 | | mkl_random | 1.2.8 | | pip | 25.3 | | snownlp | 0.12.3 | | pytz | 2025.2 | | mkl_fft | 1.3.11 | | mkl-service | 2.4.0 | | numexpr | 2.10.1 | +-----------------+-------------+ ```
…60751) doc: apache/doris-website#3402 Add the auxiliary commands `SHOW PYTHON VERSIONS` and `SHOW PYTHON PACKAGES IN '<VERSION>'` to display more PythonUDF-related information. ```sql Doris> show python versions; +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ | Version | EnvName | EnvType | BasePath | ExecutablePath | +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ | 3.9.18 | py39 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py39 | /mnt/disk7/linzhenqi/miniconda3/envs/py39/bin/python | | 3.8.10 | py3810 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py3810 | /mnt/disk7/linzhenqi/miniconda3/envs/py3810/bin/python | | 3.12.11 | py312 | conda | /mnt/disk7/linzhenqi/miniconda3/envs/py312 | /mnt/disk7/linzhenqi/miniconda3/envs/py312/bin/python | +---------+---------+---------+---------------------------------------------+--------------------------------------------------------+ 3 rows in set (0.02 sec) Doris> show python packages in '3.9.18'; +-----------------+-------------+ | Package | Version | +-----------------+-------------+ | pyarrow | 21.0.0 | | Bottleneck | 1.4.2 | | jieba | 0.42.1 | | six | 1.17.0 | | wheel | 0.45.1 | | python-dateutil | 2.9.0.post0 | | tzdata | 2025.3 | | setuptools | 80.9.0 | | numpy | 2.0.1 | | psutil | 7.0.0 | | pandas | 2.3.3 | | mkl_random | 1.2.8 | | pip | 25.3 | | snownlp | 0.12.3 | | pytz | 2025.2 | | mkl_fft | 1.3.11 | | mkl-service | 2.4.0 | | numexpr | 2.10.1 | +-----------------+-------------+ ```
What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
Release note
doc: apache/doris-website#3402
Add the auxiliary commands
SHOW PYTHON VERSIONSandSHOW PYTHON PACKAGES IN '<VERSION>'to display more PythonUDF-related information.None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)