-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
104 additions
and
79 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,45 @@ | ||
# `ic_object_store_canister` | ||
# `IC Object Store` | ||
|
||
Native Rust implementation of Apache Arrow object store on the Internet Computer. | ||
|
||
More detail: https://github.com/apache/arrow-rs/blob/main/object_store/README.md | ||
|
||
## Features | ||
|
||
- Full implementation of Apache Arrow object store APIs. | ||
- AES256-GCM encryption. | ||
|
||
## Demo | ||
|
||
Try it online: https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.icp0.io/?id=6at64-oyaaa-aaaap-anvza-cai | ||
|
||
## API Reference | ||
|
||
The canister exposes a comprehensive Candid API. Key endpoints include: | ||
|
||
```candid | ||
# Object Operations | ||
put_opts : (text, blob, PutOptions) -> (Result) | ||
head : (text) -> (Result) query | ||
get_opts : (text, GetOptions) -> (Result) query | ||
get_ranges : (text, vec record { nat64; nat64 }) -> (Result) query | ||
copy : (text, text) -> (Result) | ||
rename : (text, text) -> (Result) | ||
list : (opt text) -> (Result) query | ||
list_with_delimiter : (opt text) -> (Result) query | ||
list_with_offset : (opt text, text) -> (Result) query | ||
create_multipart : (text) -> (Result) | ||
put_part : (text, text, nat64, blob) -> (Result) | ||
complete_multipart : (text, text, PutMultipartOpts) -> (Result) | ||
# Admin Operations | ||
admin_add_managers : (vec principal) -> (Result) | ||
admin_remove_managers : (vec principal) -> (Result) | ||
``` | ||
|
||
Full Candid API definition: [ic_cose_canister.did](https://github.com/ldclabs/ic-cose/tree/main/src/ic_object_store_canister/ic_object_store_canister.did) | ||
|
||
## License | ||
Copyright © 2024 [LDC Labs](https://github.com/ldclabs). | ||
Copyright © 2024-2025 [LDC Labs](https://github.com/ldclabs). | ||
|
||
`ldclabs/ic-cose` is licensed under the MIT License. See [LICENSE](../../LICENSE-MIT) for the full license text. | ||
`ldclabs/ic-cose` is licensed under the MIT License. See [LICENSE](../../LICENSE-MIT) for the full license text. |