build(deps): bump github.com/aws/aws-sdk-go-v2/config (#90)

Bumps [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) from 1.27.15 to 1.27.16.
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.15...config/v1.27.16)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 files changed
tree: ad1bf1f6af52b98e6e370dcdb2683383550c29ae
  1. .github/
  2. catalog/
  3. cmd/
  4. dev/
  5. internal/
  6. io/
  7. table/
  8. .asf.yaml
  9. .gitattributes
  10. .gitignore
  11. .pre-commit-config.yaml
  12. errors.go
  13. go.mod
  14. go.sum
  15. LICENSE
  16. literals.go
  17. literals_test.go
  18. manifest.go
  19. manifest_test.go
  20. NOTICE
  21. partitions.go
  22. partitions_test.go
  23. README.md
  24. schema.go
  25. schema_test.go
  26. transforms.go
  27. transforms_test.go
  28. types.go
  29. types_test.go
  30. utils.go
README.md

Iceberg Golang

Go Reference

iceberg is a Golang implementation of the Iceberg table spec.

Feature Support / Roadmap

FileSystem Support

Filesystem TypeSupported
S3X
Google Cloud Storage
Azure Blob Storage
Local FilesystemX

Metadata

OperationSupported
Get SchemaX
Get SnapshotsX
Get Sort OrdersX
Get Partition SpecsX
Get ManifestsX
Create New ManifestsX
Plan Scan
Plan Scan for Snapshot

Catalog Support

OperationRESTHiveDynamoDBGlue
Load TableX
List TablesX
Create Table
Update Current Snapshot
Create New Snapshot
Rename Table
Drop Table
Alter Table
Set Table Properties
Create Namespace
Drop Namespace
Set Namespace Properties

Read/Write Data Support

  • No intrinsic support for reading/writing data yet
  • Data can be manually read currently by retrieving data files via Manifests.
  • Plan to add Apache Arrow support eventually.

Get in Touch