What is the Server Deployment Package (SDP)? === Supported Open Source Software --- *When deployed or certified by Perforce Consulting*, the core functionality of the SDP is officially supported by Perforce Support, except for files in the `Unsupported` directory tree. The `Unsupported` folder included with the SDP is community supported, but officially supported by Perforce Support. (Unsupported files were in various folders prior to the 2020.1 release.) The SDP is open source software (see the [LICENSE](https://swarm.workshop.perforce.com/projects/perforce-software-sdp/files/main/LICENSE)), and accepts contributions (pending code review) from the user community. Please see the `doc` directory for: * SDP_GUIDE.Unix [PDF version](doc/SDP_Guide.Unix.pdf), [HTML version](doc/SDP_Guide.Unix.html), or [ASCIIDoctor version](doc/SDP_Guide.Unix.adoc) * SDP_GUIDE.Windows [PDF version](doc/SDP_Guide.Windows.pdf), [HTML version](doc/SDP_Guide.Windows.html), or [ASCIIDoctor version](doc/SDP_Guide.Windows.adoc) * SDP_Failover_Guide [PDF version](doc/SDP_Failover_Guide.pdf), [HTML version](doc/SDP_Failover_Guide.html), or [ASCIIDoctor version](doc/SDP_Failover_Guide.adoc) High Availability (HA) --- The SDP supports a variety of methods for achieving high availability that benefit simple, single-server environments and sophisticated global enterprise environments, and all in between. Standardized and documented recovery procedures, offline databases, and optional replication (made easier with the SDP) all make HA easier to achieve. There is more detailed discussions and references in the SDP Guides noted above. Disaster Recovery (DR) --- Just as with HA, the SDP makes it easier to implement robust, reliable DR strategies. There is more detailed discussions and references in the SDP Guides noted above. Fast and Safe Upgrades --- The SDP makes upgrades of Helix server products fast and easy, regardless of the scale of your environment. By taking advantage of the offline database structure, the SDP enables upgrades with just a few minutes of downtime (enough to do a journal rotation). Production Focus --- The p4d executable, without any configuration, is optimized for evaluation and demonstration purposes. While it has many features that can make it reliable and robust, many of those features must be configured. The SDP is intended to be used for production environments or more realistic Proof of Concept installations. See the [Helix Installer](https://swarm.workshop.perforce.com/projects/perforce_software-helix-installer) which makes quick work of installing the SDP for PoC evaluation with a production-like setup, complete with the Sample Depot training data set. Best Practice Configurables --- The SDP also maintains, on an ongoing basis, a set of best-practices configuration settings (e.g. 'configurables' and environment settings) suited to production environments, which often differ from p4d defaults. Optimal Performance, Data Safety, and Simplified Backup --- The SDP provides a standard structure for operating Perforce that is optimized for performance, scalability, and ease of backup. The SDP Guide includes documentation that promotes volume layout and storage architecture best practices. To simplify backup, all digital assets are in a single directory. Live databases that cannot be backed up live in another, and active log files in another. For any scale environment, this makes it easy to back up the server's critical data. For larger scale environments, these directories become storage volume mount points, with the layout promoting best performance and data safety. Sophistication Simplified --- In addition to the basics, the SDP provides structure, standards, guidance, and automation that greatly simplify deployment and management of sophisticated Helix global topologies. For example, the SDP includes tools that greatly simplify complex tasks such as creating new replicas, backing up edge servers without down time, etc. Multi-Instance Management --- The SDP supports operation of multiple instances of Helix on a machine, allowing each instance to have differing configuration, e.g. different: * versions of software components (p4d, p4broker, etc.) * case sensitivity setting (sensitive/insensitive) * Unicode setting (enabled/disabled) Shell Environment Management --- The SDP provides standard mechanism for defining a controlled shell environment. This benefits p4d and other Perforce software products directly, and also provides good examples of controlling the environment for supporting automation. Perforce Automation Standards --- The SDP defines a standard for installing and configuring derived APIs. For example, Python is built with P4Python in /p4/common/python, and Perl with P4Perl in /p4/common/perl. Stock vs. Custom SDP --- Many Perforce customers use the SDP as-is. Others benefit by incorporating concepts and ideas from the SDP into their own environments, e.g. for development of custom policy enforcement triggers, systems integrations, promoting or enforcing local naming conventions, etc. Helix Management System --- The [Helix Management System (HMS)](https://swarm.workshop.perforce.com/projects/perforce_software-hms) is a separate, community-supported product that builds on the SDP. This is likely to be of interest at installations with sophisticated global topologies and/or a fleet of SDP instances to manage. Bugs, Enhancements, and Future Plans === Perforce Jobs are used to file bugs and request enhancements to the SDP. The list of jobs (other than closed ones) can be viewed [here](https://swarm.workshop.perforce.com/projects/perforce-software-sdp/jobs "SDP Open Jobs"). You can see all jobs (including closed ones if desired) from the command line interface. Connect to The Workshop and run the p4 jobs command, something like this: ``` p4 jobs -l -e "Project=perforce-software-sdp ^Status=closed" ``` While there is currently no formal roadmap for the SDP, it is actively maintained and continues to evolve alongside P4D and other Helix Core components it manages. Jobs are occasionally reviewed and addressed as time allows for consultants and contributors, sometimes driven by customer-funded consulting projects. Contributing === Contributions to the SDP are most welcome! Note that contributing requires a basic user knowledge of working with Perforce. Contributing by Shelving (Small Changes) --- For contributing small changes, contribute by shelving changelists to the 'dev' branch your workspace. All registered Workshop users have **open** access (but not **write**) to the SDP dev branch. This allows shelving (but not submitting) updates to the SDP dev branch path: ``` //guest/perforce_software/sdp/dev/... ``` To contribute by shelving, create a workspace that maps that path, named something like '*your_user*.*your_hostname*.sdp'. Make your changes in that workspace, provide a good changelist description, and include a #review tag in your changelist description. When you are ready, shelve the changelist. Perforce Consultants will review the change, and either incorporate it or provide feedback. Be sure to provide a detailed change description, and don't forget include the #review tag in your changelist description to initiate a Swarm pre-commit code review. Contributing by Branching (Bigger Changes) --- Optionally, you may also branch the SDP dev branch, or some subset of it, into your own guest area. Creating a branch spec is recommended for this purpose, e.g. with a branch spec like this: ``` Branch: your_name-sdp Owner: your_name Description: SDP Updates by your_name. Options: unlocked View: //guest/perforce_software/sdp/dev/.. //guest/your_name/sdp/dev/... ``` If you branch a subset, maintain the full path structure (as in the example above), so you can easily expand the scope of what you branched initially at some later date. Edit, test and submit changes in your branch. Keep your code up to date with other changes by merging down from the shared dev branch to your dev branch, e.g. by doing: ``` p4 merge -b your_name-sdp ``` ... followed by the usual resolve and submit. When you'e ready to copy your versions up to our dev branch, do like so: ``` p4 change p4 copy -c YourCL -r -b your_name-sdp ``` Be sure that your changelist has a clear and accurate description, and that the description contains a #review tag on a line by itself. That will trigger a code review process when you shelve the change, like so: ``` p4 shelve -c YourCL ``` Perforce Consultants will review the change, and either incorporate it or provide feedback. Be sure to provide a detailed change description, and don't forget include the #review tag in your changelist description to initiate a Swarm pre-commit code review. Guidelines for SDP Contributors --- * Communicate! Use Swarm or email! Let folks know what you're planning before you work too hard on something that might already be underway. * File a job (Project=**perforce-software-sdp**) first. That's not required, but increases the transparency of what you're doing, and helps promote it. * We prefer changes that are generic, and have a wide appeal. * The core of the SDP, the scripts that do offline checkpoints for p4d, prioritize Perforce best practices over scripting magic. Don't get too fancy! :) Versioning the SDP Locally === You may want to version the SDP locally. See the SDP Guide for basic versioning instructions. Optionally, sophisticated enterprise installations may want to use the "Tight Ship" style of management, to be in line with the "Version Everything" mindset. For more info, see the [Helix Management System (HMS)](https://swarm.workshop.perforce.com/projects/perforce_software-hms). Upgrading Older Existing SDP Installations === If you have an earlier version of the Server Deployment Package (SDP) installed and are *not* using Tight Ship style of management, you'll want to be aware of the -test flag to the SDP setup script, mkdirs.sh. The following update instructions assume a simple, single-server topology. (For older SDP installations, this path may be /depotdata/sdp.) Get the new software from The Workshop, which you'll find in the form of a SDP.Unix.\*.tgz zipped tar file. Put the tar file in the /hxdepots folder on your server. **BE SURE TO MOVE THE OLD** /hxdepots/sdp folder aside first if it is there, e.g. to /hxdepots/sdp.old.2014-10-08. Then unpack it like this: ``` tar -xzvpf SDP.Unix.2017.5.####.tgz cd /hxdepots/sdp/Unix/setup ``` Modify the mkdirs.sh script to suit your environment (possibly borrowing values from your old mkdirs.sh script). Then run it: mkdirs.sh 1 -test That'll do a mock install, creating a **/tmp/**p4 structure, with folders like /tmp/p4/common/bin and /tmp/p4/1/bin. The output will suggest some diff -r commands to run to to view the diffs and apply updates manually, being careful not to lose any customizations or local configuration changes you may have made. If the SDP itself is versioned in Perforce in your environment, you can also put the new things from /tmp/p4 into your Perforce server where the SDP is. Commonly, there is a branch for receiving pristine updates of the generic SDP, e.g. 'p4c', which allow you to use Perforce merging to merge update into your local SDP mainline. Contact [Perforce Consulting Services](mailto:consulting@perforce.com) to ask about engaging professional services to upgrade the SDP for you. A few quick things to be aware of: * The old p4_1_init script (more generically p4_instance_init) was renamed to p4**d**_1_init. This will require updates to init script or symlink, e.g. in /etc/init.d. * Once you upgrade p4d to 2014.1+, you can do away with the SDP trigger that updates depot spec map fields. You can clear the Map: fields of depots, and use the server.depot.root configurable. Going forward, you'd only use Map: fields for depots that really do require a unique path, e.g. archive depots. SDP Structure === The SDP structure enables two major views of a Perforce server, the system administrator/storage architect view, and the application administrator view. THe system admin sees this structure: /hxdepots /hxmetadata /hxlogs or /hxdepots /hxmetadata1 /hxmetadata2 /hxlogs System administrators know they need to backup /hxdepots. Backing up /hxlogs is optional, and /hxmetadata1 & /hxmetadata2 are to be avoided by backup utilities, virus scanners, and anything else that might touch files in that area. This view is designed for optimizing for performance, as each of those folders has different performance profiles and usage patterns demanded by p4d. This view is not concerned with how many instances there are, or how they vary. Application administrators (Perforce Admins), though a structure of symlinks, see Perforce from a view like this: ``` /p4/1/bin /p4/1/depots /p4/1/checkpoints /p4/1/root /p4/1/offline_db /p4/1/tmp /p4/common/config /p4/common/bin /p4/ssl ``` This structure illustrates an instance named '1' (it need not be numeric), and a /p4/common area containing files common to all instances. Each of those folders is physically stored under an appropriate storage folder or volume as defined in the system admin view above. The /p4/*instance*/bin folder defines which Perforce products are active for that instance on the current machine (p4d, p4broker, p4p, etc.). The **root** folder contains P4ROOT, while **depots** contains archive files. The Windows SDP === There are two flavors of the SDP, Unix and Windows. Both are available from the [SDP downloads folder](https://swarm.workshop.perforce.com/projects/perforce-software-sdp/files/downloads). SDP Code Quality === An automated regression test suite and pre-commit code review processes help ensure code quality. This is supplemented by manual testing in the Battle School training lab environment. Contact [Perforce Consulting](mailto:consulting@perforce.com) for more information. See more details about the test suite in the [Test Suite README file](https://swarm.workshop.perforce.com/projects/perforce-software-sdp/files/main/test/README.md).