Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.
    Comment: Published by Scroll Versions from this space and version 6.9-0

    Rendering on Mixed-OS farms or in Mixed-OS facilities

    Many Qube customers have artists running on one operating system while the render farm runs on another.  Some have render farms made up of multiple operating systems. In both cases, rendering becomes a problem as paths are different across operating systems.  For example, the path to a Maya scene file on OS X may be "/Volumes/server/projects/foo/maya.mb" whereas the path to the same file on Windows is "X:\Projects\foo\maya.mb" and on Linux is "/media/projects/foo/maya.mb".  To complicate matters, the path to the renderer is likely different across operating systems as well.

    We have made use of or developed ways of working with heterogeneous facilities: OS-level adaptations, worker-side path translation maps, client-side path translation maps, and "appFinder" jobs.  There is a time and a place for each. The details follow:

    OS-Level Adaptations

    This is a primary recommended solution.  It works in almost all cases except when a job is submitted from Windows and run on another OS (due to the direction of the path separators and/or the leading drive letter) -- For that situation, you will need to set up some form of path translation as described in another section. In all other cases, this will work not only for resolving paths to project files, but also resolving references used within the project file - something that the other methods can not do. You will, however, need to perform these actions on every machine in your render farm individually.

    ...

    Tip
    titleWindows Paths
    1. When windows evaluates a path without a drive letter, the root drive (typically C: ) is assumed.
    2. Most applications that run cross-platform will accept either forward or backward slashes as path separators

    OS X to Windows example

    When an artist is running OS X but the workers are running Windows, you will want to make Windows recognize the OS X path. The job will be sent with the path to the maya file as "/Volumes/server/projects/foo/maya.mb".  Keeping in mind that Windows assumes the system drive when no drive letter is given, that path will get a C: prepended to it.  We are now working with:

    ...

     and get the same results each time.

    OS X to Linux example

    OS X and Linux integration is done in a similar manner.  We want to make the OS X path work on the Linux machine.  In our example above, the OS X path to maya.mb is "/Volumes/server/projects/foo/maya.mb" whereas the Linux path to that file is "/media/projects/foo/maya.mb".  Both paths are the same starting at "projects", therefore, we need to make the OS X directories on the Linux machines with an appropriate symlink, as follows:

    ...

    Note that Linux to OS X operates exactly the same way with the same commands - you'll just need to replicate the start of the Linux path on OS X through the terminal.

    Worker-side Path Translation

    Starting with Qube 6.4-2, path translation can happen at the worker level.  This has an advantage over client-side path translation in that each worker can define the appropriate translation maps for itself rather than using a generic map for all machines.

    ...

    To centrally manage worker path maps, see Centralized Worker Configuration - Manually editing the qbwrk.conf

    Client-side Path Translation

    Client-side path translation is similar to worker-side path translation in that it does a simple find and replace on paths in the submission dialog.  Unlike worker-side path translation, client-side path translation happens when the job is submitting, which means you must submit from one OS and render on the same other OS - you cannot render on multiple OSs like you can work worker-side path translation.

     ClientClient-side path translation is configured in the GUI's "Path Translation Map" section in the preferences.

    For detailed instructions, see On-submission Path Translation 

    To centrally manage client-side path translation, see see the section on "Studio - wide Preferences and Defaults - external preference filespreferenes" in WV Preferences

    AppFinder jobs

    The last topic for cross-platofrm rendering is the path to the application itself.  Maya, for example, may be in either /Applications/Autodesk/maya<ver>/Maya.app, C:/Program Files/Autodesk/Maya<ver>, or /usr/autodesk/maya<ver>, or some other custom location based on the operating system.

    ...

    The basic idea is that you define (or use) an application key, then define the known location(s) for that application.  When submitting, you use the key for the executable field & let the appFinder do the rest.

    AppFinder jobs require Python 2.x be installed on the workers.  OS X comes with python pre-installed.  Linux users can install python through the built-in package manager.  Windows users will need to install Python manually.  See Installing Python.

    For detailed instructions, see AppFinder Jobs