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.

from protobuf message arrow.flight.protocol.FlightDescriptor

interface FlightDescriptor {
    cmd: Uint8Array;
    path: string[];
    type: FlightDescriptor_DescriptorType;
}

Properties

Properties

cmd: Uint8Array

Opaque value used to express a command. Should only be defined when type = CMD.

from protobuf field: bytes cmd = 2;

path: string[]

List of strings identifying a particular dataset. Should only be defined when type = PATH.

from protobuf field: repeated string path = 3;

from protobuf field: arrow.flight.protocol.FlightDescriptor.DescriptorType type = 1;