Miguel Carmona
Miguel Carmona
well, not sure if this is related but I am having a issue with node to SQL comprehension. - slick 3.2.3 - Scala 2.12.8 the query I am trying to...
bizarrely enough, if I use this over-worked dsl statement ```sql val q = overlaps .filter(r => (r.studyIdA === stid) && (r.studyIdB inSetBind stids)) .groupBy(r => (r.variantA, r.studyIdB)) .map(r => (r._1._1,...
In order to get it working I had to implement the `uniq` function like this: ```scala val q = overlaps .filter(r => (r.studyIdA === stid) && (r.studyIdB inSetBind stids)) .groupBy(_.variantA)...
Thanks for coming back to me so quickly. I create a lazy instance construction wrapped of a pipeline per executor in a Spark environment `val pipeline = new StanfordCoreNLP(props)`. That...
This is the full `case object` I use to serialise the pipeline creation to each executor and I assume each pipeline is immutable as it is created in each executor...
Thank you very much. I will also review my side of the code.
I am in slowmo holiday. I will give it a go when I have the chance. Sorry
@AngledLuffa, I have done some work on my side. Both versions, 4.4 and 4.5, suffer the same concurrency problem. Moving the `SemgrexPattern` compilation in each executor within the lazy object...
Sure. Asap I come back to business.
It works in a run where it was failing before. All fully addressed? I cannot assert it.