Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-19 Thread via GitHub


shangxinli commented on code in PR #18729:
URL: https://github.com/apache/hudi/pull/18729#discussion_r3266785021


##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/hudi_vector_search_batch_demo.py:
##
@@ -0,0 +1,713 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+"""
+Hudi BATCH vector search demo — certifies `hudi_vector_search_batch` at non-
+trivial scale against a numpy ground-truth oracle.
+
+Sibling to `hudi_sql_vector_blob_demo.py` (single-query). Same dataset, same
+embedding model, same Hudi DDL — but the search step is the **table-to-table**
+batch TVF described in RFC-102:
+
+  SELECT *
+  FROM hudi_vector_search_batch(
+  'pets_batch_corpus_',  'embedding',
+  'pets_batch_queries_', 'embedding',
+  k, 'cosine')
+
+Flow:
+  1. Load N_CORPUS + N_QUERIES Oxford-IIIT Pet images.
+  2. Generate L2-normalized embeddings with `mobilenetv3_small_100`.
+  3. Split into corpus (N_CORPUS) + held-out queries (N_QUERIES).
+  4. Stage both via PyArrow, write each to its own Hudi table.
+  5. Run `hudi_vector_search_batch` and collect results.
+  6. **Oracle validation:** compute the cosine distance matrix in numpy from
+ the same embeddings and assert the TVF's top-k per query matches.
+  7. Render a result panel (one row per query showing its top-k matches).
+
+Env vars:
+  HUDI_BUNDLE_JAR (defaults to 
~/Downloads/hudi-spark3.5-bundle_2.12-1.2.0-rc1.jar)
+  HUDI_BASE_FILE_FORMAT   (default 'lance'; set to 'parquet' to use Parquet)
+  LANCE_BUNDLE_JAR(defaults to 
~/Downloads/lance-spark-bundle-3.5_2.12-0.4.0.jar; only used when 
HUDI_BASE_FILE_FORMAT=lance)
+  HUDI_BATCH_N_CORPUS (default 1000; rows in the corpus Hudi table)
+  HUDI_BATCH_N_QUERIES(default 20;   rows in the query Hudi table)
+  HUDI_BATCH_TOP_K(default 5)
+  PYSPARK_DRIVER_MEMORY   (default '4g')
+  HUDI_LANCE_DEMO_OUTDIR  (default './outputs')
+"""
+
+import io
+import os
+import shutil
+import sys
+from pathlib import Path
+
+# MUST run before any `pyspark` import — local-mode driver heap is fixed at
+# JVM launch time and cannot be raised via SparkSession.config() later.
+_driver_mem = os.getenv("PYSPARK_DRIVER_MEMORY", "4g")
+os.environ.setdefault(
+"PYSPARK_SUBMIT_ARGS",
+f"--driver-memory {_driver_mem} --conf spark.driver.maxResultSize=2g 
pyspark-shell",
+)
+
+import numpy as np
+import pyarrow as pa
+import pyarrow.parquet as pq
+import torch
+import timm
+from sklearn.preprocessing import normalize
+from PIL import Image
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt  # noqa: E402
+
+from torchvision.datasets import OxfordIIITPet  # noqa: E402
+
+from pyspark.sql import SparkSession
+
+
+# ==
+# CONFIGURATION
+# ==
+
+_file_format = os.getenv("HUDI_BASE_FILE_FORMAT", "lance").lower()
+if _file_format not in ("lance", "parquet"):
+sys.exit(f"ERROR: HUDI_BASE_FILE_FORMAT must be 'lance' or 'parquet', got 
'{_file_format}'")
+
+CONFIG = {
+"dataset": "OxfordIIITPet",
+"base_file_format": _file_format,
+"corpus_table_path": f"/tmp/hudi_batch_corpus_{_file_format}_pets",
+"corpus_table_name": f"pets_batch_corpus_{_file_format}",
+"queries_table_path": f"/tmp/hudi_batch_queries_{_file_format}_pets",
+"queries_table_name": f"pets_batch_queries_{_file_format}",
+"n_corpus": int(os.getenv("HUDI_BATCH_N_CORPUS", "1000")),
+"n_queries": int(os.getenv("HUDI_BATCH_N_QUERIES", "20")),
+"top_k": int(os.getenv("HUDI_BATCH_TOP_K", "5")),
+"embedding_model": "mobilenetv3_small_100",
+"output_dir": os.getenv("HUDI_LANCE_DEMO_OUTDIR", "./outputs"),
+"panel_filename": f"hudi_vector_search_batch_{_file_format}_results.png",
+"log_level": "ERROR",
+"hide_progress": True,
+# Oracle tolerance: cosine distance computed on L2-normalized float32 
vectors
+# in numpy vs JVM-side DenseVector(Double) UDF. Float32 → Float64 widening 
+
+# different summation orders allow ~1e-5 deltas.
+"oracle_distance_tol": 1e-5,
+}
+
+BLOB_REFERENCE_CAST = (
+"struct"
+)
+
+
+# =

Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-19 Thread via GitHub


shangxinli commented on code in PR #18729:
URL: https://github.com/apache/hudi/pull/18729#discussion_r3266785021


##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/hudi_vector_search_batch_demo.py:
##
@@ -0,0 +1,713 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+"""
+Hudi BATCH vector search demo — certifies `hudi_vector_search_batch` at non-
+trivial scale against a numpy ground-truth oracle.
+
+Sibling to `hudi_sql_vector_blob_demo.py` (single-query). Same dataset, same
+embedding model, same Hudi DDL — but the search step is the **table-to-table**
+batch TVF described in RFC-102:
+
+  SELECT *
+  FROM hudi_vector_search_batch(
+  'pets_batch_corpus_',  'embedding',
+  'pets_batch_queries_', 'embedding',
+  k, 'cosine')
+
+Flow:
+  1. Load N_CORPUS + N_QUERIES Oxford-IIIT Pet images.
+  2. Generate L2-normalized embeddings with `mobilenetv3_small_100`.
+  3. Split into corpus (N_CORPUS) + held-out queries (N_QUERIES).
+  4. Stage both via PyArrow, write each to its own Hudi table.
+  5. Run `hudi_vector_search_batch` and collect results.
+  6. **Oracle validation:** compute the cosine distance matrix in numpy from
+ the same embeddings and assert the TVF's top-k per query matches.
+  7. Render a result panel (one row per query showing its top-k matches).
+
+Env vars:
+  HUDI_BUNDLE_JAR (defaults to 
~/Downloads/hudi-spark3.5-bundle_2.12-1.2.0-rc1.jar)
+  HUDI_BASE_FILE_FORMAT   (default 'lance'; set to 'parquet' to use Parquet)
+  LANCE_BUNDLE_JAR(defaults to 
~/Downloads/lance-spark-bundle-3.5_2.12-0.4.0.jar; only used when 
HUDI_BASE_FILE_FORMAT=lance)
+  HUDI_BATCH_N_CORPUS (default 1000; rows in the corpus Hudi table)
+  HUDI_BATCH_N_QUERIES(default 20;   rows in the query Hudi table)
+  HUDI_BATCH_TOP_K(default 5)
+  PYSPARK_DRIVER_MEMORY   (default '4g')
+  HUDI_LANCE_DEMO_OUTDIR  (default './outputs')
+"""
+
+import io
+import os
+import shutil
+import sys
+from pathlib import Path
+
+# MUST run before any `pyspark` import — local-mode driver heap is fixed at
+# JVM launch time and cannot be raised via SparkSession.config() later.
+_driver_mem = os.getenv("PYSPARK_DRIVER_MEMORY", "4g")
+os.environ.setdefault(
+"PYSPARK_SUBMIT_ARGS",
+f"--driver-memory {_driver_mem} --conf spark.driver.maxResultSize=2g 
pyspark-shell",
+)
+
+import numpy as np
+import pyarrow as pa
+import pyarrow.parquet as pq
+import torch
+import timm
+from sklearn.preprocessing import normalize
+from PIL import Image
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt  # noqa: E402
+
+from torchvision.datasets import OxfordIIITPet  # noqa: E402
+
+from pyspark.sql import SparkSession
+
+
+# ==
+# CONFIGURATION
+# ==
+
+_file_format = os.getenv("HUDI_BASE_FILE_FORMAT", "lance").lower()
+if _file_format not in ("lance", "parquet"):
+sys.exit(f"ERROR: HUDI_BASE_FILE_FORMAT must be 'lance' or 'parquet', got 
'{_file_format}'")
+
+CONFIG = {
+"dataset": "OxfordIIITPet",
+"base_file_format": _file_format,
+"corpus_table_path": f"/tmp/hudi_batch_corpus_{_file_format}_pets",
+"corpus_table_name": f"pets_batch_corpus_{_file_format}",
+"queries_table_path": f"/tmp/hudi_batch_queries_{_file_format}_pets",
+"queries_table_name": f"pets_batch_queries_{_file_format}",
+"n_corpus": int(os.getenv("HUDI_BATCH_N_CORPUS", "1000")),
+"n_queries": int(os.getenv("HUDI_BATCH_N_QUERIES", "20")),
+"top_k": int(os.getenv("HUDI_BATCH_TOP_K", "5")),
+"embedding_model": "mobilenetv3_small_100",
+"output_dir": os.getenv("HUDI_LANCE_DEMO_OUTDIR", "./outputs"),
+"panel_filename": f"hudi_vector_search_batch_{_file_format}_results.png",
+"log_level": "ERROR",
+"hide_progress": True,
+# Oracle tolerance: cosine distance computed on L2-normalized float32 
vectors
+# in numpy vs JVM-side DenseVector(Double) UDF. Float32 → Float64 widening 
+
+# different summation orders allow ~1e-5 deltas.
+"oracle_distance_tol": 1e-5,
+}
+
+BLOB_REFERENCE_CAST = (
+"struct"
+)
+
+
+# =

Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-19 Thread via GitHub


shangxinli commented on code in PR #18729:
URL: https://github.com/apache/hudi/pull/18729#discussion_r3266785021


##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/hudi_vector_search_batch_demo.py:
##
@@ -0,0 +1,713 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+"""
+Hudi BATCH vector search demo — certifies `hudi_vector_search_batch` at non-
+trivial scale against a numpy ground-truth oracle.
+
+Sibling to `hudi_sql_vector_blob_demo.py` (single-query). Same dataset, same
+embedding model, same Hudi DDL — but the search step is the **table-to-table**
+batch TVF described in RFC-102:
+
+  SELECT *
+  FROM hudi_vector_search_batch(
+  'pets_batch_corpus_',  'embedding',
+  'pets_batch_queries_', 'embedding',
+  k, 'cosine')
+
+Flow:
+  1. Load N_CORPUS + N_QUERIES Oxford-IIIT Pet images.
+  2. Generate L2-normalized embeddings with `mobilenetv3_small_100`.
+  3. Split into corpus (N_CORPUS) + held-out queries (N_QUERIES).
+  4. Stage both via PyArrow, write each to its own Hudi table.
+  5. Run `hudi_vector_search_batch` and collect results.
+  6. **Oracle validation:** compute the cosine distance matrix in numpy from
+ the same embeddings and assert the TVF's top-k per query matches.
+  7. Render a result panel (one row per query showing its top-k matches).
+
+Env vars:
+  HUDI_BUNDLE_JAR (defaults to 
~/Downloads/hudi-spark3.5-bundle_2.12-1.2.0-rc1.jar)
+  HUDI_BASE_FILE_FORMAT   (default 'lance'; set to 'parquet' to use Parquet)
+  LANCE_BUNDLE_JAR(defaults to 
~/Downloads/lance-spark-bundle-3.5_2.12-0.4.0.jar; only used when 
HUDI_BASE_FILE_FORMAT=lance)
+  HUDI_BATCH_N_CORPUS (default 1000; rows in the corpus Hudi table)
+  HUDI_BATCH_N_QUERIES(default 20;   rows in the query Hudi table)
+  HUDI_BATCH_TOP_K(default 5)
+  PYSPARK_DRIVER_MEMORY   (default '4g')
+  HUDI_LANCE_DEMO_OUTDIR  (default './outputs')
+"""
+
+import io
+import os
+import shutil
+import sys
+from pathlib import Path
+
+# MUST run before any `pyspark` import — local-mode driver heap is fixed at
+# JVM launch time and cannot be raised via SparkSession.config() later.
+_driver_mem = os.getenv("PYSPARK_DRIVER_MEMORY", "4g")
+os.environ.setdefault(
+"PYSPARK_SUBMIT_ARGS",
+f"--driver-memory {_driver_mem} --conf spark.driver.maxResultSize=2g 
pyspark-shell",
+)
+
+import numpy as np
+import pyarrow as pa
+import pyarrow.parquet as pq
+import torch
+import timm
+from sklearn.preprocessing import normalize
+from PIL import Image
+
+import matplotlib
+
+matplotlib.use("Agg")
+import matplotlib.pyplot as plt  # noqa: E402
+
+from torchvision.datasets import OxfordIIITPet  # noqa: E402
+
+from pyspark.sql import SparkSession
+
+
+# ==
+# CONFIGURATION
+# ==
+
+_file_format = os.getenv("HUDI_BASE_FILE_FORMAT", "lance").lower()
+if _file_format not in ("lance", "parquet"):
+sys.exit(f"ERROR: HUDI_BASE_FILE_FORMAT must be 'lance' or 'parquet', got 
'{_file_format}'")
+
+CONFIG = {
+"dataset": "OxfordIIITPet",
+"base_file_format": _file_format,
+"corpus_table_path": f"/tmp/hudi_batch_corpus_{_file_format}_pets",
+"corpus_table_name": f"pets_batch_corpus_{_file_format}",
+"queries_table_path": f"/tmp/hudi_batch_queries_{_file_format}_pets",
+"queries_table_name": f"pets_batch_queries_{_file_format}",
+"n_corpus": int(os.getenv("HUDI_BATCH_N_CORPUS", "1000")),
+"n_queries": int(os.getenv("HUDI_BATCH_N_QUERIES", "20")),
+"top_k": int(os.getenv("HUDI_BATCH_TOP_K", "5")),
+"embedding_model": "mobilenetv3_small_100",
+"output_dir": os.getenv("HUDI_LANCE_DEMO_OUTDIR", "./outputs"),
+"panel_filename": f"hudi_vector_search_batch_{_file_format}_results.png",
+"log_level": "ERROR",
+"hide_progress": True,
+# Oracle tolerance: cosine distance computed on L2-normalized float32 
vectors
+# in numpy vs JVM-side DenseVector(Double) UDF. Float32 → Float64 widening 
+
+# different summation orders allow ~1e-5 deltas.
+"oracle_distance_tol": 1e-5,
+}
+
+BLOB_REFERENCE_CAST = (
+"struct"
+)
+
+
+# =

Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


hudi-bot commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4446001918

   
   ## CI report:
   
   * 1b20e977debc99842d3336aba0abbd8e4b9095c0 Azure: 
[SUCCESS](https://dev.azure.com/apachehudi/a1a51da7-8592-47d4-88dc-fd67bed336bb/_build/results?buildId=13960)
 
   
   
   Bot commands
 @hudi-bot supports the following commands:
   
- `@hudi-bot run azure` re-run the last Azure build
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445867615

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 67.39%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   67.39%   -0.69% 
   + Complexity2894028730 -210 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575794984 -773 
   - Misses3703037992 +962 
   - Partials   7859 7959 +100 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `45.53% <ø> (-3.12%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 199 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445987324

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.15%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.15%   +0.07% 
   - Complexity2894029037  +97 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796058 +301 
   + Misses3703036980  -50 
   - Partials   7859 7897  +38 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `49.01% <ø> (+0.37%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 78 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445935823

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.15%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.15%   +0.07% 
   - Complexity2894029037  +97 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796058 +301 
   + Misses3703036980  -50 
   - Partials   7859 7897  +38 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `49.01% <ø> (+0.36%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 78 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445890888

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.15%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.15%   +0.07% 
   - Complexity2894029036  +96 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796056 +299 
   + Misses3703036980  -50 
   - Partials   7859 7899  +40 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.98% <ø> (+0.33%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 80 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445886764

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.15%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.15%   +0.07% 
   - Complexity2894029036  +96 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796054 +297 
   + Misses3703036982  -48 
   - Partials   7859 7899  +40 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.95% <ø> (+0.30%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 82 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445882190

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.15%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.15%   +0.07% 
   - Complexity2894029036  +96 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796054 +297 
   + Misses3703036982  -48 
   - Partials   7859 7899  +40 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.92% <ø> (+0.28%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 82 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445872340

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.14%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.14%   +0.06% 
   - Complexity2894029035  +95 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796046 +289 
   + Misses3703036990  -40 
   - Partials   7859 7899  +40 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.89% <ø> (+0.24%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 81 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445874729

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 68.14%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   + Coverage 68.08%   68.14%   +0.06% 
   - Complexity2894029035  +95 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   + Hits  9575796046 +289 
   + Misses3703036990  -40 
   - Partials   7859 7899  +40 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.89% <ø> (+0.24%)` | :arrow_up: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 81 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445868293

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 67.39%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   67.39%   -0.69% 
   + Complexity2894028730 -210 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575794984 -773 
   - Misses3703037992 +962 
   - Partials   7859 7959 +100 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `45.53% <ø> (-3.12%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.90% <ø> (+0.14%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 199 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445861605

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 67.32%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   67.32%   -0.76% 
   + Complexity2894028689 -251 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575794891 -866 
   - Misses3703038110+1080 
   - Partials   7859 7934  +75 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `45.32% <ø> (-3.32%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.83% <ø> (+0.07%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 208 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445863300

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 67.32%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   67.32%   -0.76% 
   + Complexity2894028689 -251 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575794891 -866 
   - Misses3703038110+1080 
   - Partials   7859 7934  +75 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `45.32% <ø> (-3.32%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.83% <ø> (+0.07%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 208 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445854557

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 67.10%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   67.10%   -0.99% 
   + Complexity2894028565 -375 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575794568-1189 
   - Misses3703038467+1437 
   - Partials   7859 7900  +41 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.44% <ø> (-4.20%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.83% <ø> (+0.07%)` | :arrow_up: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 244 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445844808

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 65.36%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   65.36%   -2.73% 
   + Complexity2894027819-1121 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575792119-3638 
   - Misses3703040878+3848 
   - Partials   7859 7938  +79 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.74% <ø> (-0.02%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 420 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445830149

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 65.33%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   65.33%   -2.76% 
   + Complexity2894027819-1121 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575792076-3681 
   - Misses3703040889+3859 
   - Partials   7859 7970 +111 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.69% <ø> (-0.07%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 435 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445813783

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 65.28%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   65.28%   -2.80% 
   + Complexity2894027788-1152 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575792011-3746 
   - Misses3703040967+3937 
   - Partials   7859 7957  +98 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.61% <ø> (-0.15%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 439 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445771499

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 48.31%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 24 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|5|
   >|spark-java-tests|18|3|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   48.31%   -19.77% 
   + Complexity2894016884-12056 
   =
 Files  2519 2028  -491 
 Lines140646   114681-25965 
 Branches  1742714700 -2727 
   =
   - Hits  9575755407-40350 
   - Misses3703053296+16266 
   + Partials   7859 5978 -1881 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.40% <ø> (-16.24%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.83% <ø> (-11.94%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1581 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445808759

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 65.14%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   65.14%   -2.94% 
   + Complexity2894027722-1218 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575791812-3945 
   - Misses3703041169+4139 
   - Partials   7859 7954  +95 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.31% <ø> (-0.45%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 464 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445793340

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 60.88%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 18 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|6|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   60.88%   -7.21% 
   + Complexity2894025915-3025 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575785803-9954 
   - Misses3703047607   +10577 
   + Partials   7859 7525 -334 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 617 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445787673

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 58.49%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 20 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|5|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   58.49%   -9.60% 
   + Complexity2894024955-3985 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575782434   -13323 
   - Misses3703051131   +14101 
   + Partials   7859 7370 -489 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 732 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445791335

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 60.88%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 19 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|5|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@ Coverage Diff  @@
   ## master   #18729  +/-   ##
   
   - Coverage 68.08%   60.88%   -7.21% 
   + Complexity2894025915-3025 
   
 Files  2519 2516   -3 
 Lines140646   140935 +289 
 Branches  1742717475  +48 
   
   - Hits  9575785803-9954 
   - Misses3703047607   +10577 
   + Partials   7859 7525 -334 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.41% <ø> (+0.05%)` | :arrow_up: |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `37.62% <ø> (-0.07%)` | :arrow_down: |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 617 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445783282

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 47.92%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 21 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|5|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   47.92%   -20.17% 
   + Complexity2894017138-11802 
   =
 Files  2519 2049  -470 
 Lines140646   117170-23476 
 Branches  1742715237 -2190 
   =
   - Hits  9575756148-39609 
   - Misses3703054848+17818 
   + Partials   7859 6174 -1685 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `31.62% <ø> (-17.02%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1569 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445781177

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 47.89%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 22 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|4|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   47.89%   -20.20% 
   + Complexity2894017129-11811 
   =
 Files  2519 2049  -470 
 Lines140646   117170-23476 
 Branches  1742715237 -2190 
   =
   - Hits  9575756116-39641 
   - Misses3703054877+17847 
   + Partials   7859 6177 -1682 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.01% <ø> (-16.63%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1569 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445779954

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 47.89%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 22 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|6|
   >|spark-java-tests|18|4|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   47.89%   -20.20% 
   + Complexity2894017129-11811 
   =
 Files  2519 2049  -470 
 Lines140646   117170-23476 
 Branches  1742715237 -2190 
   =
   - Hits  9575756116-39641 
   - Misses3703054877+17847 
   + Partials   7859 6177 -1682 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.01% <ø> (-16.63%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.73% <ø> (-12.03%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1569 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445773864

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 48.31%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 24 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|5|
   >|spark-java-tests|18|3|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   48.31%   -19.77% 
   + Complexity2894016884-12056 
   =
 Files  2519 2028  -491 
 Lines140646   114681-25965 
 Branches  1742714700 -2727 
   =
   - Hits  9575755407-40350 
   - Misses3703053296+16266 
   + Partials   7859 5978 -1881 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.40% <ø> (-16.24%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.83% <ø> (-11.94%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1581 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445764246

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 47.71%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 28 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|2|
   >|spark-java-tests|18|2|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   47.71%   -20.38% 
   + Complexity2894016583-12357 
   =
 Files  2519 2028  -491 
 Lines140646   114676-25970 
 Branches  1742714694 -2733 
   =
   - Hits  9575754712-41045 
   - Misses3703054177+17147 
   + Partials   7859 5787 -2072 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.75% <ø> (-15.89%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.14% <ø> (-11.62%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1592 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445766937

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 47.71%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 27 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|3|
   >|spark-java-tests|18|2|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   47.71%   -20.37% 
   + Complexity2894016583-12357 
   =
 Files  2519 2028  -491 
 Lines140646   114681-25965 
 Branches  1742714700 -2727 
   =
   - Hits  9575754723-41034 
   - Misses3703054175+17145 
   + Partials   7859 5783 -2076 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.75% <ø> (-15.89%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.16% <ø> (-11.61%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1587 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445757255

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 48.11%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 29 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|1|
   >|spark-java-tests|18|2|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   48.11%   -19.97% 
   + Complexity2894016374-12566 
   =
 Files  2519 2010  -509 
 Lines140646   112288-28358 
 Branches  1742714182 -3245 
   =
   - Hits  9575754029-41728 
   - Misses3703052646+15616 
   + Partials   7859 5613 -2246 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.75% <ø> (-15.89%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.19% <ø> (-11.57%)` | :arrow_down: |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1604 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445742826

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 44.93%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 30 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|0|
   >|spark-java-tests|18|2|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   44.93%   -23.15% 
   + Complexity2894015038-13902 
   =
 Files  2519 1993  -526 
 Lines140646   109847-30799 
 Branches  1742713646 -3781 
   =
   - Hits  9575749360-46397 
   - Misses3703055397+18367 
   + Partials   7859 5090 -2769 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `32.75% <ø> (-15.89%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1689 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445742250

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 45.61%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 31 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-scala-tests|12|0|
   >|spark-java-tests|18|1|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   45.61%   -22.47% 
   + Complexity2894014926-14014 
   =
 Files  2519 1966  -553 
 Lines140646   107158-33488 
 Branches  1742713062 -4365 
   =
   - Hits  9575748885-46872 
   - Misses3703053264+16234 
   + Partials   7859 5009 -2850 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `48.36% <ø> (-0.08%)` | :arrow_down: |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.06% <ø> (-15.59%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1721 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445741519

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 39.11%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 32 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-client-hadoop-common|1|0|
   >|spark-scala-tests|12|0|
   >|spark-java-tests|18|1|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   39.11%   -28.98% 
   + Complexity2894012409-16531 
   =
 Files  2519 1966  -553 
 Lines140646   107132-33514 
 Branches  1742713041 -4386 
   =
   - Hits  9575741900-53857 
   - Misses3703060279+23249 
   + Partials   7859 4953 -2906 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `33.06% <ø> (-15.59%)` | :arrow_down: |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 1933 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


codecov-commenter commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445636663

   ## 
[Codecov](https://app.codecov.io/gh/apache/hudi/pull/18729?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 Report
   :white_check_mark: All modified and coverable lines are covered by tests.
   :white_check_mark: Project coverage is 44.99%. Comparing base 
([`4d0e9cd`](https://app.codecov.io/gh/apache/hudi/commit/4d0e9cd47f9e70564dee2ea0718f8272d8eb4df4?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache))
 to head 
([`1b20e97`](https://app.codecov.io/gh/apache/hudi/commit/1b20e977debc99842d3336aba0abbd8e4b9095c0?dropdown=coverage&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)).
   :warning: Report is 21 commits behind head on master.
   > :exclamation:  There is a different number of reports uploaded between 
BASE (4d0e9cd) and HEAD (1b20e97). Click for more details.
   > 
   > HEAD has 33 uploads less than BASE
   >
   >| Flag | BASE (4d0e9cd) | HEAD (1b20e97) |
   >|--|--|--|
   >|spark-client-hadoop-common|1|0|
   >|spark-scala-tests|12|0|
   >|spark-java-tests|18|0|
   >|common-and-other-modules|1|0|
   >|utilities|1|0|
   >
   
   Additional details and impacted files
   
   
   
   ```diff
   @@  Coverage Diff  @@
   ## master   #18729   +/-   ##
   =
   - Coverage 68.08%   44.99%   -23.10% 
   + Complexity28940 8566-20374 
   =
 Files  2519 1202 -1317 
 Lines14064662805-77841 
 Branches  17427 6809-10618 
   =
   - Hits  9575728258-67499 
   + Misses3703031430 -5600 
   + Partials   7859 3117 -4742 
   ```
   
   | 
[Flag](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | Coverage Δ | |
   |---|---|---|
   | 
[common-and-other-modules](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[hadoop-mr-java-client](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `44.99% <ø> (+0.02%)` | :arrow_up: |
   | 
[spark-client-hadoop-common](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[spark-java-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[spark-scala-tests](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   | 
[utilities](https://app.codecov.io/gh/apache/hudi/pull/18729/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
 | `?` | |
   
   Flags with carried forward coverage won't be shown. [Click 
here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#carryforward-flags-in-the-pull-request-comment)
 to find out more.
   [see 2123 files with indirect coverage 
changes](https://app.codecov.io/gh/apache/hudi/pull/18729/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
   
:rocket: New features to boost your workflow: 
   
   - :snowflake: [Test 
Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, 
report on failures, and find test suite problems.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


hudi-bot commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445600490

   
   ## CI report:
   
   * 1b20e977debc99842d3336aba0abbd8e4b9095c0 Azure: 
[PENDING](https://dev.azure.com/apachehudi/a1a51da7-8592-47d4-88dc-fd67bed336bb/_build/results?buildId=13960)
 
   
   
   Bot commands
 @hudi-bot supports the following commands:
   
- `@hudi-bot run azure` re-run the last Azure build
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


hudi-bot commented on PR #18729:
URL: https://github.com/apache/hudi/pull/18729#issuecomment-4445578773

   
   ## CI report:
   
   * 1b20e977debc99842d3336aba0abbd8e4b9095c0 UNKNOWN
   
   
   Bot commands
 @hudi-bot supports the following commands:
   
- `@hudi-bot run azure` re-run the last Azure build
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] docs: add batch vector search demo + notebook for RFC-102 [hudi]

2026-05-13 Thread via GitHub


hudi-agent commented on code in PR #18729:
URL: https://github.com/apache/hudi/pull/18729#discussion_r3237725438


##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/notebooks/README.md:
##
@@ -130,6 +130,29 @@ BASE_FILE_FORMAT  = "parquet"  # "parquet" or "lance"
 N_SAMPLES = 256
 ```
 
+### `04_vector_search_batch.ipynb` — supplemental: batch TVF certification
+
+Exercises **`hudi_vector_search_batch`** (RFC-102) — the table-to-table form
+of vector search. Builds two Hudi tables (corpus + queries) and asserts the
+TVF's top-K per query matches a **numpy ground-truth oracle** that recomputes
+the cosine distance matrix from the same embeddings. The notebook prints
+`CERTIFIED ✓` on success or fails the cell loudly on the first divergence.
+
+Toggle variables:
+
+```python
+BASE_FILE_FORMAT = "parquet"   # "parquet" or "lance"
+N_CORPUS = 1000 # corpus row count
+N_QUERIES= 20   # query table row count
+TOP_K= 5
+EMBEDDING_MODEL  = "mobilenetv3_small_100"
+```
+
+A `1000 × 20 × k=5` run produces a 20,000-row cross-join intermediate inside
+`BruteForceSearchAlgorithm.buildBatchQueryPlan`, large enough to exercise
+the broadcast + window-rank machinery while still completing in under a
+minute on a 4 GB driver heap.

Review Comment:
   🤖 The phrasing "a 20,000-row cross-join intermediate inside 
`BruteForceSearchAlgorithm.buildBatchQueryPlan`" exposes an internal 
implementation detail. Is this stable enough to document, or could the 
class/method name shift before RFC-102 ships? Linking the RFC or making this 
slightly more abstract (e.g. "a 20,000-row cross-join intermediate during the 
brute-force batch plan") would insulate the docs from future refactors.
   
   - AI-generated; verify before applying. React 👍/👎 to flag 
quality.



##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/notebooks/README.md:
##
@@ -130,6 +130,29 @@ BASE_FILE_FORMAT  = "parquet"  # "parquet" or "lance"
 N_SAMPLES = 256
 ```
 
+### `04_vector_search_batch.ipynb` — supplemental: batch TVF certification
+
+Exercises **`hudi_vector_search_batch`** (RFC-102) — the table-to-table form
+of vector search. Builds two Hudi tables (corpus + queries) and asserts the
+TVF's top-K per query matches a **numpy ground-truth oracle** that recomputes
+the cosine distance matrix from the same embeddings. The notebook prints
+`CERTIFIED ✓` on success or fails the cell loudly on the first divergence.
+
+Toggle variables:
+
+```python
+BASE_FILE_FORMAT = "parquet"   # "parquet" or "lance"
+N_CORPUS = 1000 # corpus row count
+N_QUERIES= 20   # query table row count
+TOP_K= 5
+EMBEDDING_MODEL  = "mobilenetv3_small_100"
+```
+
+A `1000 × 20 × k=5` run produces a 20,000-row cross-join intermediate inside
+`BruteForceSearchAlgorithm.buildBatchQueryPlan`, large enough to exercise

Review Comment:
   🤖 Minor: the cosine-distance oracle tolerance (`1e-5`, per the PR 
description) and the comparison semantics (top-K identity vs. 
score-within-tolerance) aren't mentioned here. A one-line note on what 
"matches" means in the oracle would help notebook readers understand exactly 
what `CERTIFIED ✓` is asserting — e.g., is it the set of top-K ids per query, 
the ranked order, the absolute distance values, or all three?
   
   - AI-generated; verify before applying. React 👍/👎 to flag 
quality.



##
hudi-examples/hudi-examples-spark/src/test/python/vector_blob_demo/README.md:
##
@@ -25,18 +25,20 @@ the Oxford-IIIT Pet dataset:
 2. **BLOB type (INLINE)** — image bytes are written as a Hudi BLOB struct
tagged with `hudi_type = "BLOB"`.
 3. **Vector search** — cosine similarity top-K via the
-   `hudi_vector_search` SQL table-valued function, backed by Lance files.
+   `hudi_vector_search` and `hudi_vector_search_batch` SQL table-valued
+   functions, backed by Lance files.
 
-## Three variants
+## Four variants
 
-The folder ships three scripts — each focused on a specific Hudi feature.
+The folder ships four scripts — each focused on a specific Hudi feature.
 Run them independently or in sequence for a full walkthrough.
 
 | File | Feature focus | Surface | Best for |
 |---|---|---|---|
 | [`hudi_blob_reader_demo.py`](hudi_blob_reader_demo.py) | **OUT_OF_LINE BLOBs 
+ `read_blob()`** — Hudi table stores references to bytes living in a separate 
container file; `read_blob()` resolves them on demand | Spark SQL | Showing the 
"lakehouse that references unstructured data without copying" story — tiny Hudi 
table, bytes elsewhere |
-| [`hudi_sql_vector_blob_demo.py`](hudi_sql_vector_blob_demo.py) | **INLINE 
BLOBs + VECTOR + `hudi_vector_search`** — bytes embedded in the Hudi base 
files, cosine similarity search via the TVF | Spark SQL — `CREATE TABLE ... 
(embedding VECTOR(N), image_bytes BLOB, ...) USING hudi`, 
`named_struct('type','INLINE', ...)`, `hudi_vector_se