Use Profiles to streamline Python client setup¶
What problem do profiles solve?¶
Profiles provide a shorthand for constructing clients. A profile stores client parameters in a file and gives them an alias, so that something like this:
from tiled.client import from_uri
from tiled.client.cache import Cache
client = from_uri("http://some_server_address", cache=Cache.on_disk("path/to/cache"))
can be replaced with the more memorable and succinct
from tiled.client import from_profile
client = from_profile("my_data")
where my_data
can be any name you wish and the parameters are written down
once like so:
my_data:
uri: "http://some_server_address"
cache:
disk:
path: "path/to/cache"
Where are profiles kept?¶
Profiles are specified in YAML files located in any of several locations, including:
/etc/tiled/profiles
~/.config/tiled/profiles
Tiled will also look for profiles in locations specific to the operating system and the software environment, in accordance with standards. To see the full list on your system, use the command line:
$ tiled profile paths
or Python:
>>> from tiled.profiles import paths
>>> paths
Within these directories, you may have:
Any number of configuration files
Named whatever you want
With one or more profiles per configuration file
That is, you can keep one file with all your profiles or organize them by grouping them into several separate files, named whatever you want.
The paths later in the list—“closer to the user”—take precedence in the event of name collisions. See the section on Merging Rules below for details.
Note
Tiled always looks in three places for profiles:
A system-wide directory. This is used by administrators to distribute profiles that all users can see.
A directory in the currently active Python software environment (for example, the conda environment). This is used by software packages to distribute profiles that support their software.
A user-controlled directory (a subdirectory of
$HOME
). This is for users’ personal productivity.
The default locations for (1) and (3) can be overridden by setting the
environment variables TILED_SITE_PROFILES
and TILED_PROFILES
, respectively,
to the desired path.
Create and use a profile¶
Place a file in one of the directories listed in the previous section.
The last directory in the list, the “user” one, is a good place to start.
The filename can be anything. To start, profiles.yml
is as good a name as any.
As an example, use the content:
# profiles.yml
local:
uri: "http://localhost:8000"
cache:
memory:
available_bytes: 2_000_000_000 # 2 GB
local_dask:
uri: "http://localhost:8000"
structure_clients: "dask"
cache:
memory:
available_bytes: 2_000_000_000 # 2 GB
Now we have two profiles that aim at a local server, one with default (numpy) clients and one with dask clients. While running a local tiled server such as
tiled serve pyobject --public tiled.examples.generated_minimal:tree
we can succinctly create clients like
from tiled.client import from_profile
client = from_profile("local")
lazy_client = from_profile("local_dask")
List profiles¶
To list the names of the profiles on your system, along with the path to the file where each one is defined…
From the shell:
$ tiled profile list
From Python:
>>> from tiled.profiles import list_profiles
>>> list_profiles()
View profiles¶
To show the contents of a profile…
From the shell:
$ tiled profile show PROFILE_NAME
From Python:
>>> from tiled.profiles import load_profiles
>>> load_profiles() # show all, given as {profile_name: (filepath, content)}
>>> load_profiles()[PROFILE_NAME] # show one (filepath, content)
Merging rules¶
Situation #1: In the event of a name collision within one file like:
my_profile:
...
my_proifile: # oops, reused the same name
...
the second one will win. (This is just how YAML works. We wish we could issue a warning or something to let you know that something looks off, but we have no way to do that without going to great lengths.)
Situation #2: In the event of a name collision between files in different directories, the one in the directory “closer to the user”—later in the list of paths—will take precedence. No warning will be issued. This the normal way for users to override a default system- or environment-level configuration with their own preferences.
Situation #3: In the event of a name collision between two files in the same directory:
# some/directory/some_profiles.yaml
my_profile:
...
# some/directory/yet_more_profiles.yaml
my_profile:
...
Tiled has no way of guessing which is “right” so it refuses to load either one, and it issues a warning indicating that this profile will be skipped until the issue is resolved.
If the collision occurs in the system or software environment directory and you do not have the access necessary to edit those configurations and resolve the issue, you can override the problematic name by defining a new profile with that name in your user configuration directory. As described in Situation #2, the version in the user configuration directory will take precedence. The collision will therefore become irrelevant and will be ignored.
If the collision occurs in the user directory, then you (of course) have the access necessary to fix it, and you should.
Advanced: “Direct” Profiles¶
Note
Return to this section after reading Use Tiled in Python without an HTTP server.
For development and debugging, it can be convenient to place service and client
configuration together in a profile. To do this, include the special key
direct:
with the service-side configuration nested inside of it.
Here is a complete example.
# profiles.yml
my_profile:
direct:
trees:
- path: /
tree: tiled.adapters.files:DirectoryAdapter.from_directory
args:
directory: "path/to/files"
This takes the place of the uri:
parameter. A profile must contain
either uri:
or direct:
but not both. It can sit alongside other
usual client-side configuration, such as
# profiles.yml
my_profile:
direct:
trees:
- path: /
tree: tiled.adapters.files:DirectoryAdapter.from_directory
args:
directory: "path/to/files"
cache:
memory:
available_bytes: 2_000_000_000 # 2 GB
Reference¶
See Client Profiles Reference for a comprehensive reference.