Aaron Klish

Results 90 comments of Aaron Klish

Will get back to you on the memory. I want to profile standalone. What are your JVM settings for launching standalone? JVM will fill up whatever memory you allocate to...

I did a quick memory profile of Elide standalone after boot: < 40Mb of heap (even though my JVM was set to allow for up to 8Gb of heap).

I haven't tried this, but I'm wondering if something might be possible with the following elements: 1. Named native queries in Hibernate: https://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.html#annotations-jpa-namednativequeries 2. SqlResultSetMapping to map the native query...

@micheljung I have a solution that works but you might consider waiting a few days for Elide 3.0 to be released. Elide 3.0 is a big refactor/cleanup on the data...

The solution would work the same way for pre-3.0 and 3.0. I was mistaken about named queries. Elide's hibernate store constructs queries either through Criteria or HQL. It is not...

Interesting idea. Elide includes a number of JAX-RS endpoints we could leverage with Quarkus: - [JSON-API](https://github.com/yahoo/elide/blob/master/elide-core/src/main/java/com/yahoo/elide/jsonapi/resources/JsonApiEndpoint.java) - [GraphQL](https://github.com/yahoo/elide/blob/master/elide-graphql/src/main/java/com/yahoo/elide/graphql/GraphQLEndpoint.java) - [Swagger](https://github.com/yahoo/elide/blob/master/elide-swagger/src/main/java/com/yahoo/elide/swagger/resources/DocEndpoint.java) What remains is configuration. Quarkus feels similar to spring boot...

I see the description states _extension_. Will need to think about what else might be required to make that work.

Ok. Spent more time unpacking what it means to actually build an extension. In short, Elide does some class path scanning at service boot that finds its way into the...

#2284 is all that is needed to unblock this I think. We'll probably do another release next week. I think a minimum POC would be to: - Use one of...

@StephenOTT I started playing with this. It is not turning out to be as much work as I thought it might be (thus far). Here is the branch I'm working...