-
Notifications
You must be signed in to change notification settings - Fork 27
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
VAMS v2.1 Release #201
Merged
Merged
VAMS v2.1 Release #201
Conversation
This file contains 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
…s-govcloud into release/2.1.0
…s-govcloud into release/2.1.0
…s-govcloud into release/2.1.0
… can be installed
…s-govcloud into release/2.1.0
…s-govcloud into release/2.1.0
… classic auth flow. Added ability to set timeout in config.Know issue: webpage will refresh after an hour during upload, but upload will still occur if stay logged into browser page
…files now within a 24 hour window.
…imeout, added comments to change in auth flow
Extended auth token to a day using assume_role_with_web_identity with classic auth flow... See merge request aws-spatial-prototyping/vams-govcloud!5
…ion, Update default timeout to 3600 seconds, Update Documentation and Diagrams, Fix the docker platform versions to amd64, Fixed/Updated default lambda artefacts zip with latest function code, Fixed pipeline upload logic for files, Lint/Prettier Fix
…gic was missing for checking/moving pipeline uploaded assets to their primary assets location
…peline, Feature to show pipeline use-case lambda function names as CDK deployment outputs for easier registration in VAMS, Added file outputType to pipeline step function input data, Update code to display all files at a asset location and show the primary asset file with a "(Primary)" tag, Fixed bug with "View Asset Metadata" incorrectly showing button showing on root asset folder
…rsion pipeline, rename GenAi3dMetadataExtraction to GenAi3dMetadataLabeling, update file headings for release, update documentation and diagrams to match
… and visualizer pipeline runs
…ams:* claims are not available
…et was removed in a past update
…yping/vams-govcloud into release/2.1.0
…mance, or deployment issues, Mac M1 deployment fix for fixing platform type in CDK for pipelines
…eline asset upload
VAMS v2.1.0 Release See merge request aws-spatial-prototyping/vams-govcloud!8
…aries that currently cannot be swapped
cottingr
approved these changes
Nov 15, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved to merge
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.
[2.1.0] (2024-11-15)
This minor version includes changes to VAMS pipelines, use-case pipeline implementations, and v2.0 bug fixes.
Recommended Upgrade Path: A/B Stack Deployment with data migration using staging bucket configuration and upgrade migration scripts for DynamoDB tables in
./infra/upgradeMigrationScripts
⚠ BREAKING CHANGES
Due to DynamoDB table structure changes, a A/B Stack deployment with migration script is recommended if there are existing pipelines that need to be automatically brought over.
Features
PotreeViewerPipeline
(previously VisualizerPipeline) is now baselined to the new standard use-case pipeline pattern to support external state machine callbacks (i.e., from VAMS pipeline workflows)PreviewPotreeViewerPipeline
(previously VisualizerPipeline) can now be registered and called from VAMS pipeline workflows (suggested to be called from a preview type pipeline) via the 'vamsExecutePreviewPcPotreeViewerPipeline' lambda function.GenAiMetadata3dLabelingPipeline
that can take in OBJ, FBX, GLB, USD, STL, PLY, DAE, and ABC files from an asset and use generative AI to analyze the file through 2D renders what keywords, tags, or other metadata the file should be associated with. Pipeline can be called by registering 'vamsExecuteGenAiMetadata3dLabelingPipeline' lambda function with VAMS pipelines / workflows.Conversion3dBasic
that can convert between STL, OBJ, PLY, GLTF, GLB, 3MF, XAML, 3DXML, DAE, and XYZ file types. VAMS pipeline registrationoutputType
will define for each pipeline registration what the output file extension type will be.pipelineExecutionType
to VAMS pipelines (previouslypipelineType
) and added a new context topipelineType
. Current pipeline types areStandardFile
andPreviewFile
. These are implemented to support future roadmap implementations of different pipeline types and auto-executions options on asset file uploads.inputParameters
to pipelines to allow the optional specification of a JSON object which can be used within a pipeline execution to set pipeline configuration options. This is set at the time of creating a VAMS pipeline.inputMetadata
to pipeline inputs which automatically pulls in asset name, description, tags, and all metadata fields of the asset to a pipeline execution. This can also be used in the future to pull through user-defined inputMetadata at the time of an execution with additional UI/UX.inputPath
andoutputPath
of pipeline function execution inputs toinputS3AssetFilePath
andoutputS3AssetFilesPath
outputS3AssetPreviewPath
,outputS3AssetMetadataPath
, andinputOutputS3AssetAuxiliaryFilesPath
pipeline execution parameter inputs to support different location paths for asset data outputs and writing to asset auxiliary temporary path locationsoutputType
for user-specified expected file extension output for pipelines based on the VAMS pipeline registration. OutputType is not enforced and is something pipelines need to work into their own business logic as appropriate.processWorkflowExecutionOutput
lambda function (previouslyuploadAllAssets
) to also account for metadata data object outputs of pipelines to update against assets. Preview image output logic is stubbed out but will not be fully implemented until the new upload / storage process overhaul is completed in a future version.credTokenTimeoutSeconds
authProvider config on the infrastructure side to allow manual specification of access, ID, and pre-signed URL tokenExpiration. Extending this can fix upload timeouts for larger files or slower connections. Auth refresh tokens timeouts are fixed to 24 hours currently..ply
file formats, moved from the 3D Mesh 3D Online Viewer(primary)
next to the assets main/primary associated file. The primary file is what get's used right now for pipeline ingestion when launching a workflow.Bug Fixes
linux/amd64
processWorkflowExecutionOutput
(previouslyuploadAllAssets
) not workingView %AssetName% Metadata
button for top-level root folder on asset details page file manager that led to a blank page. The metadata for this is already on the asset details page.Chores
uploadAllAssets
lambda function handler. It is nowprocessWorkflowExecutionOutput
and moved to theworkflows
backend folderKnown Oustanding Issues
ingestAsset
API used to test the core of this new method.