Gabriel Jones

Results 51 comments of Gabriel Jones

Just found Karmada. How do I combine [FederatedHPA](https://karmada.io/docs/tutorials/autoscaling-with-federatedhpa) with [KEDA Apache Kafka Scaler](https://keda.sh/docs/2.11/scalers/apache-kafka/)?

I need to revise my sequence algorithm. It is only considering scale steps where all pods get the same number of partitions. For example at 8 total partitions scaling from...

The `alpha` and `rc` versions should go into the `` tag, but not into the `` tag.

Hmm this may be a bug in Gradle itself. https://github.com/gradle/gradle/blob/v7.6.0/subprojects/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java#L101-L103

The motivation of this issue is a desire to use the `latest.release` [version range declaration](https://docs.gradle.org/current/userguide/single_versions.html) like so: `build.gradle.kts` ```build.gradle.kts dependencies { implementation("io.arrow-kt:arrow-core:latest.release") } ``` The expectation is this would pull...

Does anyone know if there is an easy way to ask homebrew to install @Maddog2050 's fork?

Hmmm ``` > go install github.com/Maddog2050/dive@fix-oci-format go: downloading github.com/Maddog2050/dive v0.0.0-20240223132924-5dd9ba6e48f9 go: github.com/Maddog2050/dive@fix-oci-format: version constraints conflict: github.com/Maddog2050/[email protected]: parsing go.mod: module declares its path as: github.com/wagoodman/dive but was required as: github.com/Maddog2050/dive ```...

I see all of these have `toList(): List` but there is no way to call `toList` polymorphically due to lack of structural subtyping/type classes/ducktyping in kotlin. 🤦 I am a...

compare (prometheus_http_request_duration_seconds_bucket) - [with join](https://prometheus.demo.do.prometheus.io/graph?g0.expr=sum%20by%20(le)%20(increase(prometheus_http_request_duration_seconds_bucket%5B1m%5D)%20*%20on%20(job%2C%20instance)%20group_left%20prometheus_build_info)&g0.tab=0&g0.display_mode=heatmap&g0.show_exemplars=0&g0.range_input=1h) - [without join](https://prometheus.demo.do.prometheus.io/graph?g0.expr=sum%20by%20(le)%20(increase(prometheus_http_request_duration_seconds_bucket%5B1m%5D))&g0.tab=0&g0.display_mode=heatmap&g0.show_exemplars=0&g0.range_input=1h)

One possible workaround is to use something like `round(_, 0.00001)`. Does this give the same result as the unmultiplied query? compare: - `round(sum by (le) (increase(prometheus_http_request_duration_seconds_bucket[1m]) * 1), 0.00001)` [link](https://prometheus.demo.do.prometheus.io/graph?g0.expr=round(sum%20by%20(le)%20(increase(prometheus_http_request_duration_seconds_bucket%5B1m%5D)%20*%201)%2C%200.00001)&g0.tab=0&g0.display_mode=heatmap&g0.show_exemplars=0&g0.range_input=1h&g0.end_input=2024-05-10%2000%3A00%3A00&g0.moment_input=2024-05-10%2000%3A00%3A00)...