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

    Deepak Mishra

    07/15/2021, 10:34 AM
    Hi to start minion using apache pinot (e.g. start-minion.sh) to manage realtime to offline flows
  • c

    Charles

    07/20/2021, 12:26 AM
    Hi All I got an Exception when integrate with presto, could anyone help check ? thx
  • s

    Syed Akram

    07/20/2021, 6:49 AM
    ProcessingException(errorCode:150, messagePQLParsingError org.apache.pinot.sql.parsers.SqlCompilationException: Caught exception while parsing query: *select * from 59398999_Status_logagent_performance_review_tbl1416000000692493 limit 10* at org.apache.pinot.sql.parsers.CalciteSqlParser.compileCalciteSqlToPinotQuery(CalciteSqlParser.java:322) at org.apache.pinot.sql.parsers.CalciteSqlParser.compileToPinotQuery(CalciteSqlParser.java:107) at org.apache.pinot.sql.parsers.CalciteSqlCompiler.compileToBrokerRequest(CalciteSqlCompiler.java:35) at org.apache.pinot.controller.api.resources.PinotQueryResource.getQueryResponse(PinotQueryResource.java:166) at org.apache.pinot.controller.api.resources.PinotQueryResource.handlePostSql(PinotQueryResource.java:137) at sun.reflect.GeneratedMethodAccessor274.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:124) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:167) at org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$TypeOutInvoker.doDispatch(JavaResourceMethodDispatcherProvider.java:219) at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(AbstractJavaResourceMethodDispatcher.java:79) at org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(ResourceMethodInvoker.java:469))
  • s

    Syed Akram

    07/20/2021, 6:49 AM
    facing exception when tablename contains underscore(_)
  • s

    Syed Akram

    07/20/2021, 6:49 AM
    can someone help
  • x

    Xiang Fu

    07/20/2021, 8:28 AM
    I think the issue is that table name cannot start with numbers
  • x

    Xiang Fu

    07/20/2021, 8:29 AM
    can you try:
    Copy code
    select * from "59398999_Status_logagent_performance_review_tbl1416000000692493" limit 10
  • x

    Xiang Fu

    07/20/2021, 8:29 AM
    so it won’t confuse the sql compiler
  • s

    Syed Akram

    07/20/2021, 10:09 AM
    yes it worked fine
  • s

    Sadim Nadeem

    07/22/2021, 4:52 PM
    cc: @Mayank @Xiang Fu @Jackie @Kishore G @Neha Pawar @Ken Krugler @Chinmay Soman
  • s

    Sadim Nadeem

    07/22/2021, 5:07 PM
    reference : https://docs.pinot.apache.org/users/tutorials/schema-evolution#update-the-schema
  • c

    Carlos Domínguez

    07/26/2021, 2:00 PM
    Thanks in advance.
  • b

    beerus

    07/29/2021, 12:32 PM
    Can anyone please help on this issue?
  • c

    Carlos Domínguez

    07/29/2021, 2:09 PM
    Hello everyone, I’m having some issues querying Pinot using the JDBC driver. The Pinot has been configured using EKS in AWS. The error is the following one:
    org.apache.pinot.client.PinotClientException: java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: java.net.UnknownHostException: pinot-broker-0.pinot-broker-headless.pinot-quickstart.svc.cluster.local: nodename nor servname provided, or not known
  • c

    Carlos Domínguez

    07/29/2021, 2:10 PM
    I’m able to use the controller via browser
  • c

    Carlos Domínguez

    07/29/2021, 2:10 PM
    And everything works fine
  • d

    Daniel Lavoie

    07/29/2021, 2:22 PM
    Yes because you have an external url
  • d

    Daniel Lavoie

    07/29/2021, 2:22 PM
    There is an external url for the broker
  • d

    Daniel Lavoie

    07/29/2021, 2:24 PM
    kubectl get service
  • d

    Daniel Lavoie

    07/29/2021, 2:25 PM
    You need a load balancer for you broker
  • d

    Daniel Lavoie

    07/29/2021, 2:25 PM
    You should find a load balancer attached to your broker service
  • d

    Deepak Mishra

    07/30/2021, 4:23 AM
    Hello everyone - controller.task.frequencyInSeconds is deprecated to auto schedule offline flows
  • d

    Deepak Mishra

    07/30/2021, 4:25 AM
    I don’t find anywhere how to setup task schedule config
  • x

    xtrntr

    08/02/2021, 3:43 AM
    if i have queries that routinely have >1k and <100k items in my IN clause, what optimizations are available to me? e.g.
    Copy code
    # using pinot client with a super long SQL statement
    userIds = $SUBQUERY
    select cell, count(userId) from events where userId in userIds group by cell;
    
    # using presto
    select cell, count(userId) from events where userId in $SUBQUERY group by cell;
  • k

    Kishore G

    08/02/2021, 4:01 AM
    There is a sub query support in Pinot and if the ids are ints, it will automatically use bitmap to represent the ids
  • k

    Kishore G

    08/02/2021, 4:01 AM
    @Jackie do you have an example for this?
  • j

    Jackie

    08/02/2021, 4:11 AM
    This feature is included in the latest Pinot release
  • p

    Peter Pringle

    08/02/2021, 12:43 PM
    Looks like it might be related to the low level kafka 2 consumer defaulting the kafka message key type to string instead of reading properties.
1...151152153...166Latest