https://pinot.apache.org/ logo
Join Slack
Powered by
# general
  • a

    Alex

    11/23/2019, 1:22 AM
    Data stays
  • a

    Alex

    11/23/2019, 1:23 AM
    But it is very consistent. @User if you want we can do a zoom and I will show you
  • s

    Subbu Subramaniam

    11/23/2019, 3:34 PM
    can you grep the segment name from the server logs and post the results?
  • s

    Subbu Subramaniam

    11/23/2019, 3:35 PM
    oh ok, you are saying the data stays, That is good.
  • s

    Subbu Subramaniam

    11/23/2019, 3:36 PM
    We are experiencing somethning similar, and have narrowed it down to SimpleMarioClient used by kafka consumer. It creates hashed wheel timers causing the server to freeze and die, and we have to restart it. I wonder if this is the same problem you are seeing
  • s

    Subbu Subramaniam

    11/24/2019, 12:46 AM
    @User how mmany realtime servers do you have? How many partitions are there in your kafka topic? What is the rate of ingestion? (events per second, on each partition), What is the amount of memory on the hosts? Have you turned on offheap memory for consuming segments? Reading through https://engineering.linkedin.com/blog/2019/auto-tuning-pinot? may help
  • a

    Alex

    11/24/2019, 12:54 AM
    3 servers, 100 partitions. No ingestion right now. Offheap is enabled
  • s

    Subbu Subramaniam

    11/24/2019, 12:55 AM
    what is the replication factor? So, realtime servers are cracking up with zero ingestion and one query?>
  • a

    Alex

    11/24/2019, 1:11 AM
    Kafka - 3
  • a

    Alex

    11/24/2019, 1:11 AM
    Same for table
  • a

    Alex

    11/24/2019, 1:11 AM
    Yep, nothing on Kafka
  • a

    Alex

    11/24/2019, 1:12 AM
    1 query
  • e

    Elon

    11/25/2019, 7:23 PM
    Is there a to uppercase string function in pinot?
  • k

    Kishore G

    11/25/2019, 7:40 PM
    should be simple to add
  • k

    Kishore G

    11/25/2019, 7:40 PM
    https://github.com/apache/incubator-pinot/issues/4856
  • a

    Alex

    11/26/2019, 1:55 AM
    image.png
  • k

    Kishore G

    11/26/2019, 5:16 AM
    Can’t think of a valid reason for that.
  • e

    Elon

    12/03/2019, 6:05 PM
    We are trying to use HadoopPinotFS for deep storage in the controller but get the following classpath error. The HadoopPinotFS is not in the lib directory of the pinot-distribution:
    Copy code
    java.lang.ClassNotFoundException: org.apache.pinot.filesystem.HadoopPinotFS
    	at <http://java.net|java.net>.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_232]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_232]
    	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352) ~[?:1.8.0_232]
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_232]
    	at java.lang.Class.forName0(Native Method) ~[?:1.8.0_232]
    	at java.lang.Class.forName(Class.java:264) ~[?:1.8.0_232]
    	at org.apache.pinot.filesystem.PinotFSFactory.init(PinotFSFactory.java:57) ~[pinot-common-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.controller.ControllerStarter.initPinotFSFactory(ControllerStarter.java:422) ~[pinot-controller-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.controller.ControllerStarter.setUpPinotController(ControllerStarter.java:267) ~[pinot-controller-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.controller.ControllerStarter.start(ControllerStarter.java:229) ~[pinot-controller-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.tools.admin.command.StartControllerCommand.execute(StartControllerCommand.java:163) ~[pinot-tools-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.tools.admin.PinotAdministrator.execute(PinotAdministrator.java:145) ~[pinot-tools-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
    	at org.apache.pinot.tools.admin.PinotAdministrator.main(PinotAdministrator.java:156) ~[pinot-tools-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT-eb45b438c5053f5caaf289614f386706a472947e]
  • e

    Elon

    12/03/2019, 6:06 PM
    Is anyone familiar with using HadoopPinotFS?
  • k

    Kishore G

    12/03/2019, 6:27 PM
    You need to add Pinot Hadoop filesystem jar to the classpath
  • e

    Elon

    12/03/2019, 6:58 PM
    Yep, I see that the admin.sh script is generated in the pinot-tools module. Where would I add it? If this works I can submit a pr with the fix.
  • k

    Kishore G

    12/03/2019, 7:09 PM
    Set EXTRA_CLASSPATH environment variable to include Hadoop filesystem jars.
    👍 1
  • p

    Paulo Silva

    12/08/2019, 10:51 PM
    Hello everyone, how can we work with many date fields in a pinot table?
  • m

    Mayank

    12/08/2019, 10:52 PM
    You could have multiple date fields, but will need to pick at most one of them as a time column.
  • p

    Paulo Silva

    12/08/2019, 10:57 PM
    Pinot documentation doesn't mention about date type in dimensions
  • k

    Kishore G

    12/08/2019, 10:57 PM
    There is a datetime spec
  • k

    Kishore G

    12/08/2019, 10:58 PM
    You can have multiple columns datetime fields.
  • k

    Kishore G

    12/08/2019, 11:01 PM
    https://cwiki.apache.org/confluence/display/PINOT/Schema+TimeSpec+Refactoring This might help
  • p

    Paulo Silva

    12/08/2019, 11:01 PM
    INT, FLOAT, LONG, DOUBLE, STRING, BYTES and also DATETIME field? I think that we need update the section "Pinot schema" then.
  • p

    Paulo Silva

    12/08/2019, 11:01 PM
    https://pinot.readthedocs.io/en/latest/schema.html
1...102103104...160Latest