Soney Mathew

Results 11 comments of Soney Mathew

Hi @IvanGoncharov / @5hanth what are your thoughts on how to go about implementing this? To breakdown the problem I had the following thoughts 1. How do I identify that...

I tested the following strategy for a table with ~1 million rows to complete the load in ~46 seconds set the DB_URL so that it can be refered later ```...

My initial exploration was to manually do what the ETL tool is facilitating currently. but as I went thru multiple stages I learned that the APOC approach can be amazingly...

@mroiter-larus sorry I won't be able to share my database. you could probably reproduce this by storing a big pretty printed json file content in a text column Example: The...

@mroiter-larus is it important that you need to reproduce it? Users could be having bad data in database with non-printable characters or any multiline content that can break your CSV....

This issue turned out to be crucial when I wanted to try this integration. It would be cool to be able to support a hybrid connection definition as supported by...

@jexp What do you think about supporting this via `@relation` schema directive? reference: https://www.graphile.org/postgraphile/connections/ Example schema definition ``` type Movie { title: String! released: Int actors: [Person] @relation(name:"ACTED_IN",direction:IN, type: SIMPLE)...

I will be keen to raise PR. How do I debug/test my changes? I just need to build the jar and replace it in my instance? > Then when we...

There can be multiple splits across multiple terminals with depth = 1. so a nested terminals array will work? `terminals: Terminal[] | TerminalGroup[]` ?

@fabiospampinato The more I thought about `terminals: Terminal[] | TerminalGroup[] ?` the more likely it can limit future evolution paths Perhaps another way would be to separate the grouping from...