Github user srishtyagrawal commented on the issue:
https://github.com/apache/storm/pull/2505
@revans2 if I understand correctly your concern is that every time a table
is paginated for a given page, there will be a call to get the cluster
configuration. I verified that for multiple paginated tables within the same
page there will be only 1 call to fetch cluster configuration.
<img width="1439" alt="screen shot 2018-01-05 at 5 27 52 pm"
src="https://user-images.githubusercontent.com/564198/34634933-04284538-f23e-11e7-865b-a473c2af50d7.png">
In the above picture, there are 2 tables which have pagination (because of
the low minEntriesToShowPagination value) and there is just 1 call to
configuration (cluster/configuration endpoint).
I noticed that `index.html` already has a getJSON call to fetch
cluster/configuration for `Nimbus Configuration` table so I can make changes to
not introduce another one for fetching the pagination value.
---