Julien Tournay
Julien Tournay
As discussed on Slack, this replaces https://github.com/spotify/scio/pull/3872 and #3750, fixes #3754 and fixes #3710. All the macros related code is now separated in its own folder and lives under `scala-2`.
This hopefully remove the `Unsupported event type: ''` error in the logs.
In a HA setup, one may want to have more than 1 JM replica. fixes #256
The `flink` command line supports a number of flags, like `--classpath`. Those flags need to be passed before the jar name, otherwise, flink simply ignore them. For example the following...
This happened while calling magnolia to derive a typeclasse instance for `com.google.bigtable.v2.Mutation.MutationCase`: ``` :16: error: exception during macro expansion: scala.ScalaReflectionException: Java enum DELETE_FROM_FAMILY is not a type at scala.reflect.api.Symbols$SymbolApi.asType(Symbols.scala:183) at...
Magnolia can not derive typeclasses instances for the following class: ```scala class PrivateClass private (val value: Long) extends AnyVal object PrivateClass { def apply(l: Long) = new PrivateClass(l) } ```...
AFAIK there's no documentation available rn about using an editor (vscode) together with metals and have support for both Scala 2.x and Scala 3 in a single project. It would...
Scala 3 won't support macro annotation, which will break a number of open-source libraries. AFAIK there is no "official" documented alternative and the only solution currently being tested by the...
This PR contains several optimizations for the Datastream API when used in Batch mode. In it's current state, using Datastream for batch is much slower than Dataset, this is an...
## Context Flink will drop support for the dataset API in 2.0 which should be released by EOY so it quite important for Beam to support Datastream well. ## The...