i’m encountering a problem with running `docker co...
# troubleshooting
a
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
@Alexander Pucher ^^
a
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
@Alexander Pucher Could you take a look ^^
a
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
@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
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
Thanks for sharing @Alon Burg