https://pinot.apache.org/ logo
Join Slack
Powered by
# troubleshooting
  • j

    Jonathan Meyer

    04/09/2021, 2:55 PM
    👋 Does
    ingestionConfig.transformConfigs
    occur before
    ingestionConfig.filterConfig
    ? [realtime table] I'm seeing errors on some messages due to invalid transformations (-> missing field - since this table isn't for this type of event)
    n
    x
    • 3
    • 15
  • b

    Brian Olsen

    04/10/2021, 2:00 AM
    same issue...i'm gonna update the default null values I think...it's only for a demo
    m
    j
    x
    • 4
    • 40
  • b

    Brian Olsen

    04/10/2021, 2:00 AM
    I am curious to know what the solution would be here though if anyone knows
    j
    k
    • 3
    • 6
  • m

    Matt

    04/10/2021, 2:55 AM
    Hello Anyone tried running Pino in arm-based chip machines? currently I am using x86 and looking to migrate to arm. Not sure there is an arm based Pino docker image?
    🤔 1
    x
    • 2
    • 3
  • o

    Oguzhan Mangir

    04/10/2021, 9:37 AM
    Copy code
    server:
      name: server
    
      ports:
        netty: 8098
        admin: 8097
    
      replicaCount: 1
    
      dataDir: /var/pinot/server/data/index
      segmentTarDir: /var/pinot/server/data/segment
    
      persistence:
        enabled: true
        accessMode: ReadWriteOnce
        size: "30Gi"
        mountPath: /var/pinot/server/data
        storageClass: "alicloud-disk-available"
        #storageClass: "ssd"
    
      jvmOpts: "-Xms512M -Xmx1G -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationStoppedTime -XX:+PrintGCApplicationConcurrentTime -Xloggc:/opt/pinot/gc-pinot-server.log -Dplugins.include=pinot-hdfs"
    
      log4j2ConfFile: /opt/pinot/conf/pinot-server-log4j2.xml
      pluginsDir: /opt/pinot/plugins
    
      service:
        annotations: {}
        clusterIP: ""
        externalIPs: []
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
        type: ClusterIP
        port: 8098
        nodePort: ""
    
      resources: {}
    
      nodeSelector: {}
    
      affinity: {}
    
      tolerations: []
    
      podAnnotations: {}
    
      updateStrategy:
        type: RollingUpdate
    
      # Extra configs will be appended to pinot-server.conf file
      extra:
        configs: |-
          pinot.set.instance.id.to.hostname=true
          pinot.server.instance.realtime.alloc.offheap=true
          pinot.server.instance.enable.split.commit=true
          pinot.server.storage.factory.class.hdfs=org.apache.pinot.plugin.filesystem.HadoopPinotFS
          pinot.server.storage.factory.hdfs.hadoop.conf.path=/opt/hadoop/conf/
          pinot.server.segment.fetcher.protocols=file,http,hdfs
          pinot.server.segment.fetcher.hdfs.class=org.apache.pinot.common.utils.fetcher.PinotFSSegmentFetcher
    here is my server config. I want to use hdfs as deep storage. I put related hdfs jars under the pinot, but server pod not starting when i add the
    -Dplugins.include=pinot-hdfs
    x
    d
    • 3
    • 18
  • a

    Akash

    04/13/2021, 3:01 PM
    I am trying to add HDFS as deep storage and running following command
    Copy code
    bin/start-server.sh -zkAddress pinot1.plan:2181,pinot2.plan:2181,pinot3.plan:2181 -configFileName conf/server.conf
    Server configs are
    Copy code
    pinot.server.instance.enable.split.commit=true
    pinot.server.storage.factory.class.hdfs=org.apache.pinot.plugin.filesystem.HadoopPinotFS
    hadoop.conf.path=/local/hadoop/etc/hadoop/
    pinot.server.storage.factory.hdfs.hadoop.conf.path=/local/hadoop/etc/hadoop/
    pinot.server.segment.fetcher.protocols=file,http,hdfs
    pinot.server.segment.fetcher.hdfs.class=org.apache.pinot.common.utils.fetcher.PinotFSSegmentFetcher
    pinot.server.instance.dataDir=/home/akashmishra/hpgraph/apache-pinot-incubating-0.6.0-bin/data/PinotServer/index
    pinot.server.instance.segmentTarDir=/home/akashmishra/hpgraph/apache-pinot-incubating-0.6.0-bin/data/PinotServer/segmentTar
    I am getting following error
    Copy code
    2021/04/13 15:00:49.231 INFO [MBeanRegistrar] [Start a Pinot [SERVER]] MBean HelixCallback:Change=MESSAGES_CONTROLLER,Key=PinotCluster.Server_10.10.211.27_8098,Type=PARTICIPANT has been registered.
    2021/04/13 15:00:49.232 INFO [MBeanRegistrar] [Start a Pinot [SERVER]] MBean HelixCallback:Change=HEALTH,Key=PinotCluster.Server_10.10.211.27_8098,Type=PARTICIPANT has been registered.
    2021/04/13 15:00:49.598 INFO [Reflections] [Start a Pinot [SERVER]] Reflections took 313 ms to scan 1 urls, producing 5 keys and 151 values
    2021/04/13 15:00:49.645 ERROR [PinotFSFactory] [Start a Pinot [SERVER]] Could not instantiate file system for class org.apache.pinot.plugin.filesystem.HadoopPinotFS with scheme hdfs
    java.lang.ClassNotFoundException: org.apache.pinot.plugin.filesystem.HadoopPinotFS
    	at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_275]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_275]
    	at org.apache.pinot.spi.plugin.PluginClassLoader.loadClass(PluginClassLoader.java:80) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:268) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:239) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:220) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.filesystem.PinotFSFactory.register(PinotFSFactory.java:53) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.filesystem.PinotFSFactory.init(PinotFSFactory.java:74) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.server.starter.helix.SegmentFetcherAndLoader.<init>(SegmentFetcherAndLoader.java:71) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.server.starter.helix.HelixServerStarter.start(HelixServerStarter.java:316) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.service.PinotServiceManager.startServer(PinotServiceManager.java:150) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.service.PinotServiceManager.startRole(PinotServiceManager.java:95) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.lambda$run$0(StartServiceManagerCommand.java:260) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand.startPinotService(StartServiceManagerCommand.java:286) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand.access$000(StartServiceManagerCommand.java:57) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.run(StartServiceManagerCommand.java:260) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    2021/04/13 15:00:49.650 ERROR [StartServiceManagerCommand] [Start a Pinot [SERVER]] Failed to start a Pinot [SERVER] at 0.513 since launch
    java.lang.RuntimeException: java.lang.ClassNotFoundException: org.apache.pinot.plugin.filesystem.HadoopPinotFS
    	at org.apache.pinot.spi.filesystem.PinotFSFactory.register(PinotFSFactory.java:58) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.filesystem.PinotFSFactory.init(PinotFSFactory.java:74) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.server.starter.helix.SegmentFetcherAndLoader.<init>(SegmentFetcherAndLoader.java:71) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.server.starter.helix.HelixServerStarter.start(HelixServerStarter.java:316) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.service.PinotServiceManager.startServer(PinotServiceManager.java:150) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.service.PinotServiceManager.startRole(PinotServiceManager.java:95) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.lambda$run$0(StartServiceManagerCommand.java:260) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand.startPinotService(StartServiceManagerCommand.java:286) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand.access$000(StartServiceManagerCommand.java:57) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.run(StartServiceManagerCommand.java:260) [pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    Caused by: java.lang.ClassNotFoundException: org.apache.pinot.plugin.filesystem.HadoopPinotFS
    	at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_275]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_275]
    	at org.apache.pinot.spi.plugin.PluginClassLoader.loadClass(PluginClassLoader.java:80) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:268) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:239) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.plugin.PluginManager.createInstance(PluginManager.java:220) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	at org.apache.pinot.spi.filesystem.PinotFSFactory.register(PinotFSFactory.java:53) ~[pinot-all-0.6.0-jar-with-dependencies.jar:0.6.0-bb646baceafcd9b849a1ecdec7a11203c7027e21]
    	... 9 more
    d
    o
    • 3
    • 20
  • a

    Aaron Wishnick

    04/13/2021, 3:52 PM
    I just uploaded a lot of data to a new table, and when I try to
    select * from foo limit 10
    I get: "message": "MergeResponseError: responses for table: foo from servers: [10.20.67.239_O] got dropped due to data schema inconsistency.",
    m
    • 2
    • 4
  • k

    Kevin Vu

    04/13/2021, 4:17 PM
    Having issues adding a new streaming tables in pinot, I have added 3 new tables prior with status Good but adding this new table called interactions_REALTIME will show a status Bad and it doesn't seem to consume any new data. Any idea why this is the case? Also looking at the logs, there seems to be warning logs for this table being below replica threshold and failing to find servers hosting the segment.
    a
    m
    • 3
    • 59
  • p

    Phúc Huỳnh

    04/14/2021, 3:14 AM
    Hello guys, i’m have some issue with RealtimeToOfflineSegments task. So i create 2 hybrids table from same days. 1 for QC env and 1 for UAT env. • In the tables managements. It’s seem
    RealtimetoOfflines
    task in QC env has been stop. but i cannot find any errors log. • Another the question is the realtime segments will be remove after convert to Offline Segments Table ?
    x
    • 2
    • 17
  • h

    Hakob Avjyan

    04/14/2021, 2:25 PM
    Hello Everyone , I am very new to Pinot and having some trouble getting it up and running on Windows. Was wondering if there are any recourses or video tutorials that I can follow. In a nutshell I am trying to recreate whatever was done in this blog post https://medium.com/apache-pinot-developer-blog/building-a-climate-dashboard-with-apache-pinot-and-superset-d3ee8cb7941d . Thank you in advance.
    d
    k
    • 3
    • 38
  • a

    Aaron Wishnick

    04/14/2021, 4:44 PM
    I'm running a SegmentCreationAndTarPush batch ingest that has outputDirURI as a path on S3. I notice that if I drop the table, re-create the table, and run the batch ingest job again with different data (a different inputDirURI), it still ends up pushing all of the old data from the previous batch ingest job. Is this expected? Is there some way I can prevent it from happening?
    k
    • 2
    • 6
  • l

    Laxman Ch

    04/16/2021, 7:56 AM
    Want to try pinot 0.7.1 release. And we are using the artifacts from jitpack. The following shaded artifact is not available for 0.7.1 release. And we are using this artifact.
    Copy code
    wget -qO temp.zip <https://jitpack.io/com/github/apache/incubator-pinot/pinot-distribution/e22be7c3a39e840321d3658e7505f21768b228d6/pinot-distribution-e22be7c3a39e840321d3658e7505f21768b228d6-shaded.jar>
    However, I can see the shaded artifact is available under maven central here. https://repo1.maven.org/maven2/org/apache/pinot/pinot-distribution/0.7.1/ Any suggestions on how to proceed here? @Kishore G @Xiang Fu
    x
    • 2
    • 32
  • j

    Jonathan Meyer

    04/16/2021, 9:11 AM
    Hello 🙂 I've evolved a realtime table schema (renaming column) and seeing the following error when querying
    Copy code
    [
      {
        "errorCode": 500,
        "message": "MergeResponseError:\nData schema mismatch between merged block: [eventTimeString(STRING),communityId(STRING),eventType(STRING),ibcustomer(STRING),newsId(STRING),timeString(STRING),userId(STRING)] and block to merge: [eventTimeString(STRING),communityId(STRING),ibcustomer(STRING),newsId(STRING),timeString(STRING),type(STRING),userId(STRING)], drop block to merge"
      }
    ]
    I'm aware of
    pinot.server.instance.reload.consumingSegment
    setting - can you confirm setting it to
    true
    will solve this problem ? If so, maybe the error message should contain this bit of information ? or a reference to the doc ?
    x
    • 2
    • 9
  • p

    Phúc Huỳnh

    04/16/2021, 11:00 AM
    I’m using spark-job to with jobType: SegmentCreationAndUriPush It’s seem the bug on
    copy
    function ?
    k
    x
    e
    • 4
    • 64
  • j

    Jonathan Meyer

    04/16/2021, 3:57 PM
    Hello Seems I'm encountering a small bug with Pinot UI Context: • I've got 2 tables with 2 separate schemas • I'm on the
    Query Console
    Tab Problem : • I click on a table, the schema appears below it - the schema is valid (the one corresponding to this table) • I then click on the other table, the schema of the previous table remains • If I reload the page and click on the other table first, its schema remains after I click on the other table Info: • The schemas really are different • Actually the API calls when inspecting the page return the correct schemas • So it seems it only is a UI-related issue • I don't think I've seen this issue before • Force reloading Firefox page (ignore cache) doesn't solve the issue Ultimately it's only a UI inconsistency, so not a big deal, but got me thinking about my schemas for a bit 😄
    s
    m
    • 3
    • 9
  • h

    Hakob Avjyan

    04/16/2021, 5:40 PM
    Hello everyone ! Existed to be part of this slack channel. I am slowly learning Apache Pinot and Superset. Dose anyone know how to expedite the following error
    Apache Pino Error
    {'errorCode': 410, 'message': 'BrokerResourceMissingError'}
    This may be triggered by:
    Issue 1002 - The database returned an unexpected error
    This is what I got from superset documentation Your query failed because of an error that occurred on the database. This may be due to a syntax error, a bug in your query, or some other internal failure within the database. This is usually not an issue within Superset, but instead a problem with the underlying database that serves your query. What's the best fix for this?
    m
    • 2
    • 15
  • g

    Gabriel Lucano

    04/16/2021, 8:51 PM
    Hello, what is the best way to define a pinot schema when connectiing with kafka via schema registry?
    • 1
    • 1
  • s

    Surendra

    04/16/2021, 11:38 PM
    Hi, Good Evening. We are seeing below WARNs in controller logs and segment start & end times are negative , what will be the root cause?
    Copy code
    2021/04/16 16:59:54.827 WARN [TimeRetentionStrategy] [pool-10-thread-5] REALTIME segment: <>__0__982__20210312T0906Z of table: <>_REALTIME has invalid end time: -9223372036854775808 MILLISECONDS
    2021/04/16 16:59:54.827 WARN [TimeRetentionStrategy] [pool-10-thread-5] REALTIME segment: <>__0__983__20210312T0936Z of table: <>_REALTIME has invalid end time: -9223372036854775808 MILLISECONDS
    2021/04/16 16:59:54.827 WARN [TimeRetentionStrategy] [pool-10-thread-5] REALTIME segment: <>__0__984__20210312T1006Z of table: <>_REALTIME has invalid end time: -9223372036854775808 MILLISECONDS
    m
    s
    • 3
    • 12
  • o

    Oguzhan Mangir

    04/18/2021, 7:07 PM
    In the kubernetes cluster, i have two pinot server, and also 1 tenant named as DefaultTenant. But in the ui, seems default tenant has only one server. But when i check the server that not seems in default tenant, it seems tagged as DefaultTenant. Here is ss;
    j
    x
    • 3
    • 11
  • r

    Ravikumar Maddi

    04/19/2021, 6:52 AM
    Dear All, I am trying a PoC which I am trying to ingest data from S3 bucket to pinot local. I got sample table config for that(airlineStats_offline_table_config.json) and I created schema file also. I found from Pinot documentation that for ingestion, I should create a job.yml file and should mention in ingestion command. But I am not able to find any sample job script in incubator-pinot. Can you help me how can create job.yml. any refrence docs or blogs please share. thanks
    j
    • 2
    • 2
  • r

    Ravikumar Maddi

    04/19/2021, 2:32 PM
    Hi, I am getting error when I run
    bin/pinot-ingestion-job.sh -jobSpec examples/batch/airlineStats/ingestionJobSpec.yaml
    The error: ERROR [LaunchDataIngestionJobCommand] [main] Error: "-jobSpec" is not a valid option Need your help...
    x
    • 2
    • 10
  • n

    Nikhil Sulegaon

    04/19/2021, 6:28 PM
    Hey folks! New to the Pinot - super stoked to be here! This might be a repeated question, but I see an
    OFFLINE
    table in our Pinot cluster has a lot of
    BAD
    segments. Is there a list of common reasons that might make a segment go
    BAD
    ?
    m
    • 2
    • 2
  • p

    Phúc Huỳnh

    04/20/2021, 4:40 AM
    Hi, I got this issue when submit spark-job to ingest batch file.
    Copy code
    21/04/20 03:03:42 ERROR org.apache.pinot.tools.admin.command.LaunchDataIngestionJobCommand: Got exception to kick off standalone data ingestion job -
    java.lang.RuntimeException: Caught exception during running - org.apache.pinot.plugin.ingestion.batch.spark.SparkSegmentGenerationJobRunner
    	at org.apache.pinot.spi.ingestion.batch.IngestionJobLauncher.kickoffIngestionJob(IngestionJobLauncher.java:144)
    	at org.apache.pinot.spi.ingestion.batch.IngestionJobLauncher.runIngestionJob(IngestionJobLauncher.java:117)
    	at org.apache.pinot.tools.admin.command.LaunchDataIngestionJobCommand.execute(LaunchDataIngestionJobCommand.java:132)
    	at org.apache.pinot.tools.admin.command.LaunchDataIngestionJobCommand.main(LaunchDataIngestionJobCommand.java:67)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:498)
    	at org.apache.spark.deploy.JavaMainApplication.start(SparkApplication.scala:52)
    	at <http://org.apache.spark.deploy.SparkSubmit.org|org.apache.spark.deploy.SparkSubmit.org>$apache$spark$deploy$SparkSubmit$$runMain(SparkSubmit.scala:951)
    	at org.apache.spark.deploy.SparkSubmit.doRunMain$1(SparkSubmit.scala:180)
    	at org.apache.spark.deploy.SparkSubmit.submit(SparkSubmit.scala:203)
    	at org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:90)
    	at org.apache.spark.deploy.SparkSubmit$$anon$2.doSubmit(SparkSubmit.scala:1030)
    	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:1039)
    	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
    Caused by: java.nio.file.FileSystemNotFoundException: Provider "gs" not installed
    	at java.nio.file.Paths.get(Paths.java:147)
    	at org.apache.pinot.plugin.filesystem.GcsPinotFS.copy(GcsPinotFS.java:262)
    	at org.apache.pinot.plugin.ingestion.batch.spark.SparkSegmentGenerationJobRunner.run(SparkSegmentGenerationJobRunner.java:344)
    	at org.apache.pinot.spi.ingestion.batch.IngestionJobLauncher.kickoffIngestionJob(IngestionJobLauncher.java:142)
    	... 15 more
    j
    x
    • 3
    • 81
  • a

    Akash

    04/20/2021, 5:23 PM
    With respect to this, how do we specify the jar location and what jar we need to supply ?
    m
    x
    • 3
    • 111
  • n

    Neil Teng

    04/20/2021, 5:23 PM
    Hi some of my pinot instances are dead for unknown reasons. Is that any way to recover that? Because queries may fail if it is directed to a dead broker.
    m
    • 2
    • 14
  • e

    Elon

    04/21/2021, 2:43 AM
    When I create a table with a Boolean column in schema and then retrieve the schema the type is string. Is there any way to determine if the column was initially meant to be Boolean?
    j
    • 2
    • 4
  • m

    Mohamed Sultan

    04/21/2021, 3:12 PM
    Hi team, I'm just facing this issue when i do run query.
    d
    k
    +2
    • 5
    • 24
  • a

    Ashish

    04/21/2021, 9:29 PM
    Running into an issue using latest pinot-presto image against pinot latest. presto:default> select * from baseballstats; Query 20210421_202103_00011_isaaq, FAILED, 1 node Splits: 17 total, 0 done (0.00%) 1:00 [0 rows, 0B] [0 rows/s, 0B/s] Query 20210421_202103_00011_isaaq failed: null value in entry: Server_172.19.0.2_7000=null
    j
    x
    • 3
    • 26
  • r

    Ravikumar Maddi

    04/22/2021, 9:35 AM
    I have a doubt, need your help. I am using flatten json and created schema config and table config with fattening. My doubt is, Before ingestion to pinot, should I transfer the actual json to flatten json format or Pinot can automatically understand based on schema config.
    j
    • 2
    • 2
  • e

    Elon

    04/22/2021, 6:39 PM
    Is there a way to change the kafka cluster (which will change offsets) to realtime table? How will pinot behave if we update the table config, will it handle the different offsets or do we need to do some other config changes?
    m
    s
    +4
    • 7
    • 76
1...121314...166Latest