concept pull mode in category powershell

This is an excerpt from Manning's book Windows PowerShell in Action, Third Edition.
DSC can work in two modes: push and pull. In push mode, you’re responsible for delivering the configuration to the server. In pull mode, the target server pulls its configuration from the DSC server. We’ll explain how to set up both options and why push mode scales better to the enterprise.
The architecture of DSC in pull mode is illustrated in figure 18.4.
In the DSC examples you’ve seen so far, the configuration has been pushed to the target server. As you saw in section 18.3.4, push mode doesn’t scale well. In this section, we’ll cover DSC in pull mode, where the target server contacts the pull server and pulls—and then applies its configuration.