Package | Description |
---|---|
org.apache.arrow.flight | |
org.apache.arrow.flight.grpc | |
org.apache.arrow.flight.sql | |
org.apache.arrow.flight.sql.example |
Modifier and Type | Interface and Description |
---|---|
static interface |
CallOptions.GrpcCallOption
CallOptions specific to GRPC stubs.
|
Modifier and Type | Class and Description |
---|---|
class |
HeaderCallOption
Method option for supplying headers to method calls.
|
Modifier and Type | Method and Description |
---|---|
static CallOption |
CallOptions.timeout(long duration,
TimeUnit unit) |
Modifier and Type | Method and Description |
---|---|
void |
FlightClient.authenticate(ClientAuthHandler handler,
CallOption... options)
Authenticates against the Flight service.
|
Iterator<Result> |
FlightClient.doAction(Action action,
CallOption... options)
Performs an action on the Flight service.
|
FlightClient.ExchangeReaderWriter |
FlightClient.doExchange(FlightDescriptor descriptor,
CallOption... options)
Initiate a bidirectional data exchange with the server.
|
FlightInfo |
FlightClient.getInfo(FlightDescriptor descriptor,
CallOption... options)
Get info on a stream.
|
SchemaResult |
FlightClient.getSchema(FlightDescriptor descriptor,
CallOption... options)
Get schema for a stream.
|
FlightStream |
FlightClient.getStream(Ticket ticket,
CallOption... options)
Retrieve a stream from the server.
|
void |
FlightClient.handshake(CallOption... options)
Executes the handshake against the Flight service.
|
Iterable<ActionType> |
FlightClient.listActions(CallOption... options)
Lists actions available on the Flight service.
|
Iterable<FlightInfo> |
FlightClient.listFlights(Criteria criteria,
CallOption... options)
Get a list of available flights.
|
FlightClient.ClientStreamListener |
FlightClient.startPut(FlightDescriptor descriptor,
FlightClient.PutListener metadataListener,
CallOption... options)
Create or append a descriptor with another stream.
|
FlightClient.ClientStreamListener |
FlightClient.startPut(FlightDescriptor descriptor,
VectorSchemaRoot root,
DictionaryProvider provider,
FlightClient.PutListener metadataListener,
CallOption... options)
Create or append a descriptor with another stream.
|
FlightClient.ClientStreamListener |
FlightClient.startPut(FlightDescriptor descriptor,
VectorSchemaRoot root,
FlightClient.PutListener metadataListener,
CallOption... options)
Create or append a descriptor with another stream.
|
Modifier and Type | Class and Description |
---|---|
class |
CredentialCallOption
Method option for supplying credentials to method calls.
|
Modifier and Type | Method and Description |
---|---|
void |
FlightSqlClient.PreparedStatement.close(CallOption... options)
Closes the client.
|
FlightInfo |
FlightSqlClient.PreparedStatement.execute(CallOption... options)
Executes the prepared statement query on the server.
|
FlightInfo |
FlightSqlClient.execute(String query,
CallOption... options)
Execute a query on the server.
|
long |
FlightSqlClient.PreparedStatement.executeUpdate(CallOption... options)
Executes the prepared statement update on the server.
|
long |
FlightSqlClient.executeUpdate(String query,
CallOption... options)
Execute an update query on the server.
|
FlightInfo |
FlightSqlClient.getCatalogs(CallOption... options)
Request a list of catalogs.
|
FlightInfo |
FlightSqlClient.getCrossReference(TableRef pkTableRef,
TableRef fkTableRef,
CallOption... options)
Retrieves a description of the foreign key columns that reference the given table's
primary key columns (the foreign keys exported by a table).
|
FlightInfo |
FlightSqlClient.getExportedKeys(TableRef tableRef,
CallOption... options)
Retrieves a description about the foreign key columns that reference the primary key columns of the given table.
|
FlightInfo |
FlightSqlClient.getImportedKeys(TableRef tableRef,
CallOption... options)
Retrieves the foreign key columns for the given table.
|
FlightInfo |
FlightSqlClient.getPrimaryKeys(TableRef tableRef,
CallOption... options)
Request the primary keys for a table.
|
SchemaResult |
FlightSqlClient.getSchema(FlightDescriptor descriptor,
CallOption... options)
Get schema for a stream.
|
FlightInfo |
FlightSqlClient.getSchemas(String catalog,
String dbSchemaFilterPattern,
CallOption... options)
Request a list of schemas.
|
FlightInfo |
FlightSqlClient.getSqlInfo(FlightSql.SqlInfo[] info,
CallOption... options)
Request a set of Flight SQL metadata.
|
FlightInfo |
FlightSqlClient.getSqlInfo(int[] info,
CallOption... options)
Request a set of Flight SQL metadata.
|
FlightInfo |
FlightSqlClient.getSqlInfo(Iterable<Integer> info,
CallOption... options)
Request a set of Flight SQL metadata.
|
FlightStream |
FlightSqlClient.getStream(Ticket ticket,
CallOption... options)
Retrieve a stream from the server.
|
FlightInfo |
FlightSqlClient.getTables(String catalog,
String dbSchemaFilterPattern,
String tableFilterPattern,
List<String> tableTypes,
boolean includeSchema,
CallOption... options)
Request a list of tables.
|
FlightInfo |
FlightSqlClient.getTableTypes(CallOption... options)
Request a list of table types.
|
FlightSqlClient.PreparedStatement |
FlightSqlClient.prepare(String query,
CallOption... options)
Create a prepared statement on the server.
|
Constructor and Description |
---|
PreparedStatement(FlightClient client,
String sql,
CallOption... options)
Constructor.
|
Modifier and Type | Field and Description |
---|---|
List<CallOption> |
FlightSqlClientDemoApp.callOptions |
Modifier and Type | Method and Description |
---|---|
CallOption[] |
FlightSqlClientDemoApp.getCallOptions()
Gets the current
CallOption as an array; usually used as an
argument in FlightSqlClient methods. |
Copyright © 2022 The Apache Software Foundation. All rights reserved.