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

    Kishore G

    01/18/2019, 6:48 PM
    thats ok, we should definitely pay attention to lambda's and functional style coding while reviewing our code
    👍 2
  • k

    Kishore G

    01/18/2019, 6:49 PM
    readability >>>>>>>>>>>>> optimizing lines of code
  • a

    Ananth Packkildurai

    01/18/2019, 7:09 PM
    Verbosity is a feature 🙂
  • a

    Ananth Packkildurai

    01/25/2019, 7:14 PM
    👋 as discussed created a new channel to discuss text search for Pinot. #CFQUJ9HGE 🙇
  • s

    Sunitha

    01/27/2019, 5:37 PM
    Created a new channel to discuss objectType/compoundType support: #CFQGALEPP
  • j

    Jackie

    01/29/2019, 4:40 AM
    Merged the auto reformat PR: https://github.com/apache/incubator-pinot/pull/3739 In case your current working branch has conflicts with this one (which is very likely), to resolve conflicts, after rebasing on this change: - For any conflict, pick the change in your branch - Reformat the file using IntelliJ after all conflicts resolved From now on, please follow the Pinot Style introduced in PR: https://github.com/apache/incubator-pinot/pull/3705 When reformatting enum, be cautious because sometimes the result is not what we expected (Mac and Linux IntelliJ seems to have different behavior)
  • k

    Kishore G

    01/29/2019, 5:32 AM
    Does this work on eclipse?
  • s

    Sunitha

    01/30/2019, 5:57 PM
    We will be deleting existing snapshot releases/tags to be Apache compliant. I will be running this for each tag that shows up for `git tag`:
    git push --delete origin <tag>
    . I just deleted v0.002 and confirmed its gone as expected. If you have concerns with this, please reach out before noon
  • s

    Sunitha

    01/30/2019, 9:24 PM
    I am starting the delete of existing tags/releases
  • s

    Sunitha

    01/30/2019, 10:01 PM
    ^ is done. https://github.com/apache/incubator-pinot/releases
  • s

    Sunitha

    01/31/2019, 6:04 PM
    Does anyone know if Druid supports star-tree like indexing? I couldn't find anything specific in their documentation
  • a

    Ananth Packkildurai

    01/31/2019, 6:05 PM
    No it doesn’t
  • s

    Sunitha

    01/31/2019, 6:07 PM
    Cool, thanks for confirming!
  • k

    Kishore G

    01/31/2019, 6:45 PM
    Druid has sketches which can support approximate counts
  • a

    Ananth Packkildurai

    01/31/2019, 6:46 PM
    Yes that’s true.
  • s

    Seunghyun

    01/31/2019, 10:04 PM
    <!here> We are going to change Pinot version to
    0.1.0-SNAPSHOT
    as part of apache release preparation. https://github.com/apache/incubator-pinot/pull/3772 1. If your build script is hardcoding on
    0.016
    version, please make the change. 2. For creating a binary distribution tarbell, u need to run
    mvn install -Pbin-dist -DskipTests
    .
  • s

    Shireen Nagdive

    02/12/2019, 10:33 PM
    which java version does the latest Pinot code support?
  • s

    Shireen Nagdive

    02/12/2019, 10:33 PM
    latest java version*
  • m

    Mayank

    02/12/2019, 10:34 PM
    version 8
  • s

    Shireen Nagdive

    02/12/2019, 10:35 PM
    Thanks
  • c

    Chang Wu

    02/16/2019, 10:07 AM
    Will pinot still create segments and segment metadata、dictionary and index for HDFS raw data which is already columnar like ORC/Parquet ?
  • c

    Chinmay Soman

    02/25/2019, 5:42 PM
    Question regarding CombineService (merging blocks) - if two blocks have different schemas although the schemas are backwards compatible (i.e. columns are added), currently this seems to throw an exception :
    CombineService:141 - Data schema inconsistency between merged block schema:
    Is this expected ?
  • c

    Chinmay Soman

    02/25/2019, 5:43 PM
    DataSchema -> isTypeCompatibleWith
    seems to check this:
    Copy code
    if (!Arrays.equals(_columnNames, anotherDataSchema._columnNames)) {
    which makes me believe it doesn't handle schema evolution. Just checking if this is a real issue or am I doing something wrong
  • m

    Mayank

    02/25/2019, 5:43 PM
    IIRC, this is not the schema of the table, but of the blocks (ie projected columns in the query)
  • m

    Mayank

    02/25/2019, 5:44 PM
    Schema evolution + auto backfill is supported.
  • m

    Mayank

    02/25/2019, 5:44 PM
    Before addiing this exception, I believe the results were incorret, were non-mergable block was silently dropped
  • c

    Chinmay Soman

    02/25/2019, 5:46 PM
    so from the info log, it seems the second block has one more column (than the first). I'm guessing the query is probably doing something like 'select *' and hence we cannot merge ?
  • c

    Chinmay Soman

    02/25/2019, 5:47 PM
    should the solution to such issues be - query specific columsn instead ? (just trying to understand how the end user should query such datasets)
  • m

    Mayank

    02/25/2019, 5:49 PM
    We either propose to auto-backfill, or add time filter in queries to protect against one query spanning across segments that don't have all have columns in the query.
  • c

    Chinmay Soman

    02/25/2019, 5:49 PM
    I see
1...656667...160Latest