This is a semi-official tool to build Pure Storage rack diagrams and get visio templates. It outputs PNG images, or Visio Stencil files, it also outputs JSON information about the image and the configuration and the ports. It can be used via the WebUI or via the API directly. Use the WebUI to understand how the API works. These images feed into the Pure Sizer and Pure Advisor tools.
Special thanks to Jian Ruan for the HTML interface!
By default, this tool tries to select suitable configurations, offering the option to override these for any FlashArray from m2 to the current FA, and any FlashBlade. Be aware that just because the tool can generate an image, it doesn't necessarily mean that the configuration is valid. Here are a few examples of things that aren't validated:
- PCI Slot Population Best Practice (not checked)
- Maximum capacity (not checked)
- End of Life, controllers, datapacks (not checked)
- Mezz Selection
For valid configurations, consider using PureSizer.
You can input multiple data packs on one line, all delimited by "/", where "-" indicates a new shelf. For example, "6/11/0.02" represents a SCM Pack, 11 TB pack, and 2 blanks all in the chassis.
"11-11" represents a chassis with 11TB and 1 Shelf 11TB dp.
At some point, we needed to populate from the right side moving left to accommodate SCM module best practices. Therefore, in a chassis or shelf, the last datapack specified (unless it's the first one) populates from right to left. The 1st, 2nd, 3rd, 4th, etc. (unless it's the last dp) populate from left to right.
We've added blanks: a blank in the chassis is 10 blanks, and a blank on a shelf is 14 blanks. Additional size blanks are available, such as 0.02 for 2 blanks, or 0.12 for 12 blanks. Use blanks to add spaces between packs or as the last datapack to avoid the right-to-left population if you prefer the open spots to be at the end.
For the XL, the population order is always from slot 0 to slot 39. The right-most reverse ordering does not apply to XL chassis.
The shelf type is automatically determined by the media type. SAS will be a SAS shelf and NVMe will be an NVMe shelf.
Each unit should have the correct default PCI population cards.
The tool attempts to automatically select the best slot for the card. It recognizes that a 4fc can't fit in an hh slot and fills the slots that fit. It does NOT adhere to recommended slot population. Please refer to the Ports Guide XR4 / XL
This feature overrides both default cards and anything in add-on cards. It works best for XL as the recommended slot per card is complicated.
Due to conflicting datapack sizes, a decimal point was added to all SAS datapacks.
For the chassis, the datapack population order is always left to right, or rather slots 0 to 39. We recommend using PCI override and checking slot best practices.
XL Example: 183/183/0/0-183
Blades are in the format <Size>:<Start Blade#>-<End Blade#>,<...>
. Blade slot numbers range from 0 to 149.
For example, 1 chassis of 17TB blades, and 1 chassis of 52, would be 17:0-14,52:15-29
.
When building the E, select the appropriate DFM counts and sizes and chassis. The blades will be labelled EC in the first chassis and EX in subsequent chassis when E is selected.
The PNG images I'm building from are small enough to be included in the code ZIP file directly, which significantly reduces the latency of multiple pulls. Even though this executes in about 300 ms on my local machine, it still takes a few seconds in Lambda.
After including the PNG files directly into the package, it performs better. To improve execution time further, you can increase your Lambda RAM. While you might not need more RAM, it will increase the CPU cycles available, resulting in faster execution.
Also, when converting to base64 to deliver a binary stream in Lambda Python, ensure you deliver a UTF-8 encoded stream, rather than a byte stream.