Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 1 | # PSync examples |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 2 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 3 | By default, the examples in this folder are not built. To enable them, use the |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 4 | `--with-examples` configure option. For example: |
| 5 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 6 | ```bash |
| 7 | ./waf configure --with-examples |
| 8 | ./waf |
| 9 | ``` |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 10 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 11 | The example binaries can be found in `build/examples`: |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 12 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 13 | - Full sync: `psync-full-sync` |
| 14 | - Partial sync: `psync-producer` and `psync-consumer` |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 15 | |
| 16 | If the library is installed to the system using `./waf install` then the examples |
| 17 | are also installed and can be executed directly. |
| 18 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 19 | ## Partial Sync example |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 20 | |
| 21 | Partial sync example of PSync has two parts: producer and consumer. |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 22 | These can be run on a machine after starting NFD. |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 23 | |
| 24 | ### Producer |
| 25 | |
| 26 | - Enable the logs for producer: |
| 27 | |
| 28 | ```bash |
| 29 | export NDN_LOG=examples.PartialSyncProducerApp=INFO |
| 30 | ``` |
| 31 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 32 | - Start the producer that will listen on `/sync` and publish 1 update for |
| 33 | `/a-0` ... `/a-9` each. |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 34 | |
| 35 | ```bash |
| 36 | psync-producer /sync /a 10 1 |
| 37 | ``` |
| 38 | |
| 39 | - Sample output: |
| 40 | |
| 41 | ``` |
| 42 | 1546280442.096296 INFO: [examples.PartialSyncProducerApp] Publish: /a-1/1 |
| 43 | 1546280456.053138 INFO: [examples.PartialSyncProducerApp] Publish: /a-6/1 |
| 44 | 1546280458.210415 INFO: [examples.PartialSyncProducerApp] Publish: /a-8/1 |
| 45 | 1546280469.954134 INFO: [examples.PartialSyncProducerApp] Publish: /a-5/1 |
| 46 | 1546280472.487425 INFO: [examples.PartialSyncProducerApp] Publish: /a-2/1 |
| 47 | 1546280473.466515 INFO: [examples.PartialSyncProducerApp] Publish: /a-7/1 |
| 48 | 1546280481.882258 INFO: [examples.PartialSyncProducerApp] Publish: /a-0/1 |
| 49 | 1546280484.201229 INFO: [examples.PartialSyncProducerApp] Publish: /a-4/1 |
| 50 | 1546280489.348968 INFO: [examples.PartialSyncProducerApp] Publish: /a-9/1 |
| 51 | 1546280491.420391 INFO: [examples.PartialSyncProducerApp] Publish: /a-3/1 |
| 52 | ``` |
| 53 | |
| 54 | ### Consumer |
| 55 | |
| 56 | - In a new terminal, enable the logs for consumer: |
| 57 | |
| 58 | ```bash |
| 59 | export NDN_LOG=examples.PartialSyncConsumerApp=INFO |
| 60 | ``` |
| 61 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 62 | - Run the consumer to subscribe to 5 random prefixes from the publisher on `/sync` |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 63 | |
| 64 | ```bash |
| 65 | psync-consumer /sync 5 |
| 66 | ``` |
| 67 | |
| 68 | - Sample output from the consumer shows that it received updates only |
| 69 | for the subscribed prefixes: |
| 70 | |
| 71 | ``` |
| 72 | 1546280436.502769 INFO: [examples.PartialSyncConsumerApp] Subscribing to: /a-7 |
| 73 | 1546280436.502888 INFO: [examples.PartialSyncConsumerApp] Subscribing to: /a-9 |
| 74 | 1546280436.502911 INFO: [examples.PartialSyncConsumerApp] Subscribing to: /a-8 |
| 75 | 1546280436.502934 INFO: [examples.PartialSyncConsumerApp] Subscribing to: /a-4 |
| 76 | 1546280436.502956 INFO: [examples.PartialSyncConsumerApp] Subscribing to: /a-5 |
| 77 | 1546280458.211188 INFO: [examples.PartialSyncConsumerApp] Update: /a-8/1 |
| 78 | 1546280469.954886 INFO: [examples.PartialSyncConsumerApp] Update: /a-5/1 |
| 79 | 1546280473.467116 INFO: [examples.PartialSyncConsumerApp] Update: /a-7/1 |
| 80 | 1546280484.256181 INFO: [examples.PartialSyncConsumerApp] Update: /a-4/1 |
| 81 | 1546280489.349793 INFO: [examples.PartialSyncConsumerApp] Update: /a-9/1 |
| 82 | ``` |
| 83 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 84 | ## Full Sync example |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 85 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 86 | To demonstrate full sync mode of PSync, `psync-full-sync` |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 87 | can be run on a machine after starting NFD: |
| 88 | |
| 89 | - Enable the logs for full sync: |
| 90 | |
| 91 | ```bash |
| 92 | export NDN_LOG=examples.FullSyncApp=INFO |
| 93 | ``` |
| 94 | |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 95 | - Run the full sync example with sync prefix `/sync`, user prefix `/a`, |
| 96 | and publish three updates for each user prefix: `/a-0` and `/a-1`. This will simulate node a. |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 97 | |
| 98 | ```bash |
| 99 | psync-full-sync /sync /a 2 3 |
| 100 | ``` |
| 101 | |
| 102 | - Repeat for another user prefix, to simulate node b: |
| 103 | |
| 104 | ```bash |
| 105 | psync-full-sync /sync /b 2 3 |
| 106 | ``` |
| 107 | |
| 108 | We should see that node a and node b have received each other's updates. |
| 109 | |
| 110 | - Sample output from node a shows that it received all updates |
| 111 | from node b successfully: |
| 112 | |
| 113 | ``` |
| 114 | 1546282730.759387 INFO: [examples.FullSyncApp] Update /b-1/1 |
| 115 | 1546282741.143225 INFO: [examples.FullSyncApp] Publish: /a-1/1 |
| 116 | 1546282749.375854 INFO: [examples.FullSyncApp] Publish: /a-0/1 |
| 117 | 1546282750.263246 INFO: [examples.FullSyncApp] Update /b-0/1 |
| 118 | 1546282765.875118 INFO: [examples.FullSyncApp] Update /b-1/2 |
| 119 | 1546282783.777807 INFO: [examples.FullSyncApp] Publish: /a-0/2 |
| 120 | 1546282794.565507 INFO: [examples.FullSyncApp] Publish: /a-0/3 |
| 121 | 1546282794.896895 INFO: [examples.FullSyncApp] Publish: /a-1/2 |
| 122 | 1546282803.839416 INFO: [examples.FullSyncApp] Update /b-0/2 |
| 123 | 1546282804.785867 INFO: [examples.FullSyncApp] Update /b-1/3 |
| 124 | 1546282845.273772 INFO: [examples.FullSyncApp] Publish: /a-1/3 |
| 125 | 1546282855.102790 INFO: [examples.FullSyncApp] Update /b-0/3 |
| 126 | ``` |
| 127 | |
| 128 | - Sample output from node b: |
| 129 | |
| 130 | ``` |
| 131 | 1546282730.758296 INFO: [examples.FullSyncApp] Publish: /b-1/1 |
| 132 | 1546282741.144027 INFO: [examples.FullSyncApp] Update /a-1/1 |
| 133 | 1546282749.376543 INFO: [examples.FullSyncApp] Update /a-0/1 |
| 134 | 1546282750.262244 INFO: [examples.FullSyncApp] Publish: /b-0/1 |
| 135 | 1546282765.296005 INFO: [examples.FullSyncApp] Publish: /b-1/2 |
| 136 | 1546282783.778769 INFO: [examples.FullSyncApp] Update /a-0/2 |
| 137 | 1546282794.566485 INFO: [examples.FullSyncApp] Update /a-0/3 |
| 138 | 1546282795.374339 INFO: [examples.FullSyncApp] Update /a-1/2 |
| 139 | 1546282803.838394 INFO: [examples.FullSyncApp] Publish: /b-0/2 |
| 140 | 1546282804.033214 INFO: [examples.FullSyncApp] Publish: /b-1/3 |
| 141 | 1546282845.274680 INFO: [examples.FullSyncApp] Update /a-1/3 |
| 142 | 1546282855.101780 INFO: [examples.FullSyncApp] Publish: /b-0/3 |
Davide Pesavento | b60398c | 2020-12-18 00:02:25 -0500 | [diff] [blame] | 143 | ``` |