Re: warning during BlobStore.getBlobStore()

2017-04-18 Thread Ryan Shoemaker
anually implementing the locking, or why the "Suppliers.memoizeWithExpiration" isn't used instead, which is thread-safe too. HTH! I. [1] https://github.com/jclouds/jclouds/blob/master/apis/openstack-keystone/src/main/java/org/jclouds/openstack/keystone/v2_0/suppliers/LocationIdToURIFromAccessForTypeAndVersi

warning during BlobStore.getBlobStore()

2017-04-13 Thread Ryan Shoemaker
Hi, I've been seeing this warning pop out of my code for awhile and have finally gotten around to investigating it: org.jclouds.location.suppliers.implicit.GetRegionIdMatchingProviderURIOrNull|_ThreadID=10;_ThreadName=Thread-2;|failed to find key for value

Re: OpenStack identity endpoint and serviceCatalog usage

2017-01-09 Thread Ryan Shoemaker
don't know the state of the art of Openstack and if that field is still returned or not). * AND you use the "ContextBuilder.apiVersion" method to force the version you want. HTH, I. On 5 January 2017 at 20:33, Ryan Shoemaker <ryan.shoema...@enterprisedb.com> wrote: Hi,

OpenStack identity endpoint and serviceCatalog usage

2017-01-05 Thread Ryan Shoemaker
Hi, I'm hoping to get a better understanding of how jclouds discovers and decides which identity endpoint to use. Feel free to redirect me to docs if this is already written up somewhere. In my case, we have a community Mitaka installation running and an app that uses jclouds v2.0.0.

Re: Flavor filter helper

2016-06-15 Thread Ryan Shoemaker
ote: Hi Ryan, Apologies for the late reply. Unfortunately there is no such helper. The current jclouds portable model does not have those minimum requirements represented in the Image entity (which would be a nice to have, btw) so there is no portable filter yet. I. El 7 jun. 2016 9:33 p. m., &

Flavor filter helper

2016-06-07 Thread Ryan Shoemaker
Hi, Is there a built-in helper method that returns only those flavors meeting the minimum requirements specified by a given image? Thanks, --Ryan

monitoring reboot status

2015-06-04 Thread Ryan Shoemaker
Hi, Is there a reliable way to determine when a node has finished rebooting? I started off writing my own reboot method that execs an init 6 on the node and then polls port 22 using a retry predicate to figure out when the network service goes away and then comes back. I'm not a crazy about

Re: Thread leak when creating SshClient

2015-05-11 Thread Ryan Shoemaker
On May6 8:15 PM, Andrew Phillips wrote: context-scoped) etc, so in general, I'd say you try to create a context just once and reuse it when possible, and configure the thread pool size to fit your app needs. See also this old thread: https://groups.google.com/forum/#!topic/jclouds/pF9ZqXPdLTk

Re: Thread leak when creating SshClient

2015-05-11 Thread Ryan Shoemaker
On May11 11:30 AM, Andrew Phillips wrote: Thanks Ignasi and Andrew. I spent some time on Friday changing the code to work as you suggested and the app is behaving much better. Glad to hear! Could you have a quick look at the updated advice in: