https://pinot.apache.org/ logo
a

Alon Burg

04/28/2021, 12:30 PM
i’m encountering a problem with running
docker container exec -it pinot-quickstart bin/generator.sh complexWebsite
pinot just exits, without any error in the log. Trying to follow ThirdEye quickstart
k

Kishore G

04/28/2021, 2:50 PM
@Alexander Pucher ^^
a

Alon Burg

04/28/2021, 3:38 PM
okay… it seems like it was related to the memory constraints of docker
thank you @Kishore G
Now that I’ve been able to run it, I’m not seeing the store data in thirdeye
seeing these warnings+error:
Copy code
Exception in thread "main" org.h2.jdbc.JdbcSQLException: Index "GENERIC_JSON_ENTITY_BEANCLASS_IDX" already exists; SQL statement:

create index generic_json_entity_beanclass_idx on generic_json_entity(beanClass) [42111-192]
	at org.h2.message.DbException.getJdbcSQLException(DbException.java:345)

...

Apr 28, 2021 1:17:20 PM org.glassfish.jersey.internal.Errors logErrors
WARNING: The following warnings have been detected: WARNING: Return type, java.util.List<?>, of method, public java.util.List<?> org.apache.pinot.thirdeye.dashboard.resources.v2.DataResource.getWhereNameLike(java.lang.String,java.lang.String), is not resolvable to a concrete type.
m

Mayank

04/28/2021, 6:37 PM
@Alexander Pucher Could you take a look ^^
a

Alexander Pucher

04/28/2021, 6:53 PM
Looks like this is blocked on a ThirdEye issue now. @Suvodeep Pyne could you check this?
My instinct would be to wipe TE’s H2 database files an try re-running
s

Suvodeep Pyne

04/28/2021, 6:56 PM
@Alexander Pucher Yes. I think the initial tables are not coming up properly on h2. How are we running TE? is this on the latest master?
a

Alon Burg

04/29/2021, 7:58 AM
Copy code
docker run \
    --network=pinot-demo \
    --name  thirdeye-backend \
    -p 1426:1426 \
    -p 1427:1427 \
    -v $PWD/docker/images/pinot-thirdeye/config:/opt/thirdeye/config -d apachepinot/thirdeye:latest pinot-quickstart
I’m using the volume mount for configuration to override the configuration errors removing
classifier: false
in
detector.yml
and removing
whitelistDatasets: []
in
dashboard.yml
@Suvodeep Pyne
after deleting
h2db.mv.db
i’ve been able to make it load right
thank you all
s

Suvodeep Pyne

04/29/2021, 2:57 PM
Thanks for sharing @Alon Burg