This is an automated email from the ASF dual-hosted git repository.

yashmayya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 563d8c621a8 Fix typos (#17103)
563d8c621a8 is described below

commit 563d8c621a86960ff427aa5c466346e77dc144f6
Author: Akanksha kedia <[email protected]>
AuthorDate: Wed Oct 29 22:24:35 2025 +0530

    Fix typos (#17103)
---
 .../function/funnel/FunnelCountAggregationFunctionFactory.java    | 2 +-
 .../src/main/java/org/apache/pinot/core/util/GapfillUtils.java    | 2 +-
 .../tests/realtime/ingestion/BaseKinesisIntegrationTest.java      | 2 +-
 .../index/readers/forward/VarByteChunkForwardIndexReaderV4.java   | 2 +-
 .../java/org/apache/pinot/spi/env/PinotConfigurationTest.java     | 8 ++++----
 .../java/org/apache/pinot/tsdb/spi/TimeSeriesLogicalPlanner.java  | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git 
a/pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/FunnelCountAggregationFunctionFactory.java
 
b/pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/FunnelCountAggregationFunctionFactory.java
index dc9c14b3d4b..412c96148f9 100644
--- 
a/pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/FunnelCountAggregationFunctionFactory.java
+++ 
b/pinot-core/src/main/java/org/apache/pinot/core/query/aggregation/function/funnel/FunnelCountAggregationFunctionFactory.java
@@ -49,7 +49,7 @@ import org.roaringbitmap.RoaringBitmap;
  *  <li>'bitmap' (default): See DISTINCTCOUNTBITMAP at {@link 
DistinctCountBitmapAggregationFunction}
  *  <li>'theta_sketch': See DISTINCTCOUNTTHETASKETCH at {@link 
DistinctCountThetaSketchAggregationFunction}
  *  <li>'partitioned': See SEGMENTPARTITIONEDDISTINCTCOUNT {@link 
SegmentPartitionedDistinctCountAggregationFunction}
- *  <li>'sorted': sorted counts per segment then sums up. Only availabe in 
combination with 'partitioned'.
+ *  <li>'sorted': sorted counts per segment then sums up. Only available in 
combination with 'partitioned'.
  *  <li>'nominalEntries=4096': theta sketch configuration, default is 4096.
  *  </ul><p>
  */
diff --git 
a/pinot-core/src/main/java/org/apache/pinot/core/util/GapfillUtils.java 
b/pinot-core/src/main/java/org/apache/pinot/core/util/GapfillUtils.java
index d5e75de3f35..62dcd180f94 100644
--- a/pinot-core/src/main/java/org/apache/pinot/core/util/GapfillUtils.java
+++ b/pinot-core/src/main/java/org/apache/pinot/core/util/GapfillUtils.java
@@ -33,7 +33,7 @@ import 
org.apache.pinot.core.query.request.context.QueryContext;
 
 
 /**
- * Util class to encapsulate all utilites required for gapfill.
+ * Util class to encapsulate all utilities required for gapfill.
  */
 public class GapfillUtils {
   private static final String GAP_FILL = "gapfill";
diff --git 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/realtime/ingestion/BaseKinesisIntegrationTest.java
 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/realtime/ingestion/BaseKinesisIntegrationTest.java
index 78422300849..13679c62252 100644
--- 
a/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/realtime/ingestion/BaseKinesisIntegrationTest.java
+++ 
b/pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/realtime/ingestion/BaseKinesisIntegrationTest.java
@@ -176,7 +176,7 @@ abstract class BaseKinesisIntegrationTest extends 
BaseClusterIntegrationTest {
   @Override
   public TableConfig createRealtimeTableConfig(File sampleAvroFile) {
     // Calls the super class to create the table config.
-    // Properties like stream configs are overriden in the getStreamConfigs() 
method.
+    // Properties like stream configs are overridden in the getStreamConfigs() 
method.
     return super.createRealtimeTableConfig(sampleAvroFile);
   }
 
diff --git 
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/forward/VarByteChunkForwardIndexReaderV4.java
 
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/forward/VarByteChunkForwardIndexReaderV4.java
index 53881790a40..5694f683ce4 100644
--- 
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/forward/VarByteChunkForwardIndexReaderV4.java
+++ 
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/forward/VarByteChunkForwardIndexReaderV4.java
@@ -73,7 +73,7 @@ public class VarByteChunkForwardIndexReaderV4
     _chunkCompressionType = ChunkCompressionType.valueOf(dataBuffer.getInt(8));
     _chunkDecompressor = 
ChunkCompressorFactory.getDecompressor(_chunkCompressionType);
     int chunksOffset = dataBuffer.getInt(12);
-    // the file has a BE header for compatability reasons (version selection) 
but the content is LE
+    // the file has a BE header for compatibility reasons (version selection) 
but the content is LE
     _metadata = dataBuffer.view(16, chunksOffset, ByteOrder.LITTLE_ENDIAN);
     _chunksStartOffset = chunksOffset;
     _chunks = dataBuffer.view(chunksOffset, dataBuffer.size(), 
ByteOrder.LITTLE_ENDIAN);
diff --git 
a/pinot-spi/src/test/java/org/apache/pinot/spi/env/PinotConfigurationTest.java 
b/pinot-spi/src/test/java/org/apache/pinot/spi/env/PinotConfigurationTest.java
index 5a2ba84b8e6..6df9099ed13 100644
--- 
a/pinot-spi/src/test/java/org/apache/pinot/spi/env/PinotConfigurationTest.java
+++ 
b/pinot-spi/src/test/java/org/apache/pinot/spi/env/PinotConfigurationTest.java
@@ -107,16 +107,16 @@ public class PinotConfigurationTest {
   @Test
   public void assertPropertyOverride() {
     PinotConfiguration pinotConfiguration = new PinotConfiguration();
-    pinotConfiguration.setProperty("property.override", "overriden-value");
+    pinotConfiguration.setProperty("property.override", "overridden-value");
 
     pinotConfiguration.containsKey("property.override");
-    Assert.assertEquals(pinotConfiguration.getProperty("property.override"), 
"overriden-value");
+    Assert.assertEquals(pinotConfiguration.getProperty("property.override"), 
"overridden-value");
 
     pinotConfiguration = new 
PinotConfiguration(pinotConfiguration.toMap()).clone().subset("property");
 
-    pinotConfiguration.addProperty("override", "overriden-value-2");
+    pinotConfiguration.addProperty("override", "overridden-value-2");
 
-    Assert.assertEquals(pinotConfiguration.getProperty("override"), 
"overriden-value,overriden-value-2");
+    Assert.assertEquals(pinotConfiguration.getProperty("override"), 
"overridden-value,overridden-value-2");
 
     Object object = new Object();
     pinotConfiguration.setProperty("raw-property", object);
diff --git 
a/pinot-timeseries/pinot-timeseries-spi/src/main/java/org/apache/pinot/tsdb/spi/TimeSeriesLogicalPlanner.java
 
b/pinot-timeseries/pinot-timeseries-spi/src/main/java/org/apache/pinot/tsdb/spi/TimeSeriesLogicalPlanner.java
index e6ab2f8e261..ebfd4e0659a 100644
--- 
a/pinot-timeseries/pinot-timeseries-spi/src/main/java/org/apache/pinot/tsdb/spi/TimeSeriesLogicalPlanner.java
+++ 
b/pinot-timeseries/pinot-timeseries-spi/src/main/java/org/apache/pinot/tsdb/spi/TimeSeriesLogicalPlanner.java
@@ -40,7 +40,7 @@ public interface TimeSeriesLogicalPlanner {
   /**
    * Returns the name of the table from the logical plan result by traversing 
the plan tree and extracting the
    * table name from the first encountered {@link LeafTimeSeriesPlanNode}
-   * This method is recommended to be overriden by implementations for more 
efficient table name extraction.
+   * This method is recommended to be overridden by implementations for more 
efficient table name extraction.
    */
   default String getTableName(TimeSeriesLogicalPlanResult result) {
     BaseTimeSeriesPlanNode node = result.getPlanNode();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to