Track master and generate the facades with the shared JVM code generator - #22
Merged
estebanzimanyi merged 1 commit intoJul 16, 2026
Merged
Conversation
Bring MobilityKafka to parity with MobilitySpark and MobilityFlink: - Generate the org.mobilitydb.meos.MeosOps* facades at build time with the single tools/codegen_jvm.py --engine kafka, the generator vendored identically by every JVM binding, and drop the 57 committed facades. It emits forwarders over the full JMEOS jar surface (grouped by the catalog object model, with a sequence-only guard from returnType.canonical) in place of the codegen_facades.py + classify_streaming_relevance.py + regen_baseline.sh + baseline trio. - Track upstream master: provision the catalog + libmeos with mobilitydb-ref master, stage the derived catalog to tools/meos-idl.json, build the JMEOS jar from JMEOS main; drop tools/meos-source-commit.txt and the build-jmeos.sh pinned SHAs.
estebanzimanyi
force-pushed
the
jvmgen/unify-generator
branch
from
July 16, 2026 10:54
ad5a336 to
32d6426
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bring MobilityKafka to parity with MobilitySpark#40 and MobilityFlink#43 (both merged): one shared generator, and track upstream master.
org.mobilitydb.meos.MeosOps*facades at build time with the singletools/codegen_jvm.py --engine kafka, the generator vendored identically by every JVM binding, and drop the 57 committed facades. It emits forwarders over the full JMEOS jar surface (grouped by the MEOS-API catalog object model, with a sequence-only guard fromreturnType.canonical) in place of thecodegen_facades.py+classify_streaming_relevance.py+regen_baseline.sh+ baseline trio.mobilitydb-ref: master, stage the derived catalog totools/meos-idl.json, build the JMEOS jar from JMEOSmain; droptools/meos-source-commit.txtand thebuild-jmeos.shpinned SHAs.The generator file matches MobilitySpark#40 / MobilityFlink#43. The kafka engine emits 187 facade classes / 4529 methods (137 sequence-only guarded); the output matches the flink engine except the
-Dmobilitykafka.meos.enabledtoggle. The hand-writtenMeosSetSetJoinand thekafka.meos.wiringsclasses are unchanged.