Project

General

Profile

Wiki » History » Version 11

Saurab Dulal, 04/11/2020 01:51 PM

1 10 Saurab Dulal
NDN Service Discovery (NDNSD)
2
=============
3
NDNSD is a service discovery library for NDN based devices and applications. It uses the sync protocol to disseminate publication and discovery updates. Thus, it can also be viewed as a wrapper library on top of the sync libraries.
4
5
[Assumption] (#Assumption)
6
[Design Goals] (#Design-Goals)
7
[Design specification] (#Design-Specification)
8
[Technical specification] (#Technical-Specification)
9
10
### Assumption: 
11
   - IP Multicast capable links on a subnet. 
12
   - (Devices will use a multicast face from NFD)
13
   - Devices already bootstrapped and have obtained authorized application names
14
15
### Design Goals:
16
  - Applications should be able to i) advertise services ii) look for the service provided by others iii) select and invoke the desired service.
17
  -  The data received via the discovery process should be authentic and secure.
18
19
### Design-Specification: 
20
21 5 Saurab Dulal
1.  All the devices in the network looking to i) discover service ii) announce service ii) do both, run a discovery application written on top of the discovery library capable of adapting to different sync protocols. Basically, here the sync will be used as a Blackbox.
22 1 Saurab Dulal
2. **Producer**
23 11 Saurab Dulal
	1.  Application joining as a producer, depending upon service type it wants to advertise, will join a sync group. e.g., a printer application will use sync prefix (e.g. /\<root-prefix>/discovery/printer ) specific to printers to advertise their service.
24
	2. Evey sync group namespace will have a root-prefix prefix. e.g. */dunn-hall/netlab/* , */myhome/*, */uofm/dunn-hall/first-floor/*.    
25
	       
26
	    e.g /dunn-hall/netlab/discovery/\<device-name> / ---> /dunn-hall/netlab/discovery/printer1
27
	          /uofm/dunn-hall/netlab/\<device-name> / ---> /uofm/dunn-hall/netlab/printer1/ ;the device name is a unique name given to each device by the bootstrapping protocol.
28
              **Note:**  our assumption is that the devices are already bootstrapped, and have obtained a unique application name/s that they are allowed to publish the data under. 
29 8 Saurab Dulal
30 9 Saurab Dulal
	4. Applications will use the API provided by the discovery library to publish under the application name prefix. The frequency of the publish interval is controlled entirely by the discovery application. The current producer API consists of following properties, 
31 11 Saurab Dulal
              	
32
        | Property                | Description  |
33
|------------------ |-------------|
34
| Service Name       |  Broader service producer is interested in e.g. printer|
35
| Application Prefix | Legitimate name of producer obtained from the bootstrap |
36
| Flags                      | List of flags such as protocol choice, application type, etc.|
37
| Service Info           | Information about the service can be JSON file or text|
38
| Timestamp            | Service publication or update timestamp|
39
| Service lifetime     | How long will service be active?|
40
| Callback                 | Publish status to application callback from discovery|
41 8 Saurab Dulal
42
	5.  Once the publish are received from the producer, discovery lib perform the following tasks
43 1 Saurab Dulal
		1.  Store or update the published information i.e. service name, info, application prefix, timestamp and lifetime locally. This will be later used to serve the request that comes for the application name.
44 8 Saurab Dulal
		2.  Join or create a new sync group from the service name.
45 11 Saurab Dulal
		3.  Start listening to the corresponding application name prefix.
46 8 Saurab Dulal
47 1 Saurab Dulal
		Note: The reason behind the discovery library listening on application prefix is to hide the network level abstraction from the application while still leveraging the full network primitives.
48 9 Saurab Dulal
	6.  The updates are propagated by discovery with the help sync protocol to all other nodes listening on the same sync group prefix. And hence, all the nodes in the network will be synchronized to the latest update.
49 8 Saurab Dulal
		    
50 9 Saurab Dulal
	7.  When the producer receives an interest for the application prefix it is listening on it performs following tasks:
51 8 Saurab Dulal
		1.  Check if the service has expired.
52
		Status = current_time() - publish_time() > lifetime ? EXPIRED : ACTIVE
53
		2.  Bundles up the info and status in a TLV and sends it back.
54
		3.  If the prefix has expired since a long time, send an application NACK. (need more discussion)
55
3. **Consumer**
56 11 Saurab Dulal
	1. Applications only trying to discover a particular service, will use the consumer API of the discovery library to send its query with service name and required flags. 
57 8 Saurab Dulal
	2.  The current consumer API looks like following,
58 1 Saurab Dulal
59 8 Saurab Dulal
	| Property | Description  |
60 9 Saurab Dulal
	|--|--|
61
	| Service Name |  Service consumer is interested to discover|
62
	| Flags | List of flags such as protocol choice, application type, etc |
63 11 Saurab Dulal
	| Callback | Callback containing application details i.e. service name, info, and status (active or passive) for each name from the sync data. |
64 9 Saurab Dulal
65 11 Saurab Dulal
	3. Once the query is received by the discovery lib, it performs the following tasks
66 9 Saurab Dulal
		1.  Constructs a sync interest from the service name and fetches the sync data containing all the application names under a particular sync group (service)
67 8 Saurab Dulal
		    
68
		2.  Iteratively sends interest to all the application names and fetches the corresponding details. (these details are bundled up in a TLV and are sent by the corresponding producer (2.g). For more details, refer to the technical details section below).
69
	    
70
		3.  And finally, sends the corresponding details of each application to the consumer in the callback.
71
				**Example:**  
72
				Sync interest (e.g. I: /dunn-hall/netlab/discovery/printer )
73
				Sync Data:  
74
			
75
			```
76
			Data (D): name = /dunn-hall/netlab/discovery/printer/ 
77
					content: /printer-red/<seq-num>, 
78
			    			 /printer-blue/<seq-num>
79
			```
80
			Iteratively fetching for each application name:
81
		
82
			```				
83
			Interest (I): /printer-red/
84
			Data (D): name = /printer-red/
85
			Content: <Info>: “HP Laserjet 400”, <Status>: Active
86
4.  Additionally, sync can also piggyback the data content for each application prefix so that consumer applications can avoid sending a separate interest to fetch content. This will also speed up the whole process. (redmine: [5089](https://redmine.named-data.net/issues/5089))
87
5. Both
88
	1.  Application register as both ie. consumer and producer, is pretty much similar to that of producer. But in addition, unlike producer, whenever an update in the sync group is received via sync protocol, discovery lib will iteratively fetch the updates and send it back to the application.
89
	2.  Application to be considered both specifically needs to be the part of the same sync group.
90 1 Saurab Dulal
91 11 Saurab Dulal
Throughout this process, the sync protocol acts as a transport service propagating the updates. It gives great relief to the application. It can absolutely avoid dealing with low-level network primitives while still leveraging all the services offered by it via sync API.