Re: Local Laptop Starter Kit::Open to Contribution

2025-02-18 Thread Russell Spitzer
I think this would be a great thing to include as well! Polaris examples seems like a fine place to put it, not sure labs is as appropriate since wouldn’t be using the repo for experiments On Wed, Feb 19, 2025 at 12:54 AM Jean-Baptiste Onofré wrote: > Hi Kamesh > > Thanks for sharing ! That's co

Re: Local Laptop Starter Kit::Open to Contribution

2025-02-18 Thread Jean-Baptiste Onofré
Hi Kamesh Thanks for sharing ! That's cool ! Maybe we could have a repo dedicated to this kind of resource, something like https://github.com/apache/polaris-examples or polaris-lab ? Regards JB On Tue, Feb 18, 2025 at 6:23 PM Kamesh Sampath wrote: > > Hi, > > I build this starter kit to help k

Re: Polaris persistence refactor POC

2025-02-18 Thread Yufei Gu
> > DAO is rather specific to JPA - so it is in practice specific to > relational databases. That's not true. DAO could be a pure Java interface without JPA as I mentioned above. Also my POC and design intentionally avoid any JPA related APIs. In fact, both implementers in the POC are non-JPA ones

Local Laptop Starter Kit::Open to Contribution

2025-02-18 Thread Kamesh Sampath
Hi, I build this starter kit to help kickstarted with Apache Polaris on your local laptop with AWS s3 emulator like localstack with automation scripts that can be improved and used beyond local development environment. Git Repo: https://github.com/Snowflake-Labs/polaris-local-forge Quick start

Re: Polaris persistence refactor POC

2025-02-18 Thread Robert Stupp
Reminder: not all databases, especially NoSQL databases, are usable with JPA. DAO is rather specific to JPA - so it is in practice specific to relational databases. Further, DAOs, if implemented _like_ JPA, require a ton of logic to be implemented. I strongly prefer simple and database agnosti