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

    lâm nguyễn hoàng

    11/04/2020, 7:43 PM
    Screen Shot 2020-11-05 at 02.43.16.png,Screen Shot 2020-11-05 at 02.33.01 (1).png
  • n

    Noah Prince

    11/09/2020, 3:28 PM
    How does Helix handle a server that has all of one table’s segments on it with replica count 1? It seems like it isn’t sending that out to another server when it starts up. It’s just keeping the old dead server in the ideal state. Is there something manual that has to be done?
  • k

    Kishore G

    11/09/2020, 3:30 PM
    is the dead server still part of the cluster?
  • n

    Noah Prince

    11/09/2020, 3:34 PM
    Yeah it’s still listed in the cluster manager. But I can’t drop it because it’s part of the ideal state
  • e

    Elon

    11/10/2020, 4:36 PM
    Hi, I tried to create a table with a boolean type when I look at the schema it's saved as a string:
    Copy code
    {
      "schemaName" : "myTable3",
      "dimensionFieldSpecs" : [ {
        "name" : "col1",
        "dataType" : "LONG",
        "defaultNullValue" : 0
      },
       {
       "name": "col2",
       "dataType": "BOOLEAN",
       }],
      "metricFieldSpecs" : [ {
        "name" : "m1",
        "dataType" : "LONG"
      } ],
      "dateTimeFieldSpecs" : [ {
        "name" : "ts",
        "dataType" : "LONG",
        "format" : "1:MILLISECONDS:EPOCH",
        "granularity" : "1:SECONDS"
      } ]
    }
    Becomes this in pinot:
    Copy code
    {
      "schemaName": "myTable3",
      "dimensionFieldSpecs": [
        {
          "name": "col1",
          "dataType": "LONG",
          "defaultNullValue": 0
        },
        {
          "name": "col2",
          "dataType": "STRING"
        }
      ],
      "metricFieldSpecs": [
        {
          "name": "m1",
          "dataType": "LONG"
        }
      ],
      "dateTimeFieldSpecs": [
        {
          "name": "ts",
          "dataType": "LONG",
          "format": "1:MILLISECONDS:EPOCH",
          "granularity": "1:SECONDS"
        }
      ]
    }
  • j

    Jackie

    11/10/2020, 6:32 PM
    For
    BOOLEAN
    , you might want to put a
    defaultNullValue
    , or it will use the default
    null
  • n

    Noah Prince

    11/12/2020, 11:13 PM
    Copy code
    Cloning into '/opt/pinot-build'...
    fatal: unable to access '<https://github.com/apache/incubator-pinot.git/>': server certificate verification failed. CAfile: none CRLfile: none
    Trying to build the docker containers, I get this. Any quick solutions?
  • x

    Xiang Fu

    11/12/2020, 11:46 PM
    seems missing ca file for https
  • k

    Ken Krugler

    11/13/2020, 11:15 PM
    And if I check the logs, I see various errors logged by the server (and ZooKeeper). So is there a different approach I should have used to get rid of all of the old data before doing the re-import? This is all for offline data.
  • e

    Elon

    11/19/2020, 10:48 PM
    Anyone ever see this error? It occured on a pinot-server, BaseCombiner: Timed out while polling results block:
  • k

    Ken Krugler

    11/25/2020, 6:52 PM
    I was trying out the steps on https://docs.pinot.apache.org/basics/getting-started/kubernetes-quickstart and ran into some odd behavior. First, after running “eksctl create cluster <blah>“, the cluster status was in CREATING state for 45+ minutes, and then I got this output: [ℹ️] building cluster stack “eksctl-pinot-quickstart-cluster” [ℹ️] deploying stack “eksctl-pinot-quickstart-cluster” [✖️] unexpected status “CREATE_IN_PROGRESS” while waiting for CloudFormation stack “eksctl-pinot-quickstart-cluster”
  • k

    Ken Krugler

    11/25/2020, 6:53 PM
    After another 15 minutes or so, the cluster status changed to DELETING, and it’s still that way after almost 3 hours.
  • k

    Ken Krugler

    11/25/2020, 8:45 PM
    Has anyone else run into this?
  • k

    Kishore G

    11/25/2020, 8:47 PM
    is it happening consistently?
  • k

    Ken Krugler

    11/25/2020, 8:57 PM
    Don’t know yet, I’ll try again. I was concerned that my client paid for servers that we never got to use (was setting up a cluster of big boxes), but looks like it didn’t get to the point of EC2 instances starting.
  • d

    Daniel Lavoie

    11/25/2020, 9:02 PM
    Are you testing on us-east-1? AWS had massive outage today
  • k

    Ken Krugler

    11/25/2020, 9:11 PM
    We were, yes 😞
  • k

    Ken Krugler

    11/25/2020, 9:12 PM
    I hope I didn’t cause the outage 🙂
  • d

    Daniel Lavoie

    11/25/2020, 9:13 PM
    Copy code
    8:05 AM PST: Kinesis is experiencing increased API errors in the US-EAST-1 Region. This is also causing issues with ACM, Amplify, API Gateway, AppStream2, AppSync, Athena, Cloudformation, Cloudtrail, CloudWatch, Cognito, Connect, DynamoDB, EventBridge, IoT Services, Lambda, LEX, Managed Blockchain, Resource Groups, S3, SageMaker, Support Console, and Workspaces. This issue has also affected our ability to post updates to the Service Health Dashboard.
  • d

    Daniel Lavoie

    11/25/2020, 9:13 PM
    Best part being :
    This issue has also affected our ability to post updates to the Service Health Dashboard
    .
  • k

    Ken Krugler

    11/25/2020, 9:13 PM
    How meta
  • d

    Daniel Lavoie

    11/25/2020, 9:13 PM
    I feel you may have been impacted by this 😛
  • k

    Ken Krugler

    11/25/2020, 9:15 PM
    Well, I once did take down the main timeshare system at MIT, by accidentally printing a specific sequence of control characters. So there’s some chance my eksctl command was to blame.
    🙂 2
  • k

    Ken Krugler

    11/25/2020, 9:16 PM
    And thanks for the heads-up, looks like our big Pinot demo will be getting rescheduled for next week.
  • k

    Kishore G

    11/30/2020, 9:25 PM
    @Neha Pawar ^^
  • s

    Sri Surya

    12/02/2020, 5:27 AM
    I tried to execute the pinot start controller cmd It got the following error could you please help me with this?
  • s

    Sri Surya

    12/02/2020, 5:28 AM
    controllererror.txt
    controllererror.txt
  • s

    Sri Surya

    12/02/2020, 5:28 AM
    my requirement is to run it on windows ec2 instance
  • k

    Ken Krugler

    12/03/2020, 2:58 PM
    I think that as per https://commons.apache.org/proper/commons-compress/tar.html, Pinot should be using BIGNUMBER_POSIX for the bigNumberMode.
  • k

    Ken Krugler

    12/03/2020, 2:58 PM
    Should I file an issue?
1...137138139...166Latest