Minimizing the Age of Information of Multiple Sources Vishrant - - PowerPoint PPT Presentation

minimizing the age of information of multiple sources
SMART_READER_LITE
LIVE PREVIEW

Minimizing the Age of Information of Multiple Sources Vishrant - - PowerPoint PPT Presentation

Minimizing the Age of Information of Multiple Sources Vishrant Tripathi Advisor - Prof. Sharayu Moharir Electrical Engineering Department, IIT-Bombay October 16, 2017 Vishrant (CNRG) Minimizing Age of Information October 16, 2017 1 / 37


slide-1
SLIDE 1

Minimizing the Age of Information of Multiple Sources

Vishrant Tripathi Advisor - Prof. Sharayu Moharir

Electrical Engineering Department, IIT-Bombay

October 16, 2017

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 1 / 37

slide-2
SLIDE 2

Motivation

This problem has direct applications to IoT (Internet of Things). For example, an IoT connected home or vehicle could have a large number

  • f sensors monitoring different pieces of information, all of which needs to

be sent to a central controller Having the freshest available data would be essential to making better decisions.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 2 / 37

slide-3
SLIDE 3

Setting

n sensors communicating over m channels Time-slotted system One channel per sensor per time-slot

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 3 / 37

slide-4
SLIDE 4

Channel Model

Assumption

(ON-OFF Channel Model) Xi,j(t) =

  • 1,

if sensor i can communicate over channel j 0,

  • therwise

We have that ∀i, j, P(Xi,j(t) = 1|Xi,j(τ) : ∀τ < t, i, j) ≥ pmin > 0. The processes Xi,j(t) evolve independently across all sensor-channel pairs.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 4 / 37

slide-5
SLIDE 5

Channel Model

Examples of such channel models include: – Xi,j(t) is an independent Bernoulli random variable with parameter pi,j(t) ≥ pmin. – Xi,j is a Markov chain, independent across all users and channels with P(Xi,j(t) = 1|Xi,j(t − 1)) ≥ pmin.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 5 / 37

slide-6
SLIDE 6

Goal

li(t) is the age of the latest measurement from sensor i Our goal is to minimize the time-average cost of the age of information C(t) = f (li(t); 1 ≤ i ≤ n), where f is a non-decreasing function of the lis Examples: f (li(t); 1 ≤ i ≤ n) =

n

  • i=1

g(li(t)) f (li(t); 1 ≤ i ≤ n) = max

i

li(t)

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 6 / 37

slide-7
SLIDE 7

A Converse Result

nl(t) : the number of sensors with age ≥ l at time t, then nl(t) ≥ (n − lm)+. This can be proved using a simple counting argument.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 7 / 37

slide-8
SLIDE 8

Our Algorithm: Max-Age Matching

Key Ideas - Use a locally greedy strategy to minimize the age of information increment in each time-slot Convert this problem of greedy minimization to a minimum weight perfect matching problem in bipartite graphs

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 8 / 37

slide-9
SLIDE 9

Max-Age Matching

Algorithm 1 Max-Age Matching Input: Connectivity and age information for the current time-slot Output: A valid allocation of sensors to channels

1: procedure Max-Age-Matching(Xi,j) 2:

Construct a bipartite graph G(X, Y , E) using connectivity and age information.

3:

M = FindMaxWeightMatching(G)

4:

Use M to allocate sensors to channels

5: end procedure

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 9 / 37

slide-10
SLIDE 10

Max-Age Matching Example

Figure: MAM Example with 4 sensors, 2 channels and sensor ages (2,2,1,3)

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 10 / 37

slide-11
SLIDE 11

Optimality of Max-Age Matching

Theorem

nMAM

l

(t) : the number of sensors with age ≥ l under MAM nMAM

l

(t) = (n − lm)+ ∀l ≥ 0, with probability ≥ 1 − 3m(1 − pmin)m n m

  • Corollary

C MAM(t) : the cost of the age of information under MAM C OPT(t) : the cost under the optimal scheduling policy C MAM(t) = C OPT(t), with probability ≥ 1 − 3m(1 − pmin)m n m

  • The probability → 1 as n, m ↑ ∞ if m grows at least as fast as Ω(log(n)).

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 11 / 37

slide-12
SLIDE 12

Our 2nd Algorithm: Iterative Max-Age Scheduling

Key Idea - Simply iterate through the entire set of channels, allocating sensors which can connect to a particular channel in descending order of age. The advantage here is that of reduced complexity. No other algorithm can be simpler, since this algorithm goes through all the inputs only

  • nce.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 12 / 37

