Package to run the osml image intake component service.
Project description
OSML Data Intake
Overview
This application facilitates the processing, conversion, and management of satellite imagery metadata as part of the OversightML (OSML) framework and can be deployed as part of the OSML guidance package. It leverages the GDAL library and integrates with Amazon S3 for seamless storage and sharing to provide imagery metadata to other service components. Below is an overview of the main features:
Intake
The intake processes metadata from satellite imagery files, such as image dimensions and geographical coordinates. Uploads auxiliary files and metadata to Amazon S3 and serves converted meta-data into STAC items on an SNS topic.
Ingest
Ingests SpatioTemporal Asset Catalog (STAC) items placed on an SNS topic into via the STAC Fast API database logic.
STAC
The STAC component powers a Fast API front end that allows for interacting with the OpenSearch database that houses the processed geospatial assets.
Table of Contents
Getting Started
Prerequisites
First, ensure you have installed the following tools locally
Installation Guide
- Clone
osml-data-intake
package into your desktop
git clone https://github.com/aws-solutions-library-samples/osml-data-intake.git
- Run
tox
to create a virtual environment
cd osml-data-intake
tox
Documentation
You can find documentation for this library in the ./doc
directory. Sphinx is used to construct a searchable HTML
version of the API documents.
tox -e docs
Testing Locally
After setting up your environment, you can verify your setup by sending a test message to the SNS topic that will trigger your application workflow. This is useful for ensuring that your processing pipeline works correctly with a given image.
Prerequisites:
- Ensure that your AWS credentials are configured properly in the environment.
- Make sure that you have the AWS CLI installed and configured.
- Deploy the osml-data-intake infrastructure using the guidance package
Testing Data Intake
Run the Test Command:
-
Replace the following with your specific details:
Topic ARN: Update the--topic-arn
argument with the ARN of the SNS topic that triggers your application.
S3 URL: Replace the S3 URL in the--message
argument with the URL of the bucket or image file you want to test. -
Execute the following command, substituting your actual values:
python3 bin/stream/stream_cli.py --topic-arn <YOUR_TOPIC_ARN> --s3-uri <YOUR_S3_URI> --item-id <DESIRED_ITEM_ID>
-
Validate Expected Output:
This will trigger the processing of the specified image file in your application. Verify that the auxiliary files are generated and uploaded to your configured S3 bucket, and ensure that the logs indicate a successful run.
Testing Data Catalog
-
To put a test item directly in your STAC catalog, update the following command and run it with your endpoint:
curl -X "POST" "<<YOUR_API_URL>>/data-catalog/collections" \ -H 'Content-Type: application/json; charset=utf-8' \ -H "Authorization: Bearer $TOKEN" \ -d $'{ "type": "Feature", "stac_version": "1.0.0", "id": "example-item", "properties": { "datetime": "2024-06-01T00:00:00Z", "start_datetime": "2024-06-01T00:00:00Z", "end_datetime": "2024-06-01T01:00:00Z" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.99404, 39.75621], [-104.99404, 39.74575], [-104.97342, 39.74575], [-104.97342, 39.75621], [-104.99404, 39.75621] ] ] }, "links": [ { "rel": "self", "href": "http://example.com/catalog/example-item.json", "type": "application/json" }, { "rel": "root", "href": "http://example.com/catalog/catalog.json", "type": "application/json" } ], "assets": { "thumbnail": { "href": "http://example.com/thumbs/example-item.jpg", "title": "Thumbnail", "type": "image/jpeg" }, "data": { "href": "http://example.com/data/example-item.tif", "title": "Geospatial Data", "type": "image/tiff; application=geotiff" } }, "collection": "example-collection-3" }'
-
To get your item run:
curl -X "GET" "<<YOUR_API_URL>>/data-catalog/collections"`
Submitting a Bulk Ingest Job
This workflow is tailored for efficiently processing large quantities of images stored in an S3 bucket and integrating them into a STAC catalog using AWS services. It is designed to streamline the ingestion process for thousands of images awaiting cataloging.
Prerequisites:
- Ensure AWS credentials are correctly configured.
- Install and configure the AWS CLI.
- Active STAC Catalog service.
- S3 Input and Output Buckets configured.
- Build and push a Docker container to your ECR repository:
./scripts/build_upload_container.sh
- Create an execution role using the following command:
aws iam create-role \
--role-name BulkIngestSageMakerExecutionRole \
--assume-role-policy-document '{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": ["sagemaker.amazonaws.com", "opensearchservice.amazonaws.com"]
},
"Action": "sts:AssumeRole"
}
]
}' \
--description "Allows SageMaker to execute processing jobs and specific S3 actions." \
&& aws iam attach-role-policy \
--role-name BulkIngestSageMakerExecutionRole \
--policy-arn arn:aws:iam::aws:policy/AmazonS3FullAccess \
&& aws iam attach-role-policy \
--role-name BulkIngestSageMakerExecutionRole \
--policy-arn arn:aws:iam::aws:policy/AmazonSageMakerFullAccess
Retrieve the full ARN of the custom SageMaker role:
aws iam get-role --role-name BulkIngestSageMakerExecutionRole --query 'Role.Arn' --output text
-
Head over to Bulk Configuration README.md on configuring your bulk job
-
Execute the SageMaker Processing Job:
python3 ./bin/bulk/bulk_cli.py \ --s3-uri <S3 Input Bucket> \ --region <AWS Region> \ --output-bucket <S3 Output Bucket>
Example command:
python3 ./bin/bulk/bulk_cli.py \ --s3-uri s3://test-images-bucket \ --region us-west-2 \ --output-bucket s3://<id>-output-bucket
-
To monitor the ProcessingJob status, there are two ways:
-
Navigate to the SageMaker Processing Console: AWS -> SageMaker -> Processing (Left Sidebar) -> Processing Job, and monitor it there.
-
Alternatively, monitor using the command:
python3 bin/bulk/check_job.py --region us-west-2 [--job name]
Note: Replace [--job name] with your specific job name if needed.
-
-
Cleanup when completed:
-
Delete Bulk Ingest Container
aws ecr batch-delete-image --repository-name data-bulk-ingest-container --image-ids "$(aws ecr describe-images --repository-name data-bulk-ingest-container --query 'imageIds[*]' --output json)" aws ecr delete-repository --repository-name data-bulk-ingest-container --force
-
Delete Custom Execution Role ARN
aws iam delete-role --role-name BulkIngestSageMakerExecutionRole
-
Support & Feedback
To post feedback, submit feature ideas, or report bugs, please use the Issues section of this GitHub repo.
If you are interested in contributing to OversightML Data Intake, see the CONTRIBUTING guide.
Security
See CONTRIBUTING for more information.
License
MIT No Attribution Licensed. See LICENSE.
Project details
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
File details
Details for the file osml_data_intake-1.1.2.tar.gz
.
File metadata
- Download URL: osml_data_intake-1.1.2.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e81a7444172aa4ee6db6a69e586823b45ea1d63cec216831777a8081494f314 |
|
MD5 | cc1fe60a5813d86e4d73622e427b4236 |
|
BLAKE2b-256 | 4a85b6f9eec4a153e8804f916a9470ff16fbf9229d5364d09b5cc15126496c39 |
File details
Details for the file osml_data_intake-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: osml_data_intake-1.1.2-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0992f2216377071554edc5cef935b9ad281923e309f9488ee3a277598c29823 |
|
MD5 | cc3451ef22fa771e0f2bd48995f9e8ae |
|
BLAKE2b-256 | 3fe667a56907fff8dc478d68639bfe4d3d4defea09245a0be69cc9f6ad79e5d8 |