You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by GitBox <gi...@apache.org> on 2022/10/09 07:13:43 UTC

[GitHub] [pinot] liyujiel opened a new pull request, #9562: bugfix: quick start on docker and kubernetes test file path issue

liyujiel opened a new pull request, #9562:
URL: https://github.com/apache/pinot/pull/9562

   Signed-off-by: Yujie Li <li...@gmail.com>
   
   bugfix for docker and Kubernetes quick start.
   
   With the wrong path it will fail to start the load data job with the error:
   
   ```
    k logs pinot-realtime-quickstart-load-data-into-kafka--1-x2klh
   Defaulted container "loading-json-data-to-kafka" out of: loading-json-data-to-kafka, loading-avro-data-to-kafka
   SLF4J: Class path contains multiple SLF4J bindings.
   SLF4J: Found binding in [jar:file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-stream-ingestion/pinot-pulsar/pinot-pulsar-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-dropwizard/pinot-dropwizard-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-yammer/pinot-yammer-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-input-format/pinot-parquet/pinot-parquet-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-file-system/pinot-s3/pinot-s3-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-environment/pinot-azure/pinot-azure-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
   SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
   WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
   WARNING: An illegal reflective access operation has occurred
   WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar) to method java.lang.Object.finalize()
   WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
   WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
   WARNING: All illegal access operations will be denied in a future release
   2022/10/09 06:42:01.727 INFO [StreamAvroIntoKafkaCommand] [main] Streaming Avro file into Kafka topic flights-realtime with 1000 ms between messages
   java.io.FileNotFoundException: examples/stream/airlineStats/sample_data/airlineStats_data.avro (No such file or directory)
   	at java.base/java.io.FileInputStream.open0(Native Method)
   	at java.base/java.io.FileInputStream.open(FileInputStream.java:219)
   	at java.base/java.io.FileInputStream.<init>(FileInputStream.java:157)
   	at org.apache.pinot.plugin.inputformat.avro.AvroUtils.getAvroReader(AvroUtils.java:220)
   	at org.apache.pinot.tools.admin.command.StreamAvroIntoKafkaCommand.execute(StreamAvroIntoKafkaCommand.java:127)
   	at org.apache.pinot.tools.Command.call(Command.java:33)
   	at org.apache.pinot.tools.Command.call(Command.java:29)
   	at picocli.CommandLine.executeUserObject(CommandLine.java:1953)
   	at picocli.CommandLine.access$1300(CommandLine.java:145)
   	at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2352)
   	at picocli.CommandLine$RunLast.handle(CommandLine.java:2346)
   	at picocli.CommandLine$RunLast.handle(CommandLine.java:2311)
   	at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2179)
   	at picocli.CommandLine.execute(CommandLine.java:2078)
   	at org.apache.pinot.tools.admin.PinotAdministrator.execute(PinotAdministrator.java:167)
   	at org.apache.pinot.tools.admin.PinotAdministrator.main(PinotAdministrator.java:198)
   java.lang.RuntimeException: java.io.FileNotFoundException: examples/stream/airlineStats/sample_data/airlineStats_data.avro (No such file or directory)
   	at org.apache.pinot.tools.admin.command.StreamAvroIntoKafkaCommand.execute(StreamAvroIntoKafkaCommand.java:157)
   	at org.apache.pinot.tools.Command.call(Command.java:33)
   	at org.apache.pinot.tools.Command.call(Command.java:29)
   	at picocli.CommandLine.executeUserObject(CommandLine.java:1953)
   	at picocli.CommandLine.access$1300(CommandLine.java:145)
   	at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2352)
   	at picocli.CommandLine$RunLast.handle(CommandLine.java:2346)
   	at picocli.CommandLine$RunLast.handle(CommandLine.java:2311)
   	at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2179)
   	at picocli.CommandLine.execute(CommandLine.java:2078)
   	at org.apache.pinot.tools.admin.PinotAdministrator.execute(PinotAdministrator.java:167)
   	at org.apache.pinot.tools.admin.PinotAdministrator.main(PinotAdministrator.java:198)
   Caused by: java.io.FileNotFoundException: examples/stream/airlineStats/sample_data/airlineStats_data.avro (No such file or directory)
   	at java.base/java.io.FileInputStream.open0(Native Method)
   	at java.base/java.io.FileInputStream.open(FileInputStream.java:219)
   	at java.base/java.io.FileInputStream.<init>(FileInputStream.java:157)
   	at org.apache.pinot.plugin.inputformat.avro.AvroUtils.getAvroReader(AvroUtils.java:220)
   	at org.apache.pinot.tools.admin.command.StreamAvroIntoKafkaCommand.execute(StreamAvroIntoKafkaCommand.java:127)
   ```
   
   I find the avro path by:
   
   ```
   ~/pinot  find . -name airlineStats_data.avro
   ./pinot/pinot-tools/src/main/resources/examples/stream/airlineStats/rawdata/airlineStats_data.avro
   ```
   
   And rerun the data load job again, it can properly load data now! 
   
   ```
   stern pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh
   + pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh › loading-json-data-to-kafka
   + pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh › loading-avro-data-to-kafka
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Class path contains multiple SLF4J bindings.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-stream-ingestion/pinot-pulsar/pinot-pulsar-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-dropwizard/pinot-dropwizard-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-yammer/pinot-yammer-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-input-format/pinot-parquet/pinot-parquet-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-file-system/pinot-s3/pinot-s3-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-environment/pinot-azure/pinot-azure-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Class path contains multiple SLF4J bindings.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-stream-ingestion/pinot-pulsar/pinot-pulsar-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-dropwizard/pinot-dropwizard-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-metrics/pinot-yammer/pinot-yammer-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-input-format/pinot-parquet/pinot-parquet-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-file-system/pinot-s3/pinot-s3-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Found binding in [jar:file:/opt/pinot/plugins/pinot-environment/pinot-azure/pinot-azure-0.12.0-SNAPSHOT-shaded.jar!/org/slf4j/impl/StaticLoggerBinder.class]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka SLF4J: Actual binding is of type [org.apache.logging.slf4j.Log4jLoggerFactory]
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: An illegal reflective access operation has occurred
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar) to method java.lang.Object.finalize()
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka WARNING: All illegal access operations will be denied in a future release
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-json-data-to-kafka 2022/10/09 06:53:17.145 INFO [StreamAvroIntoKafkaCommand] [main] Streaming Avro file into Kafka topic flights-realtime with 1000 ms between messages
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: An illegal reflective access operation has occurred
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/opt/pinot/lib/pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar) to method java.lang.Object.finalize()
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka WARNING: All illegal access operations will be denied in a future release
   pinot-realtime-quickstart-load-data-into-kafka--1-wxrxh loading-avro-data-to-kafka 2022/10/09 06:53:21.349 INFO [StreamAvroIntoKafkaCommand] [main] Streaming Avro file into Kafka topic flights-realtime-avro with 1000 ms between messages
   ```


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] liyujiel commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
liyujiel commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r992690802