slide-13
SLIDE 13

Iterative Max-Age Scheduling

Algorithm 2 Allocate Sensors to Channels in each Time-slot Input: Xi,j - the connectivity information for the current time-slot Output: A valid allocation in each time-slot

1: procedure FindAllocation() 2:

Define a priority of sensors in decreasing order of costs g(li(t)).

3:

For sensors with equal costs, use lexicographic ordering.

4:

for every channel j do

5:

Find highest priority un-allocated sensor i s.t. Xi,j = 1

6:

Allocate sensor i to channel j

7:

end for

8:

Output the Allocation for the next time-slot.

9: end procedure

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 13 / 37

slide-14
SLIDE 14

Iterative Max-Age Scheduling Example

Figure: IMAS Example with 4 sensors, 2 channels and sensor ages (2,2,1,3)

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 14 / 37

slide-15
SLIDE 15

Optimality of IMAS

Theorem

nIMAS

l

(t) : the number of sensors with age ≥ l, under IMAS nIMAS

l

(t) =      n − lm + O(log m), for 0 ≤ l < n

m

  • ,

O(log m), for l = n

m

  • ,

0, for l > n

m

  • .

with high probability, which goes to 1 as n, m ↑ ∞ if m grows at least as fast as Ω(log(n)).

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 15 / 37

slide-16
SLIDE 16

Optimality of IMAS

Corollary

C IMAS(t) : the cost of the age of information under IMAS

1 If f is defined as a sum of individual costs of sensors, we have

C IMAS(t) C OPT(t) = 1 + O log(m) m

  • 2 If f is defined as the maximum of individual costs, then

C IMAS(t) = C OPT(t) + 1 with high probability, which goes to 1 as n, m ↑ ∞ if m grows at least as fast as Ω(log(n)).

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 16 / 37

slide-17
SLIDE 17

Complexity Comparison

Now that we have compared the performance of the two proposed algorithms, we can also compare their computational costs. The complexity of Max-Age Matching (MAM) is O(n3). The complexity of Iterative Max-Age Scheduling (IMAS) is O(mn).

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 17 / 37

slide-18
SLIDE 18

Energy Performance Trade-offs

The above scheduling algorithms require all sensors to be ON in each time-slot Instead, we can use a batch based version of the above algorithms to save energy. Clearly, the performance of these batch based will be worse off as compared to the above algorithms. We use a batch size of n

k where k =

n

m

  • so that in each batch we

have roughly the same number of active sensors as the number of channels.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 18 / 37

slide-19
SLIDE 19

Batched Max-Age Matching

Algorithm 3 Batched Max-Age Matching Input: Connectivity and age information for the batch being served in the current time-slot (serve batches in round robin fashion) Output: A valid allocation of sensors to channels

1: procedure Max-Age-Matching(Xi,j) 2:

Construct a bipartite graph G(X, Y , E) as described earlier using connectivity and age information of the current batch.

3:

M = FindMaxWeightMatching(G)

4:

Use M to allocate sensors to channels

5: end procedure

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 19 / 37

slide-20
SLIDE 20

B-MAM Example

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 20 / 37

slide-21
SLIDE 21

Optimality of B-MAM

Theorem

nB-MAM

l

(t) : the number of sensors with age ≥ l, under B-MAM nMAM

l

(t) = (n − lm)+ ∀l ≥ 0, with probability ≥ 1 − 3n(1 − pmin)m.

Corollary

C B-MAM(t) : the cost of the age of information under B-MAM C B-MAM(t) = C OPT(t), with probability ≥ 1 − 3n(1 − pmin)m. Order wise identical with MAM The probability → 1 as n, m ↑ ∞ if m grows at least as fast as Ω(log(n)).

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 21 / 37

slide-22
SLIDE 22

B-IMAS

Algorithm 4 Allocate Sensors to Channels in each Time-slot Input: Connectivity and age information for the batch being served in the current time-slot (serve batches in round robin fashion) Output: A valid allocation in each time-slot

1: procedure FindAllocation() 2:

Define a priority of sensors in decreasing order of costs g(li(t)).

3:

For sensors with equal costs, use lexicographic ordering.

4:

for every channel j in current batch do

5:

Find highest priority un-allocated sensor i s.t. Xi,j = 1

6:

Allocate sensor i to channel j

7:

end for

8:

Output the Allocation for the next time-slot.

9: end procedure

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 22 / 37

slide-23
SLIDE 23

B-IMAS Example

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 23 / 37

slide-24
SLIDE 24

