Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GeoMesa Accumulo community module #103

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions modules/geomesa-accumulo/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: GeoMesa Accumulo
categories:
- nosql-database
docs:
- id: java
url: https://github.com/geomesa/accumulo-uno
maintainer: community
example: |
```java
var image = DockerImageName.parse("ghcr.io/geomesa/accumulo-uno:2.1.3");
var accumulo = new new AccumuloContainer(image).withGeoMesaDistributedRuntime();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is incorrect Java, isn't it?

var accumulo = new new

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

blerg, i'll put up an MR to fix it, thanks!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed in 0405416

accumulo.start();
```
installation: |
```xml
<dependency>
<groupId>org.geomesa.testcontainers</groupId>
<artifactId>testcontainers-accumulo</artifactId>
<version>1.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.locationtech.geomesa</groupId>
<artifactId>geomesa-accumulo-distributed-runtime_2.12</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
```
description: |
GeoMesa is a suite of tools that enables large-scale geospatial querying and analytics on distributed computing systems.
Apache Accumulo® is a sorted, distributed key/value store that provides robust, scalable data storage and retrieval.
---
Loading
Loading