Arseniy Tashoyan

Results 12 issues of Arseniy Tashoyan

Solves https://github.com/confluentinc/schema-registry/issues/1414

We use Docker slaves, and inside the image we create a user `jenkins`: ``` RUN useradd jenkins -m -d /build ``` We also use a volume for cached dependencies downloaded...

RFE

##### SUMMARY Our application has all configuration files in a directory `conf`. When deploying to Kubernetes, we used to create a ConfigMap from the entire directory: ```bash kubectl create configmap...

needs_research

How can I parse a string containing template? Currently only templates in files are supported. I tried to do the following, but the result is embarrassing: ```scala class StringTemplateParser {...

I get the following warning: ``` [WARNING] Expected all dependencies to require Scala version: 2.12.18 [WARNING] com.sksamuel.avro4s:avro4s-core_2.12:4.0.13 requires scala version: 2.12.7 ``` I wonder why avro4s requires a precise version...

Currently there is no way to specify custom [ConfigParseOptions](https://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigParseOptions.html) in order to configure the parsing of config files. For example, it is impossible to set [allowMissing](https://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigParseOptions.html#setAllowMissing-boolean-) to `false`. The default...

I use DropwizardExports to publish Dropwisard metrics to Prometheus PushGateway. I need to set custom labels for the exported metrics (e.g. environment details). The API does not allow to configure...

There are examples illustrating Streaming with SQL processing. I suppose, in Spark 2 the preferred way of processing streaming data with SQL queries is [Spark Structured Streaming](https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html). Makes sense to...

Guidelines to run examples force user to run Spark local master with 4 cores: `--master local[4]` Real number of logical cores may differ from user to user. It would be...

As Spark 2 is not a breaking news anymore, it's time to make reference apps working with it. I can see at least the following things to do: - Use...