Package io.deephaven.server.uri
Class ParquetTableResolver
java.lang.Object
io.deephaven.server.uri.ParquetTableResolver
- All Implemented Interfaces:
UriResolver
The parquet table resolver is able to resolve local parquet files, or directories for the scheme "parquet",
into
tables
.
For example, parquet:///data/my-file.parquet
or parquet:///data/my-dir
.
For more advanced use cases, see ParquetTools
.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ParquetTableResolver
get()
boolean
isResolvable
(URI uri) Returns true if the resolver canresolve
theuri
.static boolean
isWellFormed
(URI uri) Resolveuri
into an object.schemes()
The supported schemes.
-
Field Details
-
SCHEME
The parquet scheme,parquet
.- See Also:
-
-
Constructor Details
-
ParquetTableResolver
@Inject public ParquetTableResolver()
-
-
Method Details
-
isWellFormed
-
get
-
schemes
Description copied from interface:UriResolver
The supported schemes.- Specified by:
schemes
in interfaceUriResolver
- Returns:
- the schemes
-
isResolvable
Description copied from interface:UriResolver
Returns true if the resolver canresolve
theuri
.- Specified by:
isResolvable
in interfaceUriResolver
- Parameters:
uri
- the uri- Returns:
- true if this resolver can resolve uri
-
resolve
Description copied from interface:UriResolver
Resolveuri
into an object.- Specified by:
resolve
in interfaceUriResolver
- Parameters:
uri
- the URI- Returns:
- the object
- Throws:
InterruptedException
- if the current thread is interrupted
-