MoreRSS

site iconjdhao修改

在德国的机器学习工程师。在 NumPy、OpenCV 和 PIL 等工具以及 Matplotlib 等数据可视化工具方面经验丰富。
请复制 RSS 到你的阅读器,或快速订阅到 :

Inoreader Feedly Follow Feedbin Local Reader

jdhao的 RSS 预览

Guide on Exporting Opentelemetry Traces to GCP

2026-08-13 00:55:53

In this post, I want to share how to export the traces generated by your FastAPI application to the GCP observability platform.

OpenTelemetry Tracing for Your FastAPI application

2026-08-07 08:00:00

With OpenTelemetry, you can easily trace a single request across multiple services in a distributed system. In this post, I would like to share how you can set up OpenTelemetry tracing for your FastAPI application.

Vector Field Not Shown in Source in Elasticsearch?

2026-07-08 00:18:29

Recently, I was working on migrating our Elasticsearch cluster to serverless. We have an index where some field stores dense vectors used in KNN search.

Elasticsearch Dynamic Mapping Pitfalls

2026-07-04 00:23:25

In Elasticsearch, when you index document to an index, if you do not specify the mapping for the field, Elastic will use dynamic mapping to infer the data type for your field.

Manage uv.lock file with Renovate

2026-05-14 02:14:50

In our work, we are using renovate to update the dependency packages for Python projects. Previously when we are using good old pip and requirements.txt for package management, renovate works fine since it only needs to update the package version in requirements.txt. We switch to uv this year as our project management tool. Since uv uses pyproject.toml and uv.lock (lockfile) to ensure reproducible project setup, we have an issue that when renovate bot creates a PR for the package updates: it only changes pyproject.toml without updating uv.lock.

Set up Python Provider for Neovim

2026-05-12 01:16:27

To make python plugins work in Neovim, we need to set up the python provider properly. Usually, this means setting up the correct path to Python executable and also installing the pynvim – Neovim client for Python.