##########
pom.xml:
##########
@@ -125,7 +125,7 @@
     <parquet.version>1.11.1</parquet.version>
     <helix.version>1.0.4</helix.version>
     <zkclient.version>0.7</zkclient.version>
-    <jackson.version>2.12.7</jackson.version>
+    <jackson.version>2.14.0-rc1</jackson.version>

Review Comment:
   sounds good. remove the version change in the newest commit.



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] liyujiel commented on pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
liyujiel commented on PR #9562:
URL: https://github.com/apache/pinot/pull/9562#issuecomment-1275282133

   :) thank you all!


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] xiangfu0 merged pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
xiangfu0 merged PR #9562:
URL: https://github.com/apache/pinot/pull/9562


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] jackjlli commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
jackjlli commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r992546708


##########
pom.xml:
##########
@@ -125,7 +125,7 @@
     <parquet.version>1.11.1</parquet.version>
     <helix.version>1.0.4</helix.version>
     <zkclient.version>0.7</zkclient.version>
-    <jackson.version>2.12.7</jackson.version>
+    <jackson.version>2.14.0-rc1</jackson.version>

Review Comment:
   What's the rational of bumping up the jackson version here?



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] liyujiel commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
liyujiel commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r992659535


##########
pom.xml:
##########
@@ -125,7 +125,7 @@
     <parquet.version>1.11.1</parquet.version>
     <helix.version>1.0.4</helix.version>
     <zkclient.version>0.7</zkclient.version>
