URI cheat sheet
Deephaven allows users to share tables and other assets via URIs.
Syntax
dh+plain://<authority>/<path>
Share tables locally
note
URI sharing locally requires the Docker container name.
from deephaven.uri import resolve
resolved_table = resolve(f"dh+plain://{container_name}/scope/my_table")
Share tables across a network
note
Sharing across a network requires the IP/hostname and port on which Deephaven is running.
from deephaven.uri import resolve
table_from_ip = resolve(f"dh+plain://{ip_address}:{port}/scope/my_table")
table_from_hostname = resolve(f"dh+plain://{hostname}:{port}/scope/my_table")