Ryan Rupp

Results 16 comments of Ryan Rupp

I believe the API is partially implemented and doesn't include locking mechanisms unfortunately. Looking into it a bit when running on Spark EMR for instance, the `HiveMetaStoreClientFactory` can be overridden...

The client source was made available for Glue now for reference, see [announcement](https://aws.amazon.com/about-aws/whats-new/2019/02/source-code-for-the-aws-glue-data-catalog-client-for-apache-hive-metatore-is-now-available-for-download/). `AWSCatalogMetastoreClient` implements Hive's `IMetaStoreClient` and [delegates](https://github.com/awslabs/aws-glue-data-catalog-client-for-apache-hive-metastore/blob/master/aws-glue-datacatalog-hive2-client/src/main/java/com/amazonaws/glue/catalog/metastore/AWSCatalogMetastoreClient.java#L560) to the `GlueMetastoreClientDelegate` although this only implements a subset of functionality...

Yes, personally since Elasticsearch is already in use I'm just leveraging topbeat and doing the OS level monitoring outside of Stagemonitor but I can understand the value of having this...

Yeah I think an optional Kibana plugin would be the best for now (assuming there's ways to bundle this as a plugin now so it can be applied without having...

Looks like this can be achieved now possibly via the new plugin - https://github.com/stagemonitor/stagemonitor-kibana

Github has code search so you can look for "jvm_process_cpu_usage" - metrics are registered in the Java code then periodically reported to Elasticsearch. Searching should lead you to [this](https://github.com/stagemonitor/stagemonitor/blob/e9bdba630696a4c0bc535b494029cee5254d9c71/stagemonitor-jvm/src/main/java/org/stagemonitor/jvm/JvmPlugin.java#L44) and...

![image](https://user-images.githubusercontent.com/3022260/49769071-6be7f580-fca4-11e8-84b9-175ca46f6cf0.png) See the above threads for instance, `queueCapacity` is passed as 10 but we end up with 10 threads then.

Relates to https://github.com/eirslett/frontend-maven-plugin/pull/807 which looks like when this scenario happens it will at least auto-delete the corrupted download, you can see this in the original post above > [ERROR] The...

I think possibly the download logic [here](https://github.com/eirslett/frontend-maven-plugin/blob/master/frontend-plugin-core/src/main/java/com/github/eirslett/maven/plugins/frontend/lib/FileDownloader.java#L76) should be changed so that it downloads to a temp directory and then uses move (atomic) once the download has completed. Currently, it's...

@dmastrop had this stop working for us today too ~1:15PM US Central time - found this thread. Haven't had a chance to look into it more yet but will look...