-    <jackson.version>2.12.7</jackson.version>
+    <jackson.version>2.14.0-rc1</jackson.version>

Review Comment:
   The security check Trivy was complaining about version 2.12.7 has a security issue after I make this change



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] codecov-commenter commented on pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
codecov-commenter commented on PR #9562:
URL: https://github.com/apache/pinot/pull/9562#issuecomment-1272654689

   # [Codecov](https://codecov.io/gh/apache/pinot/pull/9562?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) Report
   > Merging [#9562](https://codecov.io/gh/apache/pinot/pull/9562?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (b1995dd) into [master](https://codecov.io/gh/apache/pinot/commit/8cdae925020dc8ae32777d3e6205340d22bac7fd?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (8cdae92) will **decrease** coverage by `3.64%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@             Coverage Diff              @@
   ##             master    #9562      +/-   ##
   ============================================
   - Coverage     28.28%   24.64%   -3.65%     
     Complexity       53       53              
   ============================================
     Files          1917     1917              
     Lines        102594   102602       +8     
     Branches      15586    15586              
   ============================================
   - Hits          29022    25289    -3733     
   - Misses        70735    74747    +4012     
   + Partials       2837     2566     -271     
   ```
   
   | Flag | Coverage Δ | |
   |---|---|---|
   | integration1 | `?` | |
   | integration2 | `24.64% <ø> (+0.07%)` | :arrow_up: |
   
   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=The+Apache+Software+Foundation#carryforward-flags-in-the-pull-request-comment) to find out more.
   
   | [Impacted Files](https://codecov.io/gh/apache/pinot/pull/9562?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) | Coverage Δ | |
   |---|---|---|
   | [...apache/pinot/common/lineage/LineageEntryState.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtY29tbW9uL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9jb21tb24vbGluZWFnZS9MaW5lYWdlRW50cnlTdGF0ZS5qYXZh) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...pinot/minion/exception/TaskCancelledException.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtbWluaW9uL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9taW5pb24vZXhjZXB0aW9uL1Rhc2tDYW5jZWxsZWRFeGNlcHRpb24uamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...not/sql/parsers/dml/DataManipulationStatement.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtY29tbW9uL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9zcWwvcGFyc2Vycy9kbWwvRGF0YU1hbmlwdWxhdGlvblN0YXRlbWVudC5qYXZh) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...ot/broker/requesthandler/BrokerRequestHandler.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtYnJva2VyL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9icm9rZXIvcmVxdWVzdGhhbmRsZXIvQnJva2VyUmVxdWVzdEhhbmRsZXIuamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...ker/failuredetector/ConnectionFailureDetector.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtYnJva2VyL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9icm9rZXIvZmFpbHVyZWRldGVjdG9yL0Nvbm5lY3Rpb25GYWlsdXJlRGV0ZWN0b3IuamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...processing/partitioner/TableConfigPartitioner.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtY29yZS9zcmMvbWFpbi9qYXZhL29yZy9hcGFjaGUvcGlub3QvY29yZS9zZWdtZW50L3Byb2Nlc3NpbmcvcGFydGl0aW9uZXIvVGFibGVDb25maWdQYXJ0aXRpb25lci5qYXZh) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...minion/tasks/mergerollup/MergeRollupTaskUtils.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtcGx1Z2lucy9waW5vdC1taW5pb24tdGFza3MvcGlub3QtbWluaW9uLWJ1aWx0aW4tdGFza3Mvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3Bpbm90L3BsdWdpbi9taW5pb24vdGFza3MvbWVyZ2Vyb2xsdXAvTWVyZ2VSb2xsdXBUYXNrVXRpbHMuamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...ion/tasks/mergerollup/MergeRollupTaskExecutor.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtcGx1Z2lucy9waW5vdC1taW5pb24tdGFza3MvcGlub3QtbWluaW9uLWJ1aWx0aW4tdGFza3Mvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3Bpbm90L3BsdWdpbi9taW5pb24vdGFza3MvbWVyZ2Vyb2xsdXAvTWVyZ2VSb2xsdXBUYXNrRXhlY3V0b3IuamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...nverttorawindex/ConvertToRawIndexTaskExecutor.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtcGx1Z2lucy9waW5vdC1taW5pb24tdGFza3MvcGlub3QtbWluaW9uLWJ1aWx0aW4tdGFza3Mvc3JjL21haW4vamF2YS9vcmcvYXBhY2hlL3Bpbm90L3BsdWdpbi9taW5pb24vdGFza3MvY29udmVydHRvcmF3aW5kZXgvQ29udmVydFRvUmF3SW5kZXhUYXNrRXhlY3V0b3IuamF2YQ==) | `0.00% <0.00%> (-100.00%)` | :arrow_down: |
   | [...e/pinot/common/minion/MergeRollupTaskMetadata.java](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-cGlub3QtY29tbW9uL3NyYy9tYWluL2phdmEvb3JnL2FwYWNoZS9waW5vdC9jb21tb24vbWluaW9uL01lcmdlUm9sbHVwVGFza01ldGFkYXRhLmphdmE=) | `0.00% <0.00%> (-94.74%)` | :arrow_down: |
   | ... and [232 more](https://codecov.io/gh/apache/pinot/pull/9562/diff?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) | |
   
   :mega: We’re building smart automated test selection to slash your CI/CD build times. [Learn more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] liyujiel commented on pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
liyujiel commented on PR #9562:
URL: https://github.com/apache/pinot/pull/9562#issuecomment-1272733554

   @xiangfu0 I realize there are several places that still use `release-0.7.1`, do you want me to change all of them to `release-0.11.0`?


-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] xiangfu0 commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
xiangfu0 commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r990852372


##########
docker/images/pinot/README.md:
##########
@@ -163,7 +163,7 @@ docker run --network=pinot_default apachepinot/pinot:release-0.7.1 AddTable -sch
 
 Below is the script to ingest airplane stats data to Kafka
 ```SHELL
-docker run --network=pinot_default apachepinot/pinot:release-0.7.1 StreamAvroIntoKafka -avroFile examples/stream/airlineStats/sample_data/airlineStats_data.avro -kafkaTopic flights-realtime -kafkaBrokerList kafka:9092 -zkAddress zookeeper:2181
+docker run --network=pinot_default apachepinot/pinot:release-0.7.1 StreamAvroIntoKafka -avroFile examples/stream/airlineStats/rawdata/airlineStats_data.avro -kafkaTopic flights-realtime -kafkaBrokerList kafka:9092 -zkAddress zookeeper:2181

Review Comment:
   Let's also update the docker image version to use the latest `release-0.11.0`



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] xiangfu0 commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
xiangfu0 commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r992685924


##########
pom.xml:
##########
@@ -125,7 +125,7 @@
     <parquet.version>1.11.1</parquet.version>
     <helix.version>1.0.4</helix.version>
     <zkclient.version>0.7</zkclient.version>
-    <jackson.version>2.12.7</jackson.version>
+    <jackson.version>2.14.0-rc1</jackson.version>

Review Comment:
   No worry about the Trivy, just update the Kubernetes and README.



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[GitHub] [pinot] xiangfu0 commented on a diff in pull request #9562: bugfix: quick start on docker and kubernetes avro file path issue

Posted by GitBox <gi...@apache.org>.
xiangfu0 commented on code in PR #9562:
URL: https://github.com/apache/pinot/pull/9562#discussion_r992687052


##########
pom.xml:
##########
@@ -125,7 +125,7 @@
     <parquet.version>1.11.1</parquet.version>
     <helix.version>1.0.4</helix.version>
     <zkclient.version>0.7</zkclient.version>
-    <jackson.version>2.12.7</jackson.version>
+    <jackson.version>2.14.0-rc1</jackson.version>

Review Comment:
   We can address the Trivy issue in a different PR.



-- 
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: commits-unsubscribe@pinot.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org