graalvm

Discuss GraalVM related topics. Use clojure 1.10.2 or newer for all new projects. Contribute to https://github.com/clj-easy/graal-docs and https://github.com/BrunoBonacci/graalvm-clojure. GraalVM slack: https://www.graalvm.org/slack-invitation/.
dangercoder 2019-12-30T14:04:10.046300Z

does spec work with graalvm or is it some graalvm limitation? im using https://github.com/taylorwood/clj.native-image

dangercoder 2019-12-30T14:08:14.046700Z

(i tried with clj 1.10.1)

dangercoder 2019-12-30T14:56:06.048Z

ill try that, thanks 🙂

dangercoder 2019-12-30T15:07:49.048400Z

has anyone tried graalvm with org.clojure/test.check?

✅ 1
borkdude 2019-12-30T15:09:28.048900Z

@jarvinenemil I think there has been a mention of this in a talk by Jan Stephien

👍 1
dangercoder 2019-12-30T15:19:04.049800Z

It works well for me now (generating data with spec) using graalvm native-image. I'll have a look at his talks @borkdude, thanks for sharing!

dangercoder 2019-12-30T19:47:20.052700Z

Anyone tried kafka producer with native-image? this is what micronaut does to make it work in their framework. Im trying to do the same but since gen-class does not work with static properties I must find a different way: https://github.com/micronaut-projects/micronaut-kafka/blob/master/kafka/src/main/java/io/micronaut/configuration/kafka/graal/KafkaSubstitutions.java

dangercoder 2019-12-30T19:48:57.053200Z

currently the org.apache.kafka.common.record.CompressionType is giving me issues

dangercoder 2019-12-30T20:55:08.053900Z

a lot of MethodHandle in the kafka library