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

    Peter Pringle

    08/02/2021, 12:45 PM
    Do record message keys need to be strings for pinot?
  • d

    Deepak Mishra

    08/02/2021, 6:07 PM
    Hello everyone , i am working on managing offline flows and found that if some time windows has no data ,it doesn’t get eligible segment.that is true .but it stuck into the same time window.So, my concern is to if some time windows doesn’t found any eligible segment , it should move to the next time window.
  • s

    suraj kamath

    08/03/2021, 7:23 AM
    Hi, Is there a configuration attribute to write the controller/broker/server logs to a specific directory other than the default ?
  • a

    Arpita Bajpai

    08/03/2021, 8:10 AM
    Hello everyone, I have been trying schema evolution for real tables and then updating the new column with real values through Upsert. If segment is already created and is in consuming state before schema evolution and we try to update the default column value with the real values or try to insert whole new record with new column added, then the new column values are not getting reflected even after segment reload is done. Once the segment state changes from consuming to done and new segment gets created for consuming the new records ,then the real values get reflected. If the old segment is able to consume all the new records, then the real values don't get reflected, default value remains and real values for that column are lost.
  • a

    Arpita Bajpai

    08/09/2021, 10:58 AM
    Screenshot 1943-05-18 at 16.26.54.png
  • s

    Syed Akram

    08/09/2021, 2:00 PM
    {"code":400,"error":"Invalid transform function
  • s

    Syed Akram

    08/09/2021, 2:00 PM
    facing above error while adding groovy function
  • s

    Syed Akram

    08/09/2021, 2:01 PM
    can someone help?
  • s

    Syed Akram

    08/09/2021, 2:07 PM
    response: {"code":400,"error":"Invalid transform function 'Groovy((CASE WHEN visits = 1 and (first_tab = 'true' or first_tab = 'null') then 1 else 0 end), visitscase)' for column 'visitscase'"}
  • s

    suraj kamath

    08/11/2021, 3:58 AM
    Hi Team, I got to know that Pinot provides support for encryption of data stored in deepstore. A crypter needs to be provided for this. But I am not able to figure out where to provide the crypter details , can anyone help ?
  • x

    xtrntr

    08/11/2021, 9:45 PM
    i have an issue with queries not being deterministic. my table schema looks like this:
    Copy code
    "tableIndexConfig": {
            "invertedIndexColumns": [
                "user",
                "ts",
                "cell"
            ],
            "sortedColumn": [
                "user"
            ],
            "loadMode": "MMAP"
        }
    query looks like this:
    Copy code
    select user, count(*) from events where ts between {start_ts} and {end_ts} and cell between 500 and 550 group by user having count(user) >= 24 limit 10000
    logs look like this:
    Copy code
    Processed requestId=51,table=events_OFFLINE,segments(queried/processed/matched/consuming)=66/66/66/-1,schedulerWaitMs=1,reqDeserMs=0,totalExecMs=388,resSerMs=0,totalTimeMs=390,minConsumingFreshnessMs=-1,broker=Broker_172.20.0.4_8099,numDocsScanned=1039299,scanInFilter=206881916,scanPostFilter=1039299,sched=fcfs
    
    Processed requestId=52,table=events_OFFLINE,segments(queried/processed/matched/consuming)=66/66/66/-1,schedulerWaitMs=0,reqDeserMs=1,totalExecMs=424,resSerMs=2,totalTimeMs=427,minConsumingFreshnessMs=-1,broker=Broker_172.20.0.4_8099,numDocsScanned=1039299,scanInFilter=206881916,scanPostFilter=1039299,sched=fcfs
    
    Processed requestId=53,table=events_OFFLINE,segments(queried/processed/matched/consuming)=66/66/66/-1,schedulerWaitMs=0,reqDeserMs=0,totalExecMs=407,resSerMs=0,totalTimeMs=408,minConsumingFreshnessMs=-1,broker=Broker_172.20.0.4_8099,numDocsScanned=1039299,scanInFilter=206881916,scanPostFilter=1039299,sched=fcfs
    
    Processed requestId=54,table=events_OFFLINE,segments(queried/processed/matched/consuming)=66/66/66/-1,schedulerWaitMs=0,reqDeserMs=0,totalExecMs=416,resSerMs=0,totalTimeMs=418,minConsumingFreshnessMs=-1,broker=Broker_172.20.0.4_8099,numDocsScanned=1039299,scanInFilter=206881916,scanPostFilter=1039299,sched=fcfs
  • x

    xtrntr

    08/11/2021, 9:45 PM
    is this expected or am i doing something wrong here?
  • m

    Mayank

    08/11/2021, 9:46 PM
    Sorry, which part is inconsistent?
  • s

    Syed Akram

    08/17/2021, 4:28 PM
    I've table created with 1 segment locally configured controller... after that i configured deepstore as HDFS and moved controller data of that table 'T' to HDFS deepstore and restarted controller & server... after that query is not serving for that table.
  • s

    Syed Akram

    08/17/2021, 4:28 PM
    Table status is Good
  • s

    Syed Akram

    08/17/2021, 4:29 PM
    only while querying for the migrated controller data from local to hdfs has a problem...
  • s

    Syed Akram

    08/17/2021, 4:29 PM
    can someone help?
  • c

    Charles

    08/18/2021, 8:19 AM
    Hi All I have built pinot0.8.0 release package and deploy in our env , but I found zookeeper page can’t be open
  • c

    Cristian Osiac

    08/18/2021, 10:09 AM
    Hello All! Is there anything special about extracting values from nested JSON object? My (stream) ingestion looks like
    Copy code
    {
        "metadata": 
        {
            "queryId": "20210818_091933_00000_j2ma7", 
            "transactionId": "89328f28-146d-46c7-b562-f9a436e78bac", 
            "query": "select * from postgresql.bnef_930.weather limit 10", 
        }
    }
    My schema has the fields
    Copy code
    {
                "name": "metadata.queryId",
                "dataType": "STRING"
            },
            {
                "name": "metadata.query",
                "dataType": "STRING"
            },
    But those don't get populated. Do I need to explicitly flatten metadata? Also kind of related to this, is unnesting data suported in realease 0.7.1, or is it 0.8 only?
  • s

    Syed Akram

    08/18/2021, 12:14 PM
    Hi, Iam trying to migrate existing controller data from local disk to HDFS deepstore.. reference: https://github.com/apache/pinot/issues/7275 i changed required segment metadata to respective hdfs path after migrating this /tmp/data/PinotController/{Table}/{segment} to hdfs ... and restarted server , controller as well.
  • s

    Syed Akram

    08/18/2021, 12:14 PM
    while querying, its getting timedout and not working
  • s

    Syed Akram

    08/18/2021, 12:15 PM
    @Xiang Fu tried to help me, but didnt worked out, can someone help migrating local data to deep store... ??
  • s

    Syed Akram

    08/18/2021, 12:15 PM
    @Neha Pawar @Mayank
  • s

    Syed Akram

    08/18/2021, 12:18 PM
    https://docs.pinot.apache.org/basics/getting-started/hdfs-as-deepstorage used to configure HDFS as deepstore...
  • s

    Syed Akram

    08/19/2021, 12:08 PM
    like no. of threads (num of segments)
  • c

    Charles

    08/20/2021, 12:44 AM
    image.png
  • b

    beerus

    08/20/2021, 5:29 PM
    Hey, Getting this sometimes while making connection from local
  • b

    beerus

    08/20/2021, 5:30 PM
    sometimes its works, but most of time it doesn't and throws above error
  • b

    beerus

    08/23/2021, 5:29 AM
    Hey , was trying to ingest s3 hosted json file using rest api, but getting some exception in controller node
1...152153154...166Latest