Skip to main content
Version: Java (Groovy)

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.

import static io.deephaven.uri.ResolveTools.resolve

resolvedTable = resolve("dh+plain://{container_name}/scope/myTable")

Share tables across a network

note

Sharing across a network requires the IP/hostname and port on which Deephaven is running.

import static io.deephaven.uri.ResolveTools.resolve

tableFromIp = resolve("dh+plain://{ip_address}:{port}/scope/myTable")
tableFromHostname = resolve("dh+plain://{hostname}:{port}/scope/myTable")