Optimality of B-IMAS

Theorem

nB-IMAS

l

(t) : the number of sensors with age ≥ l under B-IMAS nB-IMAS

l

(t) =      n − l(m − mα), for 0 ≤ l < n

m

  • ,

(2 n

m

  • − l)mα, for

n

m

  • ≤ l ≤ 2

n

m

  • ,

0, for l > 2 n

m

  • .

with probability ≥ 1 − n

m

  • (mα(1 − pmin)m−mα+1 + (m − mα)(1 − pmin)mα+1) where

0 < α < 1. This probability → 1 as n, m ↑ ∞ if m grows at least as fast as Ω((log n)1+a), where

1 1+a < α.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 24 / 37

slide-25
SLIDE 25

Optimality of B-IMAS

Corollary

C B-IMAS(t) : the cost of the age of information under B-IMAS δ = n

m

  • (mα(1 − pmin)m−mα+1 + (m − mα)(1 − pmin)mα+1)

(a) If f is defined as sum of costs of individual sensors, C B-IMAS(t) C OPT(t) = 1 + O(mα−1). (b) If f is max of sensor ages, C IMAS(t) = C OPT(t) + n m

  • .

with probability ≥ 1 − δ

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 25 / 37

slide-26
SLIDE 26

Empirical CCDF plots

0.5 1 1.5 2 2.5 0.2 0.4 0.6 0.8 1 Cost(C) Fraction of time−slots with cost ≥ C B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, m = 25, p = 0.05, cost type = average age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 26 / 37

slide-27
SLIDE 27

Empirical CCDF plots

0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0.2 0.4 0.6 0.8 1 Cost(C) Fraction of time−slots with cost ≥ C B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, m = 25, p = 0.15, cost type = average age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 27 / 37

slide-28
SLIDE 28

Empirical CCDF plots

0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.2 0.4 0.6 0.8 1 Cost(C) Fraction of time−slots with cost ≥ C B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, m = 25, p = 0.05, cost type = max age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 28 / 37

slide-29
SLIDE 29

Empirical CCDF plots

0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.2 0.4 0.6 0.8 1 Cost(C) Fraction of time−slots with cost ≥ C B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, m = 25, p = 0.15, cost type = max age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 29 / 37

slide-30
SLIDE 30

Time average cost v/s no. of sensors

50 70 90 110 130 150 170 190 200 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 Number of sensors Cost(C) B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50 to 190, m = n/2, p = 0.05, cost type = average age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 30 / 37

slide-31
SLIDE 31

Time average cost v/s no. of sensors

50 70 90 110 130 150 170 190 200 1 2 3 4 5 6 7 8 Number of sensors Cost(C) B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50 to 190, m = n/2, p = 0.05, cost type = max age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 31 / 37

slide-32
SLIDE 32

Time average cost v/s no. of sensors

10 30 50 70 90 110 130 150 170 190200 1 2 3 4 5 Number of sensors Cost(C) B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50 to 190, m = n/2, p = 0.25, cost type = max age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 32 / 37

slide-33
SLIDE 33

Time average cost v/s connection probability

0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0.4 0.5 0.6 0.7 0.8 0.9 1 1.1 Probability of Connection Cost(C) B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, p = 0 to 1, m = 25, cost type = average age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 33 / 37

slide-34
SLIDE 34

Time average cost v/s connection probability

0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0.5 1 1.5 2 2.5 3 3.5 4 4.5 Probability of Connection Cost(C) B−IMAS MAM IMAS B−MAM Lower Bound

Figure: n = 50, p = 0 to 1, m = 25, cost type = max age

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 34 / 37

slide-35
SLIDE 35

Conclusions

We propose and analyze the optimality of two algorithms for solving the problem of allocating sensors to channels in a stochastic setting -

1 A perfect matching based computationally intensive approach and 2 An iterative approach that is cheaper to compute. 3 We also suggest two batched versions of the same algorithms, in

cases when energy efficiency is an important parameter. We then provide optimality results and compare the performances of all four algorithms through simulation examples.

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 35 / 37

slide-36
SLIDE 36

Conclusions

Theoretical bounds and simulation examples suggest the following order of performance For small systems and/or bad channels - C MAM ≤ C IMAS ≤ C B−MAM ≤ C B−IMAS For large systems and/or good channels - C MAM ≤ C B−MAM ≤ C IMAS ≤ C B−IMAS

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 36 / 37

slide-37
SLIDE 37

The End

Vishrant (CNRG) Minimizing Age of Information October 16, 2017 37 / 37