Skip to content

Commit

Permalink
rename memory module, split up tests for all modules
Browse files Browse the repository at this point in the history
  • Loading branch information
elahrvivaz committed Sep 17, 2024
1 parent 4a149be commit 073a768
Show file tree
Hide file tree
Showing 39 changed files with 104 additions and 8 deletions.
102 changes: 99 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,111 @@ jobs:
- name: Remove geomesa artifacts
if: success() || failure()
run: rm -rf ~/.m2/repository/org/locationtech/geomesa
accumulo-tests:
accumulo-ds-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -pl :geomesa-accumulo-datastore_${{ inputs.scala-version }}
scala-version: ${{ inputs.scala-version }}
non-accumulo-tests:
accumulo-other-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -pl -:geomesa-accumulo-datastore_${{ inputs.scala-version }}
module-selector: -f geomesa-accumulo -pl -:geomesa-accumulo-datastore_${{ inputs.scala-version }}
scala-version: ${{ inputs.scala-version }}
arrow-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-arrow
scala-version: ${{ inputs.scala-version }}
cassandra-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-cassandra
scala-version: ${{ inputs.scala-version }}
convert-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-convert
scala-version: ${{ inputs.scala-version }}
cqengine-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-cqengine-parent
scala-version: ${{ inputs.scala-version }}
features-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-features
scala-version: ${{ inputs.scala-version }}
fs-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-fs
scala-version: ${{ inputs.scala-version }}
gt-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-gt
scala-version: ${{ inputs.scala-version }}
hbase-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-hbase
scala-version: ${{ inputs.scala-version }}
kafka-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-kafka
scala-version: ${{ inputs.scala-version }}
lambda-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-lambda
scala-version: ${{ inputs.scala-version }}
metrics-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-metrics
scala-version: ${{ inputs.scala-version }}
process-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-process
scala-version: ${{ inputs.scala-version }}
redis-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-redis
scala-version: ${{ inputs.scala-version }}
spark-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-spark
scala-version: ${{ inputs.scala-version }}
utils-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -f geomesa-utils-parent
scala-version: ${{ inputs.scala-version }}
other-tests:
needs: build-scala
uses: ./.github/workflows/module-unit-tests.yml
with:
module-selector: -pl geomesa-filter,geomesa-index-api,geomesa-jobs,geomesa-security,geomesa-tools,geomesa-z3
scala-version: ${{ inputs.scala-version }}
2 changes: 1 addition & 1 deletion docs/user/appendix/memory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
In-Memory Indexing
==================

The **geomesa-memory** module provides a in-memory cache of ``SimpleFeature``\ s that supports indexing and filtering,
The **geomesa-cqengine** module provides a in-memory cache of ``SimpleFeature``\ s that supports indexing and filtering,
using the `CQEngine <https://github.com/npgall/cqengine>`__ collection query engine. This is implemented by the
``GeoCQEngine`` class.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<artifactId>geomesa-memory_2.12</artifactId>
<artifactId>geomesa-cqengine-parent_2.12</artifactId>
<groupId>org.locationtech.geomesa</groupId>
<version>5.1.0-SNAPSHOT</version>
</parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<artifactId>geomesa-memory_2.12</artifactId>
<artifactId>geomesa-cqengine-parent_2.12</artifactId>
<groupId>org.locationtech.geomesa</groupId>
<version>5.1.0-SNAPSHOT</version>
</parent>
Expand Down
2 changes: 1 addition & 1 deletion geomesa-memory/pom.xml → geomesa-cqengine-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>geomesa-memory_2.12</artifactId>
<artifactId>geomesa-cqengine-parent_2.12</artifactId>
<name>GeoMesa In-Memory Database</name>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<module>geomesa-arrow</module>
<module>geomesa-cassandra</module>
<module>geomesa-convert</module>
<module>geomesa-cqengine-parent</module>
<module>geomesa-features</module>
<module>geomesa-filter</module>
<module>geomesa-fs</module>
Expand All @@ -35,7 +36,6 @@
<module>geomesa-jobs</module>
<module>geomesa-kafka</module>
<module>geomesa-lambda</module>
<module>geomesa-memory</module>
<module>geomesa-metrics</module>
<module>geomesa-process</module>
<module>geomesa-redis</module>
Expand Down

0 comments on commit 073a768

Please sign in to comment.