Re: [DISCUSS] Arrow Flight Predicate Pushdown

2025-04-05 Thread Lee, David (ITE)
json compatible strings as well. From: Lee, David (ITE) Sent: Saturday, March 29, 2025 7:12:47 AM To: dev@arrow.apache.org Subject: Re: [DISCUSS] Arrow Flight Predicate Pushdown This is hacky but I just use json as my flight ticket like a body for a http

Re: [Arrow Compute] Question on function chaining / math formular

2025-02-24 Thread Lee, David (ITE)
There might be something in Acero, but this something I’ve been planning to work on.. https://github.com/apache/arrow/issues/39128 Parse formula into relationship operators. Wrap * operator with pc.multiply Wrap - operator with pc.subtract Etc. etc. From: Li Jin

Re: [DISCUSS] Arrow Flight Predicate Pushdown

2025-03-29 Thread Lee, David (ITE)
This is hacky but I just use json as my flight ticket like a body for a http request post call. The json includes the data request and optional compute/filtering that needs to be performed. The server applies the compute/filtering using sql or pyarrow compute depending on the data source. ___