CLI tools for managing stac-fastapi-elasticsearch-opensearch deployments
Project description
SFEOS Tools
CLI tools for managing stac-fastapi-elasticsearch-opensearch deployments.
Table of Contents
Installation
For Elasticsearch
pip install sfeos-tools[elasticsearch]
Or for local development:
pip install -e sfeos_tools[elasticsearch]
For OpenSearch
pip install sfeos-tools[opensearch]
Or for local development:
pip install -e sfeos_tools[opensearch]
For Development (both backends)
pip install sfeos-tools[dev]
Or for local development:
pip install -e sfeos_tools[dev]
Usage
After installation, the sfeos-tools command will be available:
# View available commands
sfeos-tools --help
# View version
sfeos-tools --version
Commands
add-bbox-shape
Adds a bbox_shape field to existing collections for spatial search support. This migration is required for collections created before spatial search was added. Collections created or updated after this feature will automatically have the bbox_shape field.
sfeos-tools add-bbox-shape --backend [elasticsearch|opensearch] [options]
Options:
--backend: Database backend to use (required, choices: elasticsearch, opensearch)--host: Database host (default: localhost or ES_HOST env var)--port: Database port (default: 9200 for ES, 9202 for OS, or ES_PORT env var)--use-ssl/--no-ssl: Use SSL connection (default: true or ES_USE_SSL env var)--user: Database username (default: ES_USER env var)--password: Database password (default: ES_PASS env var)
reindex
Reindexes all STAC indexes to the next version and updates aliases. This command performs the following actions:
- Creates/updates index templates
- Reindexes collections and item indexes to a new version
- Applies asset migration script for compatibility
- Switches aliases to the new indexes
sfeos-tools reindex --backend [elasticsearch|opensearch] [options]
Options:
--backend: Database backend to use (required, choices: elasticsearch, opensearch)--host: Database host (default: localhost or ES_HOST env var)--port: Database port (default: 9200 for ES, 9202 for OS, or ES_PORT env var)--use-ssl/--no-ssl: Use SSL connection (default: true or ES_USE_SSL env var)--user: Database username (default: ES_USER env var)--password: Database password (default: ES_PASS env var)--yes: Skip confirmation prompt
Example:
# Reindex Elasticsearch with custom host and no SSL
sfeos-tools reindex --backend elasticsearch --host localhost --port 9200 --no-ssl
# Reindex OpenSearch with default settings
sfeos-tools reindex --backend opensearch
Get help for a specific command
sfeos-tools add-bbox-shape --help
## Commands
### add-bbox-shape
Add `bbox_shape` field to existing collections for spatial search support.
**Basic usage:**
```bash
# Elasticsearch
sfeos-tools add-bbox-shape --backend elasticsearch
# OpenSearch
sfeos-tools add-bbox-shape --backend opensearch
Connection options:
# Local Docker Compose (no SSL)
sfeos-tools add-bbox-shape --backend elasticsearch --no-ssl
# Remote server with SSL
sfeos-tools add-bbox-shape \
--backend elasticsearch \
--host db.example.com \
--port 9200 \
--user admin \
--password secret
# Using environment variables
ES_HOST=my-cluster.cloud.com ES_PORT=9243 ES_USER=elastic ES_PASS=changeme \
sfeos-tools add-bbox-shape --backend elasticsearch
Available options:
--backend: Database backend (elasticsearch or opensearch) - required--host: Database host (default: localhost or ES_HOST env var)--port: Database port (default: 9200 or ES_PORT env var)--use-ssl / --no-ssl: Use SSL connection (default: true or ES_USE_SSL env var)--user: Database username (default: ES_USER env var)--password: Database password (default: ES_PASS env var)
Development
To develop sfeos-tools locally:
# Install in editable mode with dev dependencies
pip install -e ./sfeos_tools[dev]
# Run the CLI
sfeos-tools --help
# Run tests
pytest
# Format code
pre-commit install
pre-commit run --all-files
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sfeos_tools-0.1.0.tar.gz.
File metadata
- Download URL: sfeos_tools-0.1.0.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4a45612c6d91e4d35ae34c998fe5801c08f225e8f5c1b36756ca7fbf132ac56
|
|
| MD5 |
c9ae20b1c7841c985309ebad5a272a34
|
|
| BLAKE2b-256 |
59b2b373fb4160ef9d337a70f8b59a764dfdf677f2b87616ae0a074d0730656b
|
File details
Details for the file sfeos_tools-0.1.0-py3-none-any.whl.
File metadata
- Download URL: sfeos_tools-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
027204e53f24d6e80979a6ca87f862dd535f58859f7c8538d8abb01ff671068e
|
|
| MD5 |
a2f93b5830279f0cd9dee3fcc9d672cf
|
|
| BLAKE2b-256 |
2ed69116584e15bf2cda3d0745b01afd93e8c251d970f40fe50e98bce43fe864
|