Re: api gateway with arrow flight grpc

2025-03-16 Thread kekronbekron
Yes, an API gateway in front surely helps, especially if you "front" this with an HTTP server rather than gRPC. 3 different patterns - 1: API gateway / reverse proxy --> HTTP server --> Flight Server GET bla.com/pipe --> connects to a duckdb file via Flight and sends stuff over 2: API gateway /

Re: api gateway with arrow flight grpc

2025-03-16 Thread Z A
Thanks all for the reply and insights! I am going to investigate the grpc passthru feature which is supported by the API gateway product. Btw, I wrote a simple Arrow Flight Server in python, but I couldn't figure out how to call it from grpcurl (all my attempts failed), is that even possible? ___