<div dir="ltr">Bill, the problem here is that our load tests cannot go beyond a paltry 15-20 concurrent threads with the default set up (invalidation caches with SYNC mode - two HA AWS M3-Medium servers). Hence we&#39;re trying to find ways to improve on the performance and the avg response time under a load.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Nov 30, 2015 at 7:16 PM, Bill Burke <span dir="ltr">&lt;<a href="mailto:bburke@redhat.com" target="_blank">bburke@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">BTW, besides being more scalable, we invalidate rather than replicate to<br>
avoid transmitting sensitive security data over the network.<br>
<span class=""><br>
On 11/30/2015 8:29 AM, Lohitha Chiranjeewa wrote:<br>
&gt; Glad if you could look into the above and check if there are app level<br>
&gt; issues related to invalidations, thanks.<br>
&gt;<br>
&gt; One way to get around this through config changes is to make the<br>
&gt; relevant cache modes &#39;ASYNC&#39; and set up suitable values for &#39;queue-size&#39;<br>
&gt; and &#39;queue-flush-interval&#39; depending on your needs. Then the<br>
&gt; invalidations won&#39;t happen with each and every call.<br>
&gt;<br>
&gt; Obviously there would be problems if caches aren&#39;t invalidated in time<br>
&gt; with the above set up, it&#39;s up to the devs to come up with a suitable<br>
&gt; set of configs to cater to their needs.<br>
&gt;<br>
&gt;<br>
&gt; Regards,<br>
&gt; Lohitha.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Nov 30, 2015 at 1:08 PM, Stian Thorgersen &lt;<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a><br>
</span><span class="">&gt; &lt;mailto:<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     It is not expected behavior. Users should only be invalidated if<br>
&gt;     changes are made.<br>
&gt;<br>
&gt;     On 30 November 2015 at 07:01, Lohitha Chiranjeewa &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a><br>
</span><span class="">&gt;     &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;         Just tested the same flow extensively with Keycloak 1.2.0 as<br>
&gt;         well, and it seems the behavior is the same. Lots of MySQL<br>
&gt;         select queries getting executed with each call. Seems there&#39;s a<br>
&gt;         number of unnecessary cache invalidations going on which causes<br>
&gt;         Keycloak to fetch data from the DB over and over.<br>
&gt;<br>
&gt;         Could you please confirm if this is the expected behavior? As<br>
&gt;         far as I can see there&#39;s considerable performance degradation<br>
&gt;         due to unnecessary cache invalidations.<br>
&gt;<br>
&gt;<br>
&gt;         On Fri, Nov 27, 2015 at 8:42 PM, Lohitha Chiranjeewa<br>
</span><span class="">&gt;         &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a> &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;             I&#39;m invoking the following API call:<br>
&gt;             https://{host}/auth/admin/realms/xxxxx/users/55ffe851-2d94-460e-88b9-bc7340531b56<br>
&gt;             (same realm and user ID over and over again). The two HA<br>
&gt;             server(s) are idle apart from serving those calls. And I&#39;m<br>
&gt;             seeing the following SQL getting logged in my MySQL log for<br>
&gt;             each and every call:<br>
&gt;<br>
&gt;             select userentity0_.ID as ID1_42_,<br>
&gt;             userentity0_.CREATED_TIMESTAMP as CREATED_2_42_,<br>
&gt;             userentity0_.EMAIL as EMAIL3_42_,<br>
&gt;             userentity0_.EMAIL_CONSTRAINT as EMAIL_CO4_42_,<br>
&gt;             userentity0_.EMAIL_VERIFIED as EMAIL_VE5_42_,<br>
&gt;             userentity0_.ENABLED as ENABLED6_42_,<br>
&gt;             userentity0_.federation_link as federati7_42_,<br>
&gt;             userentity0_.FIRST_NAME as FIRST_NA8_42_,<br>
&gt;             userentity0_.LAST_NAME as LAST_NAM9_42_,<br>
&gt;             userentity0_.REALM_ID as REALM_I10_42_,<br>
&gt;             userentity0_.SERVICE_ACCOUNT_CLIENT_LINK as SERVICE11_42_,<br>
&gt;             userentity0_.TOTP as TOTP12_42_, userentity0_.USERNAME as<br>
&gt;             USERNAM13_42_ from USER_ENTITY userentity0_ where<br>
&gt;             userentity0_.ID=&#39;55ffe851-2d94-460e-88b9-bc7340531b56&#39; and<br>
&gt;             userentity0_.REALM_ID=&#39;xxxxx&#39;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;             On Fri, Nov 27, 2015 at 8:03 PM, Stian Thorgersen<br>
</span><span class="">&gt;             &lt;<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a> &lt;mailto:<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                 Strange - what are you doing and what are the SQL queries?<br>
&gt;<br>
&gt;                 On 27 November 2015 at 15:23, Lohitha Chiranjeewa<br>
</span><span class="">&gt;                 &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a> &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                     Yes Stian, that I understand. But the problem here<br>
&gt;                     is even if I execute continuous user retrieval calls<br>
&gt;                     (same user - no other functionality in between),<br>
&gt;                     still MySQL select queries get executed for each<br>
&gt;                     call. So there lies an issue isn&#39;t it?<br>
&gt;<br>
&gt;<br>
&gt;                     On Fri, Nov 27, 2015 at 6:48 PM, Stian Thorgersen<br>
</span>&gt;                     &lt;<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a> &lt;mailto:<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a>&gt;&gt;<br>
<span class="">&gt;                     wrote:<br>
&gt;<br>
&gt;                         Things are still fetched from MySQL. Realms,<br>
&gt;                         clients, users, etc.. are then kept in the<br>
&gt;                         cache, but if it changes it&#39;s re-loaded from<br>
&gt;                         MySQL. We use an invalidation cache, not a<br>
&gt;                         distributed cache.<br>
&gt;<br>
&gt;                         On 27 November 2015 at 14:04, Lohitha<br>
&gt;                         Chiranjeewa &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a><br>
</span><span class="">&gt;                         &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                             What I mean is, if it were working, I<br>
&gt;                             shouldn&#39;t see mysql queries getting executed<br>
&gt;                             right? So my guess is data is still fetched<br>
&gt;                             from the db instead of the cache.<br>
&gt;<br>
&gt;                             On Nov 27, 2015 5:52 PM, &quot;Stian Thorgersen&quot;<br>
&gt;                             &lt;<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a><br>
</span><span class="">&gt;                             &lt;mailto:<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                                 Yup, so it&#39;s working now?<br>
&gt;<br>
&gt;                                 On 27 November 2015 at 13:20, Lohitha<br>
&gt;                                 Chiranjeewa &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a><br>
</span><span class="">&gt;                                 &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                                     Apologies, keycloak-server.json<br>
&gt;                                     entries should change to:<br>
&gt;<br>
&gt;                                          &quot;realm&quot;: {<br>
&gt;                                              &quot;provider&quot;: &quot;jpa&quot;<br>
&gt;                                          },<br>
&gt;<br>
&gt;                                          &quot;user&quot;: {<br>
&gt;                                              &quot;provider&quot;: &quot;jpa&quot;<br>
&gt;                                          },<br>
&gt;<br>
&gt;                                          &quot;userSessionPersister&quot;: {<br>
&gt;                                              &quot;provider&quot;: &quot;jpa&quot;<br>
&gt;                                          },<br>
&gt;<br>
&gt;                                     On Fri, Nov 27, 2015 at 5:49 PM,<br>
&gt;                                     Lohitha Chiranjeewa<br>
&gt;                                     &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a><br>
</span><div><div class="h5">&gt;                                     &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                                         Hi Stian,<br>
&gt;<br>
&gt;                                         As per the migration guide, I<br>
&gt;                                         should have Infinispan up and<br>
&gt;                                         running for realms, users and<br>
&gt;                                         user sessions without doing any<br>
&gt;                                         specific changes.<br>
&gt;                                         keycloak-server.json was<br>
&gt;                                         reverted back to have the<br>
&gt;                                         following entries:<br>
&gt;                                         ...<br>
&gt;                                              &quot;realm&quot;: {<br>
&gt;                                                  &quot;provider&quot;: &quot;infinispan&quot;<br>
&gt;                                              },<br>
&gt;<br>
&gt;                                              &quot;user&quot;: {<br>
&gt;                                                  &quot;provider&quot;: &quot;infinispan&quot;<br>
&gt;                                              },<br>
&gt;<br>
&gt;                                              &quot;userSessionPersister&quot;: {<br>
&gt;                                                  &quot;provider&quot;: &quot;infinispan&quot;<br>
&gt;                                              },<br>
&gt;                                         ...<br>
&gt;<br>
&gt;                                         In the Admin Console I have both<br>
&gt;                                         Realm Cache and User Cache<br>
&gt;                                         enables. I see certain<br>
&gt;                                         Infinispan related logs getting<br>
&gt;                                         logged as well.<br>
&gt;<br>
&gt;                                         However, at the same time, I see<br>
&gt;                                         MySQL queries getting executed<br>
&gt;                                         for all user retrieval API<br>
&gt;                                         invocations (even if the same<br>
&gt;                                         user is retrieved continuously):<br>
&gt;                                         ...<br>
&gt;                                         select userentity0_.ID as<br>
&gt;                                         ID1_42_,<br>
&gt;                                         userentity0_.CREATED_TIMESTAMP<br>
&gt;                                         as CREATED_2_42_,<br>
&gt;                                         userentity0_.EMAIL as<br>
&gt;                                         EMAIL3_42_,<br>
&gt;                                         userentity0_.EMAIL_CONSTRAINT as<br>
&gt;                                         EMAIL_CO4_42_,<br>
&gt;                                         userentity0_.EMAIL_VERIFIED as<br>
&gt;                                         EMAIL_VE5_42_,<br>
&gt;                                         userentity0_.ENABLED as<br>
&gt;                                         ENABLED6_42_,<br>
&gt;                                         userentity0_.federation_link as<br>
&gt;                                         federati7_42_,<br>
&gt;                                         userentity0_.FIRST_NAME as<br>
&gt;                                         FIRST_NA8_42_,<br>
&gt;                                         userentity0_.LAST_NAME as<br>
&gt;                                         LAST_NAM9_42_,<br>
&gt;                                         userentity0_.REALM_ID as<br>
&gt;                                         REALM_I10_42_,<br>
&gt;                                         userentity0_.SERVICE_ACCOUNT_CLIENT_LINK<br>
&gt;                                         as SERVICE11_42_,<br>
&gt;                                         userentity0_.TOTP as TOTP12_42_,<br>
&gt;                                         userentity0_.USERNAME as<br>
&gt;                                         USERNAM13_42_ from USER_ENTITY<br>
&gt;                                         userentity0_ where<br>
&gt;                                         userentity0_.ID=&#39;55ffe851-2d94-460e-88b9-bc7340531b56&#39;<br>
&gt;                                         and userentity0_.REALM_ID=&#39;xxxxx&#39;<br>
&gt;                                         ...<br>
&gt;<br>
&gt;                                         So it seems something is wrong<br>
&gt;                                         here. Could you point out any<br>
&gt;                                         areas that I could further look<br>
&gt;                                         into?<br>
&gt;<br>
&gt;<br>
&gt;                                         Regards,<br>
&gt;                                         Lohitha.<br>
&gt;<br>
&gt;                                         On Thu, Nov 26, 2015 at 7:58 PM,<br>
&gt;                                         Stian Thorgersen<br>
&gt;                                         &lt;<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a><br>
</div></div><span class="">&gt;                                         &lt;mailto:<a href="mailto:sthorger@redhat.com">sthorger@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;                                             Please read the migration guide<br>
&gt;<br>
&gt;                                             On 26 November 2015 at<br>
&gt;                                             14:53, Lohitha Chiranjeewa<br>
&gt;                                             &lt;<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a><br>
</span>&gt;                                             &lt;mailto:<a href="mailto:kalc04@gmail.com">kalc04@gmail.com</a>&gt;&gt;<br>
<div><div class="h5">&gt;                                             wrote:<br>
&gt;<br>
&gt;                                                 Hi,<br>
&gt;<br>
&gt;                                                 We&#39;re in the process of<br>
&gt;                                                 assessing the impact on<br>
&gt;                                                 upgrading from Keycloak<br>
&gt;                                                 1.2.0 to 1.6.1. We came<br>
&gt;                                                 across an issue when<br>
&gt;                                                 trying to enable<br>
&gt;                                                 Infinispan cache through<br>
&gt;                                                 the keycloak-server.json<br>
&gt;                                                 file as we used to do in<br>
&gt;                                                 1.2.0.<br>
&gt;<br>
&gt;                                                 We have the following<br>
&gt;                                                 entries in 1.6.1:<br>
&gt;                                                      &quot;realm&quot;: {<br>
&gt;                                                          &quot;provider&quot;:<br>
&gt;                                                 &quot;infinispan&quot;<br>
&gt;                                                      },<br>
&gt;<br>
&gt;                                                      &quot;user&quot;: {<br>
&gt;                                                          &quot;provider&quot;:<br>
&gt;                                                 &quot;infinispan&quot;<br>
&gt;                                                      },<br>
&gt;<br>
&gt;<br>
&gt;                                                 &quot;userSessionPersister&quot;: {<br>
&gt;                                                          &quot;provider&quot;:<br>
&gt;                                                 &quot;infinispan&quot;<br>
&gt;                                                      },<br>
&gt;                                                 .........<br>
&gt;<br>
&gt;                                                 &quot;connectionsInfinispan&quot;: {<br>
&gt;                                                          &quot;default&quot; : {<br>
&gt;<br>
&gt;                                                 &quot;cacheContainer&quot; :<br>
&gt;                                                 &quot;java:comp/env/infinispan/Keycloak&quot;<br>
&gt;                                                          }<br>
&gt;                                                      }<br>
&gt;<br>
&gt;                                                 All configurations in<br>
&gt;                                                 1.6.1 standalone-ha.xml<br>
&gt;                                                 file remains comparable<br>
&gt;                                                 (and correct to the best<br>
&gt;                                                 of our knowledge) with<br>
&gt;                                                 the ones in 1.2.0.<br>
&gt;<br>
&gt;                                                 With the above configs,<br>
&gt;                                                 when we start the<br>
&gt;                                                 Keycloak service the<br>
&gt;                                                 following error(s) get<br>
&gt;                                                 logged:<br>
&gt;<br>
&gt;                                                 18:03:31,610 ERROR<br>
&gt;                                                 [org.jboss.msc.service.fail]<br>
&gt;                                                 (ServerService Thread<br>
&gt;                                                 Pool -- 64) MSC000001:<br>
&gt;                                                 Failed to start service<br>
&gt;                                                 jboss.undertow.deployment.default-server.default-host./auth:<br>
&gt;                                                 org.jboss.msc.service.StartException<br>
&gt;                                                 in service<br>
&gt;                                                 jboss.undertow.deployment.default-server.default-host./auth:<br>
&gt;                                                 java.lang.RuntimeException:<br>
&gt;                                                 Failed to construct<br>
&gt;                                                 public<br>
&gt;                                                 org.keycloak.services.resources.KeycloakApplication(javax.servlet.ServletContext,org.jboss.resteasy.core.Dispatcher)<br>
&gt;                                                      at<br>
&gt;                                                 org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:85)<br>
&gt;                                                      at<br>
&gt;                                                 java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 java.util.concurrent.FutureTask.run(FutureTask.java:262)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 java.lang.Thread.run(Thread.java:744)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.threads.JBossThread.run(JBossThread.java:320)<br>
&gt;                                                 [jboss-threads-2.2.0.Final.jar:2.2.0.Final]<br>
&gt;                                                 Caused by:<br>
&gt;                                                 java.lang.RuntimeException:<br>
&gt;                                                 Failed to construct<br>
&gt;                                                 public<br>
&gt;                                                 org.keycloak.services.resources.KeycloakApplication(javax.servlet.ServletContext,org.jboss.resteasy.core.Dispatcher)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.core.ConstructorInjectorImpl.construct(ConstructorInjectorImpl.java:160)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.spi.ResteasyProviderFactory.createProviderInstance(ResteasyProviderFactory.java:2211)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.spi.ResteasyDeployment.createApplication(ResteasyDeployment.java:295)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.spi.ResteasyDeployment.start(ResteasyDeployment.java:236)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.init(ServletContainerDispatcher.java:112)<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.init(HttpServletDispatcher.java:36)<br>
&gt;                                                      at<br>
&gt;                                                 io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117)<br>
&gt;                                                      at<br>
&gt;                                                 org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78)<br>
&gt;                                                      at<br>
&gt;                                                 io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103)<br>
&gt;                                                      at<br>
&gt;                                                 io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:230)<br>
&gt;                                                      at<br>
&gt;                                                 io.undertow.servlet.core.ManagedServlet.createServlet(ManagedServlet.java:131)<br>
&gt;                                                      at<br>
&gt;                                                 io.undertow.servlet.core.DeploymentManagerImpl.start(DeploymentManagerImpl.java:511)<br>
&gt;                                                      at<br>
&gt;                                                 org.wildfly.extension.undertow.deployment.UndertowDeploymentService.startContext(UndertowDeploymentService.java:101)<br>
&gt;                                                      at<br>
&gt;                                                 org.wildfly.extension.undertow.deployment.UndertowDeploymentService$1.run(UndertowDeploymentService.java:82)<br>
&gt;                                                      ... 6 more<br>
&gt;                                                 Caused by:<br>
&gt;                                                 java.lang.RuntimeException:<br>
&gt;                                                 Failed to find provider<br>
&gt;                                                 infinispan for realm<br>
&gt;                                                      at<br>
&gt;                                                 org.keycloak.services.DefaultKeycloakSessionFactory.init(DefaultKeycloakSessionFactory.java:66)<br>
&gt;                                                      at<br>
&gt;                                                 org.keycloak.services.resources.KeycloakApplication.createSessionFactory(KeycloakApplication.java:162)<br>
&gt;                                                      at<br>
&gt;                                                 org.keycloak.services.resources.KeycloakApplication.&lt;init&gt;(KeycloakApplication.java:62)<br>
&gt;                                                      at<br>
&gt;                                                 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native<br>
&gt;                                                 Method) [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 java.lang.reflect.Constructor.newInstance(Constructor.java:526)<br>
&gt;                                                 [rt.jar:1.7.0_45]<br>
&gt;                                                      at<br>
&gt;                                                 org.jboss.resteasy.core.ConstructorInjectorImpl.construct(ConstructorInjectorImpl.java:148)<br>
&gt;                                                      ... 19 more<br>
&gt;<br>
&gt;<br>
&gt;                                                 Is the new way to enable<br>
&gt;                                                 Infinispan different to<br>
&gt;                                                 what we had earlier? If<br>
&gt;                                                 so, can someone please<br>
&gt;                                                 point out the correct way?<br>
&gt;<br>
&gt;<br>
&gt;                                                 Regards,<br>
&gt;                                                 Lohitha.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;                                                 _______________________________________________<br>
&gt;                                                 keycloak-user mailing list<br>
&gt;                                                 <a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a><br>
</div></div>&gt;                                                 &lt;mailto:<a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a>&gt;<br>
&gt;                                                 <a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br>
<span class="im HOEnZb">&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; keycloak-user mailing list<br>
&gt; <a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br>
&gt;<br>
<br>
</span><span class="HOEnZb"><font color="#888888">--<br>
Bill Burke<br>
JBoss, a division of Red Hat<br>
<a href="http://bill.burkecentral.com" rel="noreferrer" target="_blank">http://bill.burkecentral.com</a><br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
keycloak-user mailing list<br>
<a href="mailto:keycloak-user@lists.jboss.org">keycloak-user@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br>
</div></div></blockquote></div><br></div>