Jakub Liska

Results 12 issues of Jakub Liska

Hey, this is `docker save | docker $(docker-machine config my-machine) load` task that I find useful when dockerhub is down or in troubles. Up/Down is sometimes ~ 100KB/s and pushing...

Hey, if you try to open this project https://github.com/GlobalWebIndex/storage-partitioner in sbt, you end up with : ``` net.globalwebindex#sbt-common;0.0.2+20170413-0858: not found ``` when this project is being built : https://github.com/GlobalWebIndex/storage-partitioner/blob/master/build.sbt#L33 it...

Easily reproducible : ``` scala import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.core.util.{DefaultPrettyPrinter, MinimalPrettyPrinter} import com.fasterxml.jackson.databind.ObjectMapper import com.fasterxml.jackson.module.scala.DefaultScalaModule import com.fasterxml.jackson.module.scala.experimental.ScalaObjectMapper object ObjMapper extends ObjectMapper with ScalaObjectMapper { setSerializationInclusion(JsonInclude.Include.NON_NULL) registerModule(DefaultScalaModule) val prettyWriter = writer(new DefaultPrettyPrinter)...

Hey, I'm trying to do this : ``` swiv --druid your.druid.broker.host:8082 --print-config --with-comments > config.yaml ``` But as one of the datasources has low granularity and it takes more than...

Hey, we have several dimensions like `d_a` & `d_A` or `d_key` & `d_Key` which is considered duplicate and Swiv errors out, would it be possible to filter out the duplicates...

Hey, Dragon Disk is probably the best s3 client with GUI, have anybody managed to use it with fake-s3? Listing buckets work, but browsing them does not :-/

Hey, if you run this code : http://docs.aws.amazon.com/AmazonS3/latest/dev/ListingObjectKeysUsingJava.html even with older versions of the library, I tried 1.10.* and 1.11.* versions, then it only lists 2 objects. If you change...

Hey, hyperUnique aggregation only works in Pivot if you index it this way: ``` { "type" : "hyperUnique", "name" : "foo", "fieldName" : "foo" } ``` But if you do...

Hey, is there a way to implement custom partitioner, ie. custom logic for slot resolution from key ? I usually get into troubles when using Hashes with keys of this...

``` case class PipelineState(pipelineId: String, nodes: Seq[(String, Map[String, String])], edges: Set[(String, String)]) case object KeepWsAlive Unpickle[KeepWsAlive.type].fromString(Pickle.intoString(PipelineState("x", Seq.empty[(String, Map[String, String])], Set.empty))) -------------------------------- Success(KeepWsAlive) ``` This happens on both JVM and JS.