gRPC¶
The gRPC connection type enables integrated connection to a gRPC service
Authenticating to gRPC¶
There are several ways to connect to gRPC service using Airflow.
Using
NO_AUTH
mode, simply setup an insecure channel of connection.Using
SSL
orTLS
mode, supply a credential pem file for the connection id, this will setup SSL or TLS secured connection with gRPC service.Using
JWT_GOOGLE
mode. It is using google auth default credentials by default, further use case of getting credentials from service account can be add later on.Using
OATH_GOOGLE
mode. Scopes are required in the extra field, can be setup in the UI. It is using google auth default credentials by default, further use case of getting credentials from service account can be add later on.Using
CUSTOM
mode. For this type of connection, you can pass in a connection function takes in the connection object and return a gRPC channel and supply whatever authentication type you want.
Default Connection IDs¶
The following connection IDs are used by default.
grpc_default
Used by the
GrpcHook
hook.
Configuring the Connection¶
- Host
The host url of the gRPC server
- Port (Optional)
The port to connect to on gRPC server
- Auth Type
Authentication type of the gRPC connection.
NO_AUTH
by default, possible values areNO_AUTH
,SSL
,TLS
,JWT_GOOGLE
,OATH_GOOGLE
,CUSTOM
- Credential Pem File (Optional)
Pem file that contains credentials for
SSL
andTLS
type auth Not required for other types.- Scopes (comma separated) (Optional)
A list of comma-separated Google Cloud scopes to authenticate with. Only for
OATH_GOOGLE
type connection