Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Align
aligncenter

Image Removed

     Content Without Boundaries

Image Added




Set Parallel Writes Globally

This can be done by adding the following to your appSettings.json file

*Note: The default parallel write value is set at 4, 8, or 12 based on CPU logical processors count of the machine running the DryvIQ service.
If the CPU Logical Processors is 2, the default parallel writes value is 4.
If the CPU Logical Processors is 8, the default parallel writes value is 8.
If the CPU Logical Processors is 32, the default parallel writes value is 12.


Code Block
{
  "performance": {
        "parallel_writes": 4
         }
     }
}


This feature should be considered in context. Please see: DryvIQ Best Practices and Requirements for more details.



Disable Security

Update appSettings.json file to include "security": false, parameter

The Manager will be able to access the application with no login. There will be no logout option within the application


Code Block
....
  "server": {
	"security": false
  }