Yavin has been upgraded to Elide 5.0.2 which includes the following updates and additions:
You can upgrade your Yavin app version to 1.0.0-beta.6
with the following commands:
cd app
git pull origin
./gradlew clean
Add custom hjson to docker container for exploring additional data sources:
docker run -v <your path>:/etc/yavin -p 9999:8080 verizonmedia/yavin:latest
Launch demo app using latest yavin-app jar:
curl https://raw.githubusercontent.com/yavin-dev/app/master/yavin-run.sh | bash
You can upgrade your Yavin app version to 1.0.0-beta.5
with the following commands:
cd app
git pull origin
./gradlew clean
Comment out this line in
build.gradle.kts
to disable the demo data// implementation("dev.yavin","demo-config","0.9")
You can upgrade your Yavin app version to 1.0.0-beta.4
with the following commands:
cd app
git pull origin
./gradlew clean
You can upgrade your Yavin app version to 1.0.0-beta.3
with the following commands:
cd app
git pull origin
./gradlew clean
This introduced a bug in the dimension selector where it expects the elide
pageSize
in yourapplication.yaml
to be larger that the size of<= SMALL
cardinality dimensions.elide: pageSize: 1234
If this is not set, some dimensions may appear to be missing from the dropdown.
You can upgrade your Yavin app version to 1.0.0-beta.2
with the following commands:
cd app
git pull origin
./gradlew clean
You can try out the theme below by updating
ui/app/styles/app.scss
to import'yavin-dark-theme
instead ofyavin-light-theme
ui/app/index.html
to have<body class="denali-dark-theme">
yahoo/elide#1876 N+1 performance improvements in the JPA data store. The JPA store will now return proxied collections (allowing the ORM to batch fetch the collection) and filter, sort, and paginate in memory whenever fetching a collection (N>1) of collections. There is a feature flag to enable/disable this behavior.
For a complete list of API changes, check out the latest Elide Changelog
You can upgrade your Yavin app version to 1.0.0-beta.1
with the following commands:
cd app
rm -rf ui/node_modules
git pull origin