# s3prefixed **Repository Path**: mirrors_mapbox/s3prefixed ## Basic Information - **Project Name**: s3prefixed - **Description**: S3 reading operations in prefixed buckets - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 🌇 As of January 2020, this module is deprecated. It is provided as-is, with no warranty. We are not accepting new bugfixes or feature requests at this time. # s3prefixed S3 reading operations in prefixed buckets ## Motivation For best possible performance during heavy PUT loads, we sometimes prefix our S3 keys. This makes reading from the bucket a little more challenging if you're looking for a specific file. ## Examples ```sh $ s3prefixed ls s3://my-bucket/{prefix}/some/key/ $ s3prefixed cp s3://my-bucket/{prefix}/some/key/tile.vector.pbf $ s3prefixed cp s3://my-bucket/{prefix}/some/key/tile.vector.pbf /somewhere/some.file # Sorry but you can't copy into a prefixed bucket. This will fail: $ s3prefixed cp /somewhere/some.file s3://my-bucket/{prefix}/some/key/tile.vector.pbf Error: Must specify an s3 url ```