Skip to content
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

Atomic-Server + Content Addressing (like IPFS) #66

Open
joepio opened this issue Jan 7, 2021 · 1 comment
Open

Atomic-Server + Content Addressing (like IPFS) #66

joepio opened this issue Jan 7, 2021 · 1 comment
Labels
plugin Should probably be an Atomic Plugin

Comments

@joepio
Copy link
Member

joepio commented Jan 7, 2021

Since Atomic Data uses a lot of (non-local) HTTP resources, there is a risk of remote errors that make data unfetchable. When a server goes down, a resource has changed or a domain name hasn't been paid for - the request will fail. That is part of the web, and we have a chance to encounter this every time we open a webpage.

With Atomic Data, however, we rely even more intensely on remote data. Atomic Properties, for example, tell us something about the datatype of an Atom. When parsing triples with new properties for a client, the properties need to resolve. IPFS might help with this, as it can enable 'freezing' of resources. The frozen resources could still contain a link to the original source (HTTPS address) which can be used for updating properties.

@joepio joepio added the plugin Should probably be an Atomic Plugin label Jan 8, 2021
@joepio
Copy link
Member Author

joepio commented Jan 17, 2021

Responsibilities of IPFS module in server

  • Store Commits in ipfs (these are always immutable) - no reason to store these using other mechanism.
  • Store versioned representations of resources fix: protoc from release bins n0-computer/iroh#42. I think storing all versions is a good first step, but in the end the server might decide to only store the latest version of a resource.
  • Resolve /ipfs urls (at least - if they are Atomic Resources, maybe skip non-atomic data?)
  • When using some property URL, freeze it and convert it to IPFS (if this is set, maybe this should be optional).

Implementation

Full ipfs node in app (depracated)

The rust-ipfs crate seems to be the only true option. I've been following it for quite some time. I think it still needs the add feature, though. Lacks a DHT implementation, and it might take a while before this is realized.

EDIT: It's no longer maintained

Client-only - use external gateway

ipfs-embed is lighter weight, but requires an external ipfs node.

ipfs-api is an interesting one. Connect to an external gateway, and use that as both storage and resolve mechanism.

https://docs.rs/ipfs-api/0.11.0/ipfs_api/#writing-a-file-to-ipfs

IROH

New rust implementation: https://github.com/n0-computer/iroh

Seems to be promising! Unclear if it can be embedded, yet.

EDIT: Iroh Can be embedded!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
plugin Should probably be an Atomic Plugin
Projects
None yet
Development

No branches or pull requests

1 participant