How will Parsec be used?

I’ve finally started to look a bit at it, and have a few questions.
There’s so much I still don’t know, so bare with me, I’ll just have to start somewhere.

There’s a lot of material on the inner working of parsec, but I’m missing the higher levels; How is it supposed to be used? What is MaidSafe planning to use it for? How does this usage look like?
So, here goes:

1. Is parsec being used for section membership in SAFENetwork?
2. What is parsec (planned to be) used for except for section membership?
3. Where are the stable blocks stored? (the datachain?)
4. Do new peers download the list of stable blocks?
5. Are the stable blocks split up and merged with the sections?
6. Will there be any pruning of the stable blocks, or will they grow in eternity?
7. What is the use of OpaquePayload(T)?
8. When using parsec in another application, is OpaquePayload(T) supposed to used for application specific
votes?

9. How can any decisions be made with OpaquePayload(T), how is it known what is decided upon?

I’ll start there for now, to get things going! :slight_smile:

9 Likes

Have you looked at Maidsafe youtube channel? It has many Parsec videos.

Yep, not watched all, but most material I’ve seen is explaining the inner workings - the protocol - not the features it will be used in, how those features will be using it, and so on.

4 Likes

Thought I could help you “get things going”, :slight_smile: hopefully some of the wizards will be on soon to help you. All i know is that Parsec handles voting, from what I understand votes on new group members, votes on if dismiss members, malice handling and content validation.

2 Likes

Thanks :slight_smile:

I read the whitepaper the day it was released, and have been looking at the code and the example, watched Pierres video, and skimmed some discussions in the forum. I am not trying to understand the protocol at the level it’s creators (or any contributors) would (that would take a lot of time, skill and acquired knowledge in the area, I don’t have enough of either :wink: ), rather the context, it’s usage, how those parts will work.

5 Likes

Yes this is a primary purpose.

Also, secure message relay (along with data chains) and likely for changing data, such as safecoin transfers (still anonymous though).

Yip, the data chain

Yes, also in V1 (alpha4 and beyond actually), new peers will download all data and have to sign it.

Not quite sure what is being asked here, but each section has it’s own PARSEC if that helps.

Not currently pruned but these will be.

PARSEC does not want to know what some transactions are but does want to know about membership, so membership votes are visible,others do not need to be.

Yes, anything apart from membership changes really.

PARSEC does not care, it will only state this “thing” happened in this sequence.

Hope that helps.

16 Likes

This may be a bit off topic, but I’d like to ask how the purely mathematical proof for PARSEC is doing. I understand it was lacking a bit before and was criticized for it.

4 Likes

Thanks @dirvine, this helped materialize more of the framework of these concepts for me. My brain always try to handle too big picture and too many variables when not knowing basic frame, resulting in overload. So, now it can start exploring better :slight_smile:

Ah, I suspected that they would have their own parsec. And so, if the blocks are stored in the data chain, is the datachain split and merged with the sections?

If for example parent 0 has blocks 0-99, child 1 has blocks 100-199 lets say and child 2 has same number of blocks 100-199 (distinct blocks from child 1 though of course). If network decreases in size so that child 1 and 2 merge, then parent 0 has blocks 0-299? (How is the order determined in a merge?)

It would be up to each application using parsec what part it wanted to prune, right?

Ah, of course! And it is comparing equality by the hash.

This is all great info.

Another question: How is the global datachain queried, or subscribed to? (Is that even a valid usecase?)
I have an implementation in mind which would use parsec, and I think I would need to subscribe to other sections’ parsecs… maybe that is an awkward way of looking at it?

8 Likes

The datachain is local to the section. Each section has its own datachain.

The datachain is for the section

2 Likes

I know, with global I mean the network state, i.e. all datachains of the network.

Maybe in SAFENetwork, there won’t be a reason to query datachains of other sections, but if there is, then I would be interested to know how that would be made.

1 Like

Each section is is its own master and there isn’t a mechanism for another section to query its datachain.

Security is an issue, need to do consensus to agree to provide the data, what purpose is there considering the datachain is there to describe the order of events within the section.

2 Likes

What about the secure message relay and safecoin transfers and other data changes that David mentioned?

I would assume that other sections might be interested to know about it, since the flow is between sections. But even if not - how is that flow designed then, so that no other section need to know anything about these entries in the chain?

(The reason I am asking about it is because I am imagining a slightly different use, and if there was something thought out about the querying it would help me a bit further in that thinking. But I can see that it uncovers questions also for the case when it wouldn’t be queryable by other sections :slight_smile: )

2 Likes

You are stretching my knowledge here. :wink: But arn’t these examples of signed messages and not using any of the datachain in the communications. All the datachain does in these is keep the order of consensus in order for the section to sign the message/request as valid. Its not keeping data for applications or some user database or (global) network wide database. The events in each section occur at different rates too.

2 Likes

Oh I’m out on the edge myself here :slight_smile:
I just learned about these other uses for parsec with Davids response earlier in this topic (~8 hours ago).

Mm, I was thinking that datachains would maybe be a more significant long term storage of information, and as such it would presumably be interesting also outside of the specific sections. After all sharding is the practice of splitting up for example data [that you later want to retrieve] - and so if datachains was a component of the sharding, I was imagining that the information in the datachains was something that we later wanted to retrieve in some way. (Especially when the saying goes that “we don’t have blockchain, but instead datachains”).

OK, but then if this is not the case, yet another fragment is lit up a bit for me here, about the usage of parsec and datachains in the sections, but it sure makes other questions pop up when trying to wrap my head around it all :joy:. (splitting off from parsec topic a bit) Like:

  • Exactly what is the nature of the data that goes into datachains?
  • What is the lifecycle of that data?
  • What is the relation to parsec, generally and in specific examples?

(But maybe the designers can shed more light on it.)

The thing is,besides from also wanting to understand all this, I got an idea for how parsec could be used in a slightly different framework, and I am trying to figure out if it would be possible. Might be bonkers but if not then it would be quite cool.

7 Likes

I will bow out and also am interested in the answers too.

1 Like

I understand the benefits of anonymity but at some point, if this network becomes too successful and people start using it, they will want to keep a track of who they paid how much and when. i think sender/receiver and amount can be kept anonymous on the network but there should be some proof with the holder and receiver of what amount was sent/received to who/when - through/to which wallet ID. or something. Even better would be some technique where anonymity is a choice on wallet ID - that way some real legal transactions can also take place on Safenetwork and if someone wants it to be completely anonymous, they can keep it that way. i see some major use cases, where anonymity may not be a choice for legal reasons.

2 Likes

I like that especially - so if datachains was a component of the sharding, I was imagining that the information in the datachains was something that we later wanted to retrieve in some way.

1 Like

David did say for SAFEcoins that the safecoin MD could be copied as a receipt for the one sending the coin. So that would give you a copy of the transaction. If Fraser’s idea is used then some other method would be needed

2 Likes

The data is like node ID left the section, or a vote on accepting a MD change was taken and the result is do it or not do it. Or 3 changes are requested and this is the order to do the changes in. Its really housekeeping stuff and not user data.

1 Like

This is a great question and I don’t think it has been answered. In the merged section of this example, how are blocks 100-199 of child 1 ordered compared to those of child 2?

1 Like