Primary Shard allocation in the same node has same storage information

Have 3 node Elasticsearch cluster (version 2.3). Have the following configuration

Master dedicated : 1 (kibana, Marvel installed on this node)
Master with data : 2
Shards:5
Replicas: 1

Would like to know if the following shard allocation is valid? The cluster say around 80.7m documents available.
Does this mean the shards are duplicated on node3 on all 5 primary shards?This seems to accomodate more space as all shards storage space says 3.6gb.
Please explain if this is valid?
Is there any settings to be done to avoid duplication of same documents within the same node?

index shard prirep state docs store node
.kibana 0 p STARTED 3 23.5kb node3
.marvel-es-data-1 0 p STARTED 23 10kb node2
.marvel-es-1-2016.06.15 0 p STARTED 84616 32.6mb node3
myindex 2 r STARTED 8070555 3.6gb node2
myindex 2 p STARTED 8070555 3.6gb node3
myindex 3 r STARTED 8067454 3.6gb node2
myindex 3 p STARTED 8067454 3.7gb node3
myindex 4 r STARTED 8070424 3.6gb node2
myindex 4 p STARTED 8070424 3.6gb node3
myindex 1 r STARTED 8070873 3.6gb node2
myindex 1 p STARTED 8070873 3.6gb node3
myindex 0 r STARTED 8070694 3.6gb node2
myindex 0 p STARTED 8070694 3.6gb node3

Hey,

I am not sure if I fully get the question, but if you look at the data, there is never the same data on the same node. if you check the settings for myindex 2 you see that the replica (the r in the third column) is on node2, while the primary (the p) is on node 3. And this repeats for all shards with the same number.

--Alex