Hi Himanshu,
If you have a complete backup of the cluster, it is strongly recommended to restore a sharded cluster as a whole to guard against inconsistencies, missing data, etc. If you only restore a single shard from a backup, there may be missing or duplicate documents due to subsequent migrations as part of normal sharded cluster balancing activity.
Having said that, yes you can restore a single shard. However, it potentially involves a lot of manual work with no guarantee of success:
You should check the config server changelog to see if there have been any migrations to or from this shard subsequent to the backup you restored.
You should restore the new replica set using the same settings as the old ones (i.e. the same hostnames, the same ports, etc.).
If there were any migrations involving this shard after the backup:
3a) For documents in chunk ranges that migrated to this shard, you will need to restore those documents from an alternative backup source.
3b) You may wish to run cleanupOrphaned to remove documents in chunk ranges that migrated from this shard.
On a side note, a RAID-0 configuration is not recommended to be used with MongoDB.
Good luck with your restore. Let us know if you have any further questions.
Best regards,
Kevin