https://pinot.apache.org/ logo
Join Slack
Powered by
# pinot-dev
  • k

    Ken Krugler

    01/27/2021, 9:24 PM
    I’ve run into a few bugs in Pinot caused by
    PinotFS.listFiles()
    implementations not returning the protocol with the path. So you get back
    /user/hadoop/blah
    , not
    hdfs:///user/hadoop/blah
    . When those paths get used later, without knowledge of the file system, then you run into problems. Does anyone know why
    listFiles()
    (and maybe other methods in a PinotFS implementation) don’t include the protocol?
    x
    t
    • 3
    • 16
  • x

    Xiang Fu

    01/28/2021, 10:31 PM
    I feel we may need to put pinot-batch-ingestion-standalone into runtime dependency so the first time user can run it through IDE
    a
    • 2
    • 1
  • x

    Xiang Fu

    01/28/2021, 10:33 PM
    can you try onething, add
    Copy code
    <dependency>
          <groupId>org.apache.pinot</groupId>
          <artifactId>pinot-batch-ingestion-standalone</artifactId>
          <version>${project.version}</version>
          <scope>runtime</scope>
        </dependency>
    into pinot-tools/pom.xml
    a
    • 2
    • 17
  • a

    Amrish Lal

    01/31/2021, 5:34 AM
    I am trying out JSON_MATCH functionality using JsonIndexQuickStart. First I ran the query
    select actor from githubEvents limit 1
    which produced the result:
    {"id":18542751,"login":"LimeVista","display_login":"LimeVista","gravatar_id":"","url":"<https://api.github.com/users/LimeVista>","avatar_url":"<https://avatars.githubusercontent.com/u/18542751>?"}
    then I tried to write a query using JSON_MATCH predicate to match the above row:
    select actor from githubEvents WHERE JSON_MATCH(actor, 'login = ''LimeVista''')
    and this produces an empty result set. I am wondering if I am missing anything or if the query above is incorrect?
    s
    k
    • 3
    • 8
  • j

    Jack

    02/03/2021, 10:39 PM
    Hey @User we recently found a bug in this PR (https://github.com/apache/incubator-pinot/pull/6418), and I opened a hotfix for that (https://github.com/apache/incubator-pinot/pull/6540). Could you review it?
    a
    • 2
    • 4
  • g

    Grace Walkuski

    02/08/2021, 4:43 PM
    Hi! 👋 I’m attempting to integrate the Pinot JDBC with Jooq so it can build sql and manage connections for us. This is not officially supported at this point, but it looks like the only change that would be needed to support it, is to add the
    execute()
    function (no params) to the PinotPreparedStatement. There are already several
    execute(…)
    functions with params, and an
    executeQuery()
    function with no params. Is there a reason this hasn’t been done already? Or why was the
    executeQuery()
    function named differently than the rest? Currently Jooq calls
    execute()
    and it hits this since it hasn’t been overridden. I’m happy to make a PR to add this functionality but wanted to check first. Thanks!
    z
    g
    • 3
    • 5
  • t

    Ting Chen

    02/12/2021, 12:57 AM
    Bump up the need to solve the issue https://github.com/apache/incubator-pinot/issues/6282. We have seen a lot of issues with the out dated yammer metrics lib. For example, it has the stale metrics issue as reported here: https://engineering.salesforce.com/be-careful-with-reservoirs-708884018daf. This makes some alerts not working properly. The new lib should allow configuration of more recent metrics implementation.
    j
    x
    m
    • 4
    • 5
  • k

    khush

    02/22/2021, 8:19 AM
    Hi, the kubernetes helm setup for pinot has a LoadBalancer service created for both broker and controller. I wanted to understand, what should be used, LoadBalancer or clusterIP service for accessing pinot broker and controller by an internal service with the same kubernetes cluster but a different namespace?
    x
    • 2
    • 4
  • k

    Ken Krugler

    03/04/2021, 4:50 PM
    Currently
    DistinctCountHLL
    only works for single value fields. It seems like a simple change in
    DistinctCountHLLAggregationFunction.aggregate()
    to check if the
    BlockValSet
    is multi-valued, and if so then call
    BlockValSet.getXXXMV()
    and do a sub-iteration on the secondary array it returns. Does that make sense?
    k
    m
    • 3
    • 11
  • n

    Neha Pawar

    03/12/2021, 4:32 AM
    i’m running PinotAdministrator with
    QuickStart -type OFFLINE
    arguments
    j
    k
    x
    • 4
    • 7
  • r

    Ravikumar Maddi

    03/17/2021, 4:05 AM
    Hi All, I am getting an error while stating zookeeper with pinot admin. zookeeper state changed (SyncConnected) Waiting for keeper state SyncConnected Terminate ZkClient event thread. Session: 0x10003506d770000 closed Start zookeeper at localhost:2181 in thread main EventThread shut down for session: 0x10003506d770000 Expiring session 0x10002b33f080005, timeout of 30000ms exceeded Expiring session 0x10002b33f080006, timeout of 30000ms exceeded Expiring session 0x10002b33f080007, timeout of 30000ms exceeded Expiring session 0x10002b33f080004, timeout of 30000ms exceeded Expiring session 0x10002b33f080008, timeout of 30000ms exceeded Expiring session 0x10002b33f080002, timeout of 30000ms exceeded Expiring session 0x10002b33f08000b, timeout of 60000ms exceeded I am facing this issue from yesterday morning. And becouse of zookeeper not ready, other components also not working properly. Need Help 🙂
    x
    • 2
    • 21
  • x

    Xiang Fu

    03/17/2021, 6:07 PM
    upgrade JDK from 8 to 11(?)
    d
    k
    • 3
    • 5
  • k

    Ken Krugler

    03/18/2021, 6:01 PM
    If I need to determine the number of groups from an aggregation query, where the groups are filtered by aggregation result, are there any recommended approaches? E.g. group by minute, sum page views, and I only care about minutes with > 1000 page views - what’s a good way to determine the number of interesting minutes? Assume there can be many (e.g. > 1M groups) for my specific use case, so I can’t do an order by with some large limit.
    m
    • 2
    • 7
  • k

    khush

    03/22/2021, 5:23 AM
    Hi, does pinot by default create sorted forward index on a column of type datetime?
    m
    j
    • 3
    • 17
  • k

    khush

    03/23/2021, 12:25 PM
    Hi, I assume the answer will be no, as pinot checks for number of rows in each segment replica. But does pinot support time based commit of a segment?
    k
    m
    • 3
    • 6
  • k

    khush

    03/26/2021, 7:02 AM
    Hi, is there a way to redirect the pinot server, controller and broker logs to stdout in the kubernetes installation?
    k
    • 2
    • 4
  • n

    Neha Pawar

    03/30/2021, 3:28 PM
    You have to untag that server then rebalance: https://docs.pinot.apache.org/operators/operating-pinot/rebalance/rebalance-servers
    k
    x
    • 3
    • 17
  • a

    Amrish Lal

    03/30/2021, 7:13 PM
    Question about JSON functions described in documentation. Are the following functions supported in SQL or does the documentation need to be modified? • TOJSONMAPSTR • JSONFORMAT • JSONPATHLONG • JSONPATHDOUBLE • JSONPATHSTRING • JSONPATHARRAY They seem to take Java Objects as inputs?
    j
    k
    • 3
    • 2
  • x

    Xiang Fu

    03/31/2021, 6:52 PM
    I’m seeing an issue on helix when running integration test on
    JDK 11
    . After controller disconnected from helix, seems that the this Time task is not stopped as expected and it hangs the test forever. It might not be an issue for prod as this behavior doesn’t happen on normal workflow.
    Copy code
    17:37:59.009 [Timer-22] ERROR org.apache.helix.controller.GenericHelixController - Time task failed. Rebalance task type: PeriodicalRebalance, cluster: PinotBrokerRestletResourceStatelessTest
    org.apache.helix.HelixException: HelixManager (ZkClient) is not connected. Call HelixManager#connect()
    	at org.apache.helix.manager.zk.ZKHelixManager.checkConnected(ZKHelixManager.java:363) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.manager.zk.ZKHelixManager.getHelixDataAccessor(ZKHelixManager.java:593) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.controller.GenericHelixController$RebalanceTask.run(GenericHelixController.java:247) [helix-core-0.9.8.jar:0.9.8]
    	at java.util.TimerThread.mainLoop(Timer.java:556) [?:?]
    	at java.util.TimerThread.run(Timer.java:506) [?:?]
    17:37:59.176 [Timer-83] ERROR org.apache.helix.controller.GenericHelixController - Time task failed. Rebalance task type: PeriodicalRebalance, cluster: PinotControllerModeStatelessTest
    org.apache.helix.HelixException: HelixManager (ZkClient) is not connected. Call HelixManager#connect()
    	at org.apache.helix.manager.zk.ZKHelixManager.checkConnected(ZKHelixManager.java:363) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.manager.zk.ZKHelixManager.getHelixDataAccessor(ZKHelixManager.java:593) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.controller.GenericHelixController$RebalanceTask.run(GenericHelixController.java:247) [helix-core-0.9.8.jar:0.9.8]
    	at java.util.TimerThread.mainLoop(Timer.java:556) [?:?]
    	at java.util.TimerThread.run(Timer.java:506) [?:?]
    17:37:59.752 [Timer-125] ERROR org.apache.helix.controller.GenericHelixController - Time task failed. Rebalance task type: PeriodicalRebalance, cluster: PinotHelixResourceManagerStatelessTest
    org.apache.helix.HelixException: HelixManager (ZkClient) is not connected. Call HelixManager#connect()
    	at org.apache.helix.manager.zk.ZKHelixManager.checkConnected(ZKHelixManager.java:363) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.manager.zk.ZKHelixManager.getHelixDataAccessor(ZKHelixManager.java:593) ~[helix-core-0.9.8.jar:0.9.8]
    	at org.apache.helix.controller.GenericHelixController$RebalanceTask.run(GenericHelixController.java:247) [helix-core-0.9.8.jar:0.9.8]
    	at java.util.TimerThread.mainLoop(Timer.java:556) [?:?]
    	at java.util.TimerThread.run(Timer.java:506) [?:?]
    j
    • 2
    • 16
  • n

    Neha Pawar

    04/01/2021, 10:48 PM
    was there some recent version changes made to hadoop/parquet dependencies? I’m unable to upload a Parquet format file via this API anymore.
    Copy code
    <http://localhost:9000/help#/Table/ingestFromFile>
    This was working a few weeks ago. Now i get this exception during segment creation
    Copy code
    java.lang.NoClassDefFoundError: org/apache/hadoop/mapreduce/lib/input/FileInputFormat
    	at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_282]
    	at java.lang.ClassLoader.defineClass(ClassLoader.java:756) ~[?:1.8.0_282]
    	at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_282]
    	at java.net.URLClassLoader.defineClass(URLClassLoader.java:468) ~[?:1.8.0_282]
    	at java.net.URLClassLoader.access$100(URLClassLoader.java:74) ~[?:1.8.0_282]
    	at java.net.URLClassLoader$1.run(URLClassLoader.java:369) ~[?:1.8.0_282]
    	at java.net.URLClassLoader$1.run(URLClassLoader.java:363) ~[?:1.8.0_282]
    	at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_282]
    	at java.net.URLClassLoader.findClass(URLClassLoader.java:362) ~[?:1.8.0_282]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_282]
    	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352) ~[?:1.8.0_282]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_282]
    	at org.apache.parquet.HadoopReadOptions$Builder.<init>(HadoopReadOptions.java:95) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.parquet.HadoopReadOptions.builder(HadoopReadOptions.java:79) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.parquet.hadoop.ParquetReader$Builder.<init>(ParquetReader.java:198) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.parquet.avro.AvroParquetReader$Builder.<init>(AvroParquetReader.java:107) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.parquet.avro.AvroParquetReader$Builder.<init>(AvroParquetReader.java:99) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.parquet.avro.AvroParquetReader.builder(AvroParquetReader.java:48) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.plugin.inputformat.parquet.ParquetUtils.getParquetAvroReader(ParquetUtils.java:51) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.plugin.inputformat.parquet.ParquetAvroRecordReader.init(ParquetAvroRecordReader.java:52) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.plugin.inputformat.parquet.ParquetRecordReader.init(ParquetRecordReader.java:47) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.spi.data.readers.RecordReaderFactory.getRecordReaderByClass(RecordReaderFactory.java:149) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.core.segment.creator.impl.SegmentIndexCreationDriverImpl.getRecordReader(SegmentIndexCreationDriverImpl.java:122) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.core.segment.creator.impl.SegmentIndexCreationDriverImpl.init(SegmentIndexCreationDriverImpl.java:98) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.controller.util.FileIngestionUtils.buildSegment(FileIngestionUtils.java:129) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.controller.util.FileIngestionHelper.buildSegmentAndPush(FileIngestionHelper.java:101) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.controller.api.resources.PinotIngestionRestletResource.ingestData(PinotIngestionRestletResource.java:197) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at org.apache.pinot.controller.api.resources.PinotIngestionRestletResource.ingestFromFile(PinotIngestionRestletResource.java:127) ~[pinot-all-0.7.0-SNAPSHOT-jar-with-dependencies.jar:0.7.0-SNAPSHOT-89a22f097c5ff26396e58950c90d764066a56121]
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_282]
    x
    a
    j
    • 4
    • 27
  • a

    Amrish Lal

    04/06/2021, 5:36 AM
    I am seeing my build and Jackie's build also failing with the same error message in JDK 1.8 Quickstart (JDK 11, 13 Quickstart passes). So this must be a generic build issue rather than something specific to changes in these PRs? Error messages given below. Any idea what has changed here?
    Copy code
    [{"message":"BrokerResourceMissingError","errorCode":410}]
    ...
    Executing command: StopProcess -controller -server -broker -zooKeeper
    18885
    + true
    18886
    + kill -0 3750
    18887
    .github/workflows/scripts/.pinot_quickstart.sh: line 71: kill: (3750) - No such process
    18888
    + break
    18889
    + rm -rf /tmp/PinotAdmin/zkData
    18890
    + '[' 0 -eq 0 ']'
    18891
    Batch Quickstart failed: Cannot get correct result for count star query.
    18892
    + echo 'Batch Quickstart failed: Cannot get correct result for count star query.'
    18893
    + exit 1
    18894
    Error: Process completed with exit code 1.
    m
    j
    +3
    • 6
    • 22
  • n

    Neha Pawar

    04/08/2021, 8:04 PM
    @User can we merge your PR ?
    a
    • 2
    • 2
  • s

    Seunghyun

    04/14/2021, 7:17 PM
    I see some error when building UI npm project. Is someone looking into this?
    j
    • 2
    • 1
  • m

    Mayank

    04/15/2021, 4:47 PM
    I am seeing that the integration and unit tests are taking a lot longer and keep failing even after the UI npm fix. Anyone aware of the issue?
    x
    • 2
    • 1
  • j

    Jack

    04/15/2021, 8:36 PM
    Yes, we have included all the types of queries at that time and added more coverage on that
    m
    • 2
    • 7
  • m

    Ming Liang

    04/15/2021, 10:56 PM
    Hey, build on master failed with message
    Copy code
    [INFO] Reactor Summary for Pinot 0.8.0-SNAPSHOT:
    [INFO]
    [INFO] Pinot .............................................. SUCCESS [ 15.773 s]
    [INFO] Pinot Service Provider Interface ................... SUCCESS [  2.762 s]
    [INFO] Pinot Segment Service Provider Interface ........... SUCCESS [  1.093 s]
    [INFO] Pinot Plugins ...................................... SUCCESS [  4.414 s]
    [INFO] Pinot Metrics ...................................... SUCCESS [  0.145 s]
    [INFO] Pinot Yammer Metrics ............................... SUCCESS [  4.240 s]
    [INFO] Pinot Common ....................................... SUCCESS [ 16.085 s]
    [INFO] Pinot Input Format ................................. SUCCESS [  0.993 s]
    [INFO] Pinot Avro Base .................................... SUCCESS [  1.109 s]
    [INFO] Pinot Avro ......................................... SUCCESS [  0.902 s]
    [INFO] Pinot Csv .......................................... SUCCESS [  0.354 s]
    [INFO] Pinot JSON ......................................... SUCCESS [  0.344 s]
    [INFO] Pinot local segment implementations ................ SUCCESS [  6.542 s]
    [INFO] Pinot Core ......................................... SUCCESS [  9.313 s]
    [INFO] Pinot Server ....................................... SUCCESS [  4.548 s]
    [INFO] Pinot Segment Uploader ............................. SUCCESS [  1.528 s]
    [INFO] Pinot Segment Uploader Default ..................... SUCCESS [ 15.425 s]
    [INFO] Pinot Controller ................................... SUCCESS [ 50.838 s]
    [INFO] Pinot Broker ....................................... SUCCESS [  4.736 s]
    [INFO] Pinot Clients ...................................... SUCCESS [  0.117 s]
    [INFO] Pinot Java Client .................................. SUCCESS [  0.474 s]
    [INFO] Pinot JDBC Client .................................. SUCCESS [  0.555 s]
    [INFO] Pinot Batch Ingestion .............................. SUCCESS [  1.501 s]
    [INFO] Pinot Batch Ingestion Common ....................... SUCCESS [  0.393 s]
    [INFO] Pinot Minion ....................................... SUCCESS [  1.718 s]
    [INFO] Pinot Confluent Avro ............................... FAILURE [  0.586 s]
    [INFO] Pinot ORC .......................................... SKIPPED
    [INFO] Pinot Parquet ...................................... SKIPPED
    [INFO] Pinot Thrift ....................................... SKIPPED
    [INFO] Pinot Protocol Buffers ............................. SKIPPED
    [INFO] Pluggable Pinot file system ........................ SKIPPED
    [INFO] Pinot Azure Data Lake Storage ...................... SKIPPED
    [INFO] Pinot Hadoop Filesystem ............................ SKIPPED
    [INFO] Pinot Google Cloud Storage ......................... SKIPPED
    [INFO] Pinot Amazon S3 .................................... SKIPPED
    [INFO] Pinot Batch Ingestion for Spark .................... SKIPPED
    [INFO] Pinot Batch Ingestion for Hadoop ................... SKIPPED
    [INFO] Pinot Batch Ingestion Standalone ................... SKIPPED
    [INFO] Pinot Batch Ingestion .............................. SKIPPED
    [INFO] Pinot Ingestion Common ............................. SKIPPED
    [INFO] Pinot Hadoop ....................................... SKIPPED
    [INFO] Pinot Spark ........................................ SKIPPED
    [INFO] Pinot Stream Ingestion ............................. SKIPPED
    [INFO] Pinot Kafka Base ................................... SKIPPED
    [INFO] Pinot Kafka 0.9 .................................... SKIPPED
    [INFO] Pinot Kafka 2.0 .................................... SKIPPED
    [INFO] Pinot Minion Tasks ................................. SKIPPED
    [INFO] Pinot Minion Built-In Tasks ........................ SKIPPED
    [INFO] Pinot Segment Writer ............................... SKIPPED
    [INFO] Pinot Segment Writer File Based .................... SKIPPED
    [INFO] Pinot Tools ........................................ SKIPPED
    [INFO] Pinot Integration Tests ............................ SKIPPED
    [INFO] Pinot Perf ......................................... SKIPPED
    [INFO] Pinot Distribution ................................. SKIPPED
    [INFO] Pinot Connectors ................................... SKIPPED
    [INFO] Pinot Spark Connector .............................. SKIPPED
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time:  02:26 min
    [INFO] Finished at: 2021-04-15T15:49:12-07:00
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal on project pinot-confluent-avro: Could not resolve dependencies for project org.apache.pinot:pinot-confluent-avro:jar:0.8.0-SNAPSHOT: Failed to collect dependencies at io.confluent:kafka-schema-registry-client:jar:5.3.1: Failed to read artifact descriptor for io.confluent:kafka-schema-registry-client:jar:5.3.1: Could not transfer artifact io.confluent:kafka-schema-registry-client:pom:5.3.1 from/to maven-default-http-blocker (<http://0.0.0.0/>): Blocked mirror for repositories: [confluent (<http://packages.confluent.io/maven/>, default, releases+snapshots)] -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] <http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException>
    [ERROR]
    [ERROR] After correcting the problems, you can resume the build with the command
    [ERROR]   mvn <args> -rf :pinot-confluent-avro
    ➜ incubator-pinot git:(master)
    d
    • 2
    • 3
  • s

    Sharayu Gandhi

    04/15/2021, 11:31 PM
    Hi there, I am facing issues building pinot after recent commits on Master related to build fix.
    Copy code
    [ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.1:npm (npm run-script build) on project pinot-controller: Failed to run task: 'npm run-script build' failed. (error code 2) -> [Help 1]
    [ERROR] 
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR] 
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] <http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException>
    [ERROR] 
    [ERROR] After correcting the problems, you can resume the build with the command
    [ERROR]   mvn <args> -rf :pinot-controller
    Can someone guide me?
    d
    • 2
    • 7
  • p

    Phúc Huỳnh

    04/16/2021, 2:57 AM
    Hi there, In my company, we use https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity to authen with gcs. So anyidea to using plugin GcsPinotFS without GCP_KEY file ?
    m
    x
    • 3
    • 8
  • a

    Amrish Lal

    04/26/2021, 9:30 PM
    I have been seeing these errors on github Integration Test runs with different test cases which don't seem related to PR changes. I am wondering if this an integration test issue and if there is a workaround?
    Copy code
    Error:  Tests run: 9, Failures: 1, Errors: 0, Skipped: 8, Time elapsed: 698.523 s <<< FAILURE! - in org.apache.pinot.integration.tests.FlakyConsumerRealtimeClusterIntegrationTest
    Error:  org.apache.pinot.integration.tests.FlakyConsumerRealtimeClusterIntegrationTest.setUp  Time elapsed: 698.359 s  <<< FAILURE!
    java.lang.AssertionError: Failed to meet condition in 600000ms, error message: Failed to load 115545 documents
    Copy code
    Error:  Tests run: 2, Failures: 1, Errors: 0, Skipped: 1, Time elapsed: 739.3 s <<< FAILURE! - in org.apache.pinot.integration.tests.BasicAuthRealtimeIntegrationTest
    Error:  org.apache.pinot.integration.tests.BasicAuthRealtimeIntegrationTest.setUp  Time elapsed: 725.035 s  <<< FAILURE!
    java.lang.AssertionError: Failed to meet condition in 600000ms, error message: Failed to load 115545 documents
    d
    • 2
    • 1
  • x

    Xiang Fu

    04/28/2021, 9:54 PM
    A huge plus ➕ to the previous statement: Elon and his team has been building and running with Java 11 or a few months - the GC behavior is so much better.
    ➕ 3
    💯 4
    e
    m
    • 3
    • 3
12345...30Latest