1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
syntax = "proto3";
import "google/protobuf/timestamp.proto";
option java_package = "org.apache.arrow.flight.impl";
option go_package = "github.com/apache/arrow-go/arrow/flight/gen/flight";
option csharp_namespace = "Apache.Arrow.Flight.Protocol";
package arrow.flight.protocol;
/*
* A flight service is an endpoint for retrieving or storing Arrow data. A
* flight service can expose one or more predefined endpoints that can be
* accessed using the Arrow Flight Protocol. Additionally, a flight service
* can expose a set of actions that are available.
*/
service FlightService {
/*
* Handshake between client and server. Depending on the server, the
* handshake may be required to determine the token that should be used for
* future operations. Both request and response are streams to allow multiple
* round-trips depending on auth mechanism.
*/
rpc Handshake(stream HandshakeRequest) returns (stream HandshakeResponse) {}
/*
* Get a list of available streams given a particular criteria. Most flight
* services will expose one or more streams that are readily available for
* retrieval. This api allows listing the streams available for
* consumption. A user can also provide a criteria. The criteria can limit
* the subset of streams that can be listed via this interface. Each flight
* service allows its own definition of how to consume criteria.
*/
rpc ListFlights(Criteria) returns (stream FlightInfo) {}
/*
* For a given FlightDescriptor, get information about how the flight can be
* consumed. This is a useful interface if the consumer of the interface
* already can identify the specific flight to consume. This interface can
* also allow a consumer to generate a flight stream through a specified
* descriptor. For example, a flight descriptor might be something that
* includes a SQL statement or a Pickled Python operation that will be
* executed. In those cases, the descriptor will not be previously available
* within the list of available streams provided by ListFlights but will be
* available for consumption for the duration defined by the specific flight
* service.
*/
rpc GetFlightInfo(FlightDescriptor) returns (FlightInfo) {}
/*
* For a given FlightDescriptor, start a query and get information
* to poll its execution status. This is a useful interface if the
* query may be a long-running query. The first PollFlightInfo call
* should return as quickly as possible. (GetFlightInfo doesn't
* return until the query is complete.)
*
* A client can consume any available results before
* the query is completed. See PollInfo.info for details.
*
* A client can poll the updated query status by calling
* PollFlightInfo() with PollInfo.flight_descriptor. A server
* should not respond until the result would be different from last
* time. That way, the client can "long poll" for updates
* without constantly making requests. Clients can set a short timeout
* to avoid blocking calls if desired.
*
* A client can't use PollInfo.flight_descriptor after
* PollInfo.expiration_time passes. A server might not accept the
* retry descriptor anymore and the query may be cancelled.
*
* A client may use the CancelFlightInfo action with
* PollInfo.info to cancel the running query.
*/
rpc PollFlightInfo(FlightDescriptor) returns (PollInfo) {}
/*
* For a given FlightDescriptor, get the Schema as described in Schema.fbs::Schema
* This is used when a consumer needs the Schema of flight stream. Similar to
* GetFlightInfo this interface may generate a new flight that was not previously
* available in ListFlights.
*/
rpc GetSchema(FlightDescriptor) returns (SchemaResult) {}
/*
* Retrieve a single stream associated with a particular descriptor
* associated with the referenced ticket. A Flight can be composed of one or
* more streams where each stream can be retrieved using a separate opaque
* ticket that the flight service uses for managing a collection of streams.
*/
rpc DoGet(Ticket) returns (stream FlightData) {}
/*
* Push a stream to the flight service associated with a particular
* flight stream. This allows a client of a flight service to upload a stream
* of data. Depending on the particular flight service, a client consumer
* could be allowed to upload a single stream per descriptor or an unlimited
* number. In the latter, the service might implement a 'seal' action that
* can be applied to a descriptor once all streams are uploaded.
*/
rpc DoPut(stream FlightData) returns (stream PutResult) {}
/*
* Open a bidirectional data channel for a given descriptor. This
* allows clients to send and receive arbitrary Arrow data and
* application-specific metadata in a single logical stream. In
* contrast to DoGet/DoPut, this is more suited for clients
* offloading computation (rather than storage) to a Flight service.
*/
rpc DoExchange(stream FlightData) returns (stream FlightData) {}
/*
* Flight services can support an arbitrary number of simple actions in
* addition to the possible ListFlights, GetFlightInfo, DoGet, DoPut
* operations that are potentially available. DoAction allows a flight client
* to do a specific action against a flight service. An action includes
* opaque request and response objects that are specific to the type action
* being undertaken.
*/
rpc DoAction(Action) returns (stream Result) {}
/*
* A flight service exposes all of the available action types that it has
* along with descriptions. This allows different flight consumers to
* understand the capabilities of the flight service.
*/
rpc ListActions(Empty) returns (stream ActionType) {}
}
/*
* The request that a client provides to a server on handshake.
*/
message HandshakeRequest {
/*
* A defined protocol version
*/
uint64 protocol_version = 1;
/*
* Arbitrary auth/handshake info.
*/
bytes payload = 2;
}
message HandshakeResponse {
/*
* A defined protocol version
*/
uint64 protocol_version = 1;
/*
* Arbitrary auth/handshake info.
*/
bytes payload = 2;
}
/*
* A message for doing simple auth.
*/
message BasicAuth {
string username = 2;
string password = 3;
}
message Empty {}
/*
* Describes an available action, including both the name used for execution
* along with a short description of the purpose of the action.
*/
message ActionType {
string type = 1;
string description = 2;
}
/*
* A service specific expression that can be used to return a limited set
* of available Arrow Flight streams.
*/
message Criteria {
bytes expression = 1;
}
/*
* An opaque action specific for the service.
*/
message Action {
string type = 1;
bytes body = 2;
}
/*
* An opaque result returned after executing an action.
*/
message Result {
bytes body = 1;
}
/*
* Wrap the result of a getSchema call
*/
message SchemaResult {
// The schema of the dataset in its IPC form:
// 4 bytes - an optional IPC_CONTINUATION_TOKEN prefix
// 4 bytes - the byte length of the payload
// a flatbuffer Message whose header is the Schema
bytes schema = 1;
}
/*
* The name or tag for a Flight. May be used as a way to retrieve or generate
* a flight or be used to expose a set of previously defined flights.
*/
message FlightDescriptor {
/*
* Describes what type of descriptor is defined.
*/
enum DescriptorType {
// Protobuf pattern, not used.
UNKNOWN = 0;
/*
* A named path that identifies a dataset. A path is composed of a string
* or list of strings describing a particular dataset. This is conceptually
* similar to a path inside a filesystem.
*/
PATH = 1;
/*
* An opaque command to generate a dataset.
*/
CMD = 2;
}
DescriptorType type = 1;
/*
* Opaque value used to express a command. Should only be defined when
* type = CMD.
*/
bytes cmd = 2;
/*
* List of strings identifying a particular dataset. Should only be defined
* when type = PATH.
*/
repeated string path = 3;
}
/*
* The access coordinates for retrieval of a dataset. With a FlightInfo, a
* consumer is able to determine how to retrieve a dataset.
*/
message FlightInfo {
// The schema of the dataset in its IPC form:
// 4 bytes - an optional IPC_CONTINUATION_TOKEN prefix
// 4 bytes - the byte length of the payload
// a flatbuffer Message whose header is the Schema
bytes schema = 1;
/*
* The descriptor associated with this info.
*/
FlightDescriptor flight_descriptor = 2;
/*
* A list of endpoints associated with the flight. To consume the
* whole flight, all endpoints (and hence all Tickets) must be
* consumed. Endpoints can be consumed in any order.
*
* In other words, an application can use multiple endpoints to
* represent partitioned data.
*
* If the returned data has an ordering, an application can use
* "FlightInfo.ordered = true" or should return all data in a
* single endpoint. Otherwise, there is no ordering defined on
* endpoints or the data within.
*
* A client can read ordered data by reading data from returned
* endpoints, in order, from front to back.
*
* Note that a client may ignore "FlightInfo.ordered = true". If an
* ordering is important for an application, an application must
* choose one of them:
*
* * An application requires that all clients must read data in
* returned endpoints order.
* * An application must return all data in a single endpoint.
*/
repeated FlightEndpoint endpoint = 3;
// Set these to -1 if unknown.
int64 total_records = 4;
int64 total_bytes = 5;
/*
* FlightEndpoints are in the same order as the data.
*/
bool ordered = 6;
/*
* Application-defined metadata.
*
* There is no inherent or required relationship between this
* and the app_metadata fields in the FlightEndpoints or resulting
* FlightData messages. Since this metadata is application-defined,
* a given application could define there to be a relationship,
* but there is none required by the spec.
*/
bytes app_metadata = 7;
}
/*
* The information to process a long-running query.
*/
message PollInfo {
/*
* The currently available results.
*
* If "flight_descriptor" is not specified, the query is complete
* and "info" specifies all results. Otherwise, "info" contains
* partial query results.
*
* Note that each PollInfo response contains a complete
* FlightInfo (not just the delta between the previous and current
* FlightInfo).
*
* Subsequent PollInfo responses may only append new endpoints to
* info.
*
* Clients can begin fetching results via DoGet(Ticket) with the
* ticket in the info before the query is
* completed. FlightInfo.ordered is also valid.
*/
FlightInfo info = 1;
/*
* The descriptor the client should use on the next try.
* If unset, the query is complete.
*/
FlightDescriptor flight_descriptor = 2;
/*
* Query progress. If known, must be in [0.0, 1.0] but need not be
* monotonic or nondecreasing. If unknown, do not set.
*/
optional double progress = 3;
/*
* Expiration time for this request. After this passes, the server
* might not accept the retry descriptor anymore (and the query may
* be cancelled). This may be updated on a call to PollFlightInfo.
*/
google.protobuf.Timestamp expiration_time = 4;
}
/*
* The request of the CancelFlightInfo action.
*
* The request should be stored in Action.body.
*/
message CancelFlightInfoRequest {
FlightInfo info = 1;
}
/*
* The result of a cancel operation.
*
* This is used by CancelFlightInfoResult.status.
*/
enum CancelStatus {
// The cancellation status is unknown. Servers should avoid using
// this value (send a NOT_FOUND error if the requested query is
// not known). Clients can retry the request.
CANCEL_STATUS_UNSPECIFIED = 0;
// The cancellation request is complete. Subsequent requests with
// the same payload may return CANCELLED or a NOT_FOUND error.
CANCEL_STATUS_CANCELLED = 1;
// The cancellation request is in progress. The client may retry
// the cancellation request.
CANCEL_STATUS_CANCELLING = 2;
// The query is not cancellable. The client should not retry the
// cancellation request.
CANCEL_STATUS_NOT_CANCELLABLE = 3;
}
/*
* The result of the CancelFlightInfo action.
*
* The result should be stored in Result.body.
*/
message CancelFlightInfoResult {
CancelStatus status = 1;
}
/*
* An opaque identifier that the service can use to retrieve a particular
* portion of a stream.
*
* Tickets are meant to be single use. It is an error/application-defined
* behavior to reuse a ticket.
*/
message Ticket {
bytes ticket = 1;
}
/*
* A location to retrieve a particular stream from. This URI should be one of
* the following:
* - An empty string or the string 'arrow-flight-reuse-connection://?':
* indicating that the ticket can be redeemed on the service where the
* ticket was generated via a DoGet request.
* - A valid grpc URI (grpc://, grpc+tls://, grpc+unix://, etc.):
* indicating that the ticket can be redeemed on the service at the given
* URI via a DoGet request.
* - A valid HTTP URI (http://, https://, etc.):
* indicating that the client should perform a GET request against the
* given URI to retrieve the stream. The ticket should be empty
* in this case and should be ignored by the client. Cloud object storage
* can be utilized by presigned URLs or mediating the auth separately and
* returning the full URL (e.g. https://amzn-s3-demo-bucket.s3.us-west-2.amazonaws.com/...).
*
* We allow non-Flight URIs for the purpose of allowing Flight services to indicate that
* results can be downloaded in formats other than Arrow (such as Parquet) or to allow
* direct fetching of results from a URI to reduce excess copying and data movement.
* In these cases, the following conventions should be followed by servers and clients:
*
* - Unless otherwise specified by the 'Content-Type' header of the response,
* a client should assume the response is using the Arrow IPC Streaming format.
* Usage of an IANA media type like 'application/octet-stream' should be assumed to
* be using the Arrow IPC Streaming format.
* - The server may allow the client to choose a specific response format by
* specifying an 'Accept' header in the request, such as 'application/vnd.apache.parquet'
* or 'application/vnd.apache.arrow.stream'. If multiple types are requested and
* supported by the server, the choice of which to use is server-specific. If
* none of the requested content-types are supported, the server may respond with
* either 406 (Not Acceptable) or 415 (Unsupported Media Type), or successfully
* respond with a different format that it does support along with the correct
* 'Content-Type' header.
*
* Note: new schemes may be proposed in the future to allow for more flexibility based
* on community requests.
*/
message Location {
string uri = 1;
}
/*
* A particular stream or split associated with a flight.
*/
message FlightEndpoint {
/*
* Token used to retrieve this stream.
*/
Ticket ticket = 1;
/*
* A list of URIs where this ticket can be redeemed via DoGet().
*
* If the list is empty, the expectation is that the ticket can only
* be redeemed on the current service where the ticket was
* generated.
*
* If the list is not empty, the expectation is that the ticket can be
* redeemed at any of the locations, and that the data returned will be
* equivalent. In this case, the ticket may only be redeemed at one of the
* given locations, and not (necessarily) on the current service. If one
* of the given locations is "arrow-flight-reuse-connection://?", the
* client may redeem the ticket on the service where the ticket was
* generated (i.e., the same as above), in addition to the other
* locations. (This URI was chosen to maximize compatibility, as 'scheme:'
* or 'scheme://' are not accepted by Java's java.net.URI.)
*
* In other words, an application can use multiple locations to
* represent redundant and/or load balanced services.
*/
repeated Location location = 2;
/*
* Expiration time of this stream. If present, clients may assume
* they can retry DoGet requests. Otherwise, it is
* application-defined whether DoGet requests may be retried.
*/
google.protobuf.Timestamp expiration_time = 3;
/*
* Application-defined metadata.
*
* There is no inherent or required relationship between this
* and the app_metadata fields in the FlightInfo or resulting
* FlightData messages. Since this metadata is application-defined,
* a given application could define there to be a relationship,
* but there is none required by the spec.
*/
bytes app_metadata = 4;
}
/*
* The request of the RenewFlightEndpoint action.
*
* The request should be stored in Action.body.
*/
message RenewFlightEndpointRequest {
FlightEndpoint endpoint = 1;
}
/*
* A batch of Arrow data as part of a stream of batches.
*/
message FlightData {
/*
* The descriptor of the data. This is only relevant when a client is
* starting a new DoPut stream.
*/
FlightDescriptor flight_descriptor = 1;
/*
* Header for message data as described in Message.fbs::Message.
*/
bytes data_header = 2;
/*
* Application-defined metadata.
*/
bytes app_metadata = 3;
/*
* The actual batch of Arrow data. Preferably handled with minimal-copies
* coming last in the definition to help with sidecar patterns (it is
* expected that some implementations will fetch this field off the wire
* with specialized code to avoid extra memory copies).
*/
bytes data_body = 1000;
}
/**
* The response message associated with the submission of a DoPut.
*/
message PutResult {
bytes app_metadata = 1;
}
/*
* EXPERIMENTAL: Union of possible value types for a Session Option to be set to.
*
* By convention, an attempt to set a valueless SessionOptionValue should
* attempt to unset or clear the named option value on the server.
*/
message SessionOptionValue {
message StringListValue {
repeated string values = 1;
}
oneof option_value {
string string_value = 1;
bool bool_value = 2;
sfixed64 int64_value = 3;
double double_value = 4;
StringListValue string_list_value = 5;
}
}
/*
* EXPERIMENTAL: A request to set session options for an existing or new (implicit)
* server session.
*
* Sessions are persisted and referenced via a transport-level state management, typically
* RFC 6265 HTTP cookies when using an HTTP transport. The suggested cookie name or state
* context key is 'arrow_flight_session_id', although implementations may freely choose their
* own name.
*
* Session creation (if one does not already exist) is implied by this RPC request, however
* server implementations may choose to initiate a session that also contains client-provided
* session options at any other time, e.g. on authentication, or when any other call is made
* and the server wishes to use a session to persist any state (or lack thereof).
*/
message SetSessionOptionsRequest {
map<string, SessionOptionValue> session_options = 1;
}
/*
* EXPERIMENTAL: The results (individually) of setting a set of session options.
*
* Option names should only be present in the response if they were not successfully
* set on the server; that is, a response without an Error for a name provided in the
* SetSessionOptionsRequest implies that the named option value was set successfully.
*/
message SetSessionOptionsResult {
enum ErrorValue {
// Protobuf deserialization fallback value: The status is unknown or unrecognized.
// Servers should avoid using this value. The request may be retried by the client.
UNSPECIFIED = 0;
// The given session option name is invalid.
INVALID_NAME = 1;
// The session option value or type is invalid.
INVALID_VALUE = 2;
// The session option cannot be set.
ERROR = 3;
}
message Error {
ErrorValue value = 1;
}
map<string, Error> errors = 1;
}
/*
* EXPERIMENTAL: A request to access the session options for the current server session.
*
* The existing session is referenced via a cookie header or similar (see
* SetSessionOptionsRequest above); it is an error to make this request with a missing,
* invalid, or expired session cookie header or other implementation-defined session
* reference token.
*/
message GetSessionOptionsRequest {
}
/*
* EXPERIMENTAL: The result containing the current server session options.
*/
message GetSessionOptionsResult {
map<string, SessionOptionValue> session_options = 1;
}
/*
* Request message for the "Close Session" action.
*
* The existing session is referenced via a cookie header.
*/
message CloseSessionRequest {
}
/*
* The result of closing a session.
*/
message CloseSessionResult {
enum Status {
// Protobuf deserialization fallback value: The session close status is unknown or
// not recognized. Servers should avoid using this value (send a NOT_FOUND error if
// the requested session is not known or expired). Clients can retry the request.
UNSPECIFIED = 0;
// The session close request is complete. Subsequent requests with
// the same session produce a NOT_FOUND error.
CLOSED = 1;
// The session close request is in progress. The client may retry
// the close request.
CLOSING = 2;
// The session is not closeable. The client should not retry the
// close request.
NOT_CLOSEABLE = 3;
}
Status status = 1;
}
|