As part of the collections operator we are working on we need to compare the value of the collection's cpu resource with the value of the underlying SolrCloud cpu resource. What we found is that the SolrCloud cpu resource is being formatted by the Solr operator which makes it tricky to do this comparison. I believe it's using the following go function to format the cpu value. I just wanted to confirm that if we port this logic to java we'll be able make this comparison.
// NewMilliQuantity returns a new Quantity representing the given // value * 1/1000 in the given format. Note that BinarySI formatting // will round fractional values, and will be changed to DecimalSI for // values x where (-1 < x < 1) && (x != 0). func NewMilliQuantity(value int64, format Format) *Quantity { return &Quantity{ i: int64Amount{value: value, scale: -3}, Format: format, } } Joel Bernstein http://joelsolr.blogspot.com/