Re: Preventing new build warnings
Would a middle-ground be to add a warning-count check to the pull-request pipeline, which would then be reflected to the GitHub PR? On Tue, Jan 15, 2019 at 2:09 PM Udo Kohlmeyer wrote: > So, to reduce the number of new warnings, are we then going to > standardize on JDK versions? i.e, we only build with JDK 8 build 192 and > JDK11 build 03, because changes in JDK can introduce warnings. > > I'm all for reducing warnings, but they are warnings. Don't think we > need to error, or break on them. > > -1 for break build on warnings. > > --Udo > > On 1/15/19 13:28, Dan Smith wrote: > > Sounds good. +1 to failing the build if new warnings are introduced. > > > > -Dan > > > > On Tue, Jan 15, 2019 at 12:59 PM Galen O'Sullivan > > > wrote: > > > >> I'm for failing CI on warnings. It would be nice to reduce or eliminate > our > >> existing build warnings as well. > >> > >> Thanks, > >> Galen > >> > >> > >> On Tue, Jan 15, 2019 at 12:33 PM Peter Tran wrote: > >> > >>> Hello! > >>> > >>> I've noticed that there is no mechanism in which we prevent new PRs > from > >>> introduce new build warnings. In our PR template we ask people to self > >>> report that they have a "clean build" but nothing more to ensure we're > >> not > >>> adding new warnings. > >>> > >>> Has there been an initiative to address this in the past? Would it be > too > >>> restrictive if CI fails if new warnings are introduced in a PR? > >>> > >>> Thanks > >>> -- > >>> Peter Tran > >>> >
Re: Loner changes its membership port when starting an acceptor
It's not using toString(). It's just using DistributedMember.getName(). This is implemented by InternalDistributedMember.getName() which delegates to NetMember.getName(). Are you saying we should add a new method to DistributedMember instead of using getName()? The mbeans are categorized a type of Member or Distributed. Member means the mbean represents something about a member, while the other type means that the mbean represents something about the DistributedSystem/Cluster (aggregating all Members together in some way). When the type is Member, the ObjectName contains: "type=Member,member={0}" MBeanJMXAdapter creates the ObjectNames by filling in that parameter with DistributedMember.getName(). We originally documented that the ObjectNames would contain the DistributedMember.getName(), but we could change that by adding a new getMBeanName() method or something like that. I think we originally thought it would be nice for the User if they could simply refer to DistributedMember.getName() as being the same value as we use in the JMX ObjectName. On Tue, Jan 15, 2019 at 11:28 AM Bruce Schuchardt wrote: > Yeah, let's fix this, but let's not require the toString() of an object > to never change. Let's add another method that returns a Bean > identifier and is documented to never change. > > On 1/15/19 9:45 AM, Kirk Lund wrote: > > Sorry about the confusion. I meant that the change of membership port > > results in DistributedMember returning a different string from its > > getName() method. > > > > We discovered this because the JMX layer has some error handling that > > results in suppressing this failure, so the failure was being hidden. We > > cleaned up the error handling and saw quite a few failures in precheckin > > caused by this. I figured it was more correct to fix the underlying > problem > > rather than restore the suppression of this bug. > > > > On Tue, Jan 15, 2019 at 7:47 AM Bruce Schuchardt > > > wrote: > > > >> Actually the formatting code would go in InternalDistributedMember. The > >> JMX code already has a special method for handling that class. I was > >> thrown off by the reference to a non-existant getName() method in > >> LonerDistributionManager. > >> > >> On 1/15/19 7:34 AM, Bruce Schuchardt wrote: > >>> I think we could solve this by either moving the ID formatting code to > >>> the DistributionManager implementations & having > >>> LonerDistributionManager omit the port number or modify the > >>> client/server handshake to not install a port number when connecting > >>> to a remote GatewayReceiver. I guess the latter wouldn't work if the > >>> bean is in a real client cache. > >>> > >>> The installation of a port number was implemented to prevent duplicate > >>> membership IDs in client caches when clients are being spun up in > >>> parallel on the same machine. However there is also a "unique ID" in > >>> LonerDistributionManager that was supposed to address this problem but > >>> apparently didn't. > >>> > >>> On 1/14/19 4:45 PM, Kirk Lund wrote: > So I was stepping through some WAN tests in IJ debugger (on develop > with no > changes) and discovered that any MXBeans that are created before > starting a > server port (either using CacheServer or GatewayReceiver) are broken > and > fail to be updated after that -- the ObjectNames include the > DistributedMember.getName(). Turns out some JMX code is eating an NPE > that's caused because the LonerDistributionManager changes its > membership > port when an acceptor endpoint is started up. > > Below is the method in LonerDistributionManager (with some other > issues as > well) that does this updating. We either need to make a lot of > changes to > the JMX code to fix this or we need to make one small change to > LonerDistributionManager (ie, to delete this method). Question: do we > really need the DistributedMember of a Loner to change its getName() > which > includes the membership port that changed? > > /** > * update the loner port with an integer that may be more unique > than the > default port (zero). > * This updates the ID in place and establishes new default > settings for > the manufacture of new > * IDs. > * > * @param newPort the new port to use > */ > public void updateLonerPort(int newPort) { > this.logger.config( > String.format("Updating membership port. Port changed from > %s to > %s. ID is now %s", > new Object[] {this.lonerPort, newPort, getId()})); > this.lonerPort = newPort; > *this.getId().setPort(this.lonerPort);* > } > >
Re: Loner changes its membership port when starting an acceptor
Hmm, okay but I was looking at this code in MBeanJMXAdapter: public static String getMemberNameOrId(DistributedMember member) { if (member.getName() !=null && !member.getName().equals("")) { return makeCompliantName(member.getName()); } return makeCompliantName(member.getId()); } So if there isn't a name set in the distribution configuration it will use the toString of the member ID. I think that's what's happening to you. The getName() method in InternalDistributedMember doesn't return a string like you've described. It returns whatever was configured as the "name" in the distribution configuration properties. On 1/16/19 1:27 PM, Kirk Lund wrote: It's not using toString(). It's just using DistributedMember.getName(). This is implemented by InternalDistributedMember.getName() which delegates to NetMember.getName(). Are you saying we should add a new method to DistributedMember instead of using getName()? The mbeans are categorized a type of Member or Distributed. Member means the mbean represents something about a member, while the other type means that the mbean represents something about the DistributedSystem/Cluster (aggregating all Members together in some way). When the type is Member, the ObjectName contains: "type=Member,member={0}" MBeanJMXAdapter creates the ObjectNames by filling in that parameter with DistributedMember.getName(). We originally documented that the ObjectNames would contain the DistributedMember.getName(), but we could change that by adding a new getMBeanName() method or something like that. I think we originally thought it would be nice for the User if they could simply refer to DistributedMember.getName() as being the same value as we use in the JMX ObjectName. On Tue, Jan 15, 2019 at 11:28 AM Bruce Schuchardt wrote: Yeah, let's fix this, but let's not require the toString() of an object to never change. Let's add another method that returns a Bean identifier and is documented to never change. On 1/15/19 9:45 AM, Kirk Lund wrote: Sorry about the confusion. I meant that the change of membership port results in DistributedMember returning a different string from its getName() method. We discovered this because the JMX layer has some error handling that results in suppressing this failure, so the failure was being hidden. We cleaned up the error handling and saw quite a few failures in precheckin caused by this. I figured it was more correct to fix the underlying problem rather than restore the suppression of this bug. On Tue, Jan 15, 2019 at 7:47 AM Bruce Schuchardt Actually the formatting code would go in InternalDistributedMember. The JMX code already has a special method for handling that class. I was thrown off by the reference to a non-existant getName() method in LonerDistributionManager. On 1/15/19 7:34 AM, Bruce Schuchardt wrote: I think we could solve this by either moving the ID formatting code to the DistributionManager implementations & having LonerDistributionManager omit the port number or modify the client/server handshake to not install a port number when connecting to a remote GatewayReceiver. I guess the latter wouldn't work if the bean is in a real client cache. The installation of a port number was implemented to prevent duplicate membership IDs in client caches when clients are being spun up in parallel on the same machine. However there is also a "unique ID" in LonerDistributionManager that was supposed to address this problem but apparently didn't. On 1/14/19 4:45 PM, Kirk Lund wrote: So I was stepping through some WAN tests in IJ debugger (on develop with no changes) and discovered that any MXBeans that are created before starting a server port (either using CacheServer or GatewayReceiver) are broken and fail to be updated after that -- the ObjectNames include the DistributedMember.getName(). Turns out some JMX code is eating an NPE that's caused because the LonerDistributionManager changes its membership port when an acceptor endpoint is started up. Below is the method in LonerDistributionManager (with some other issues as well) that does this updating. We either need to make a lot of changes to the JMX code to fix this or we need to make one small change to LonerDistributionManager (ie, to delete this method). Question: do we really need the DistributedMember of a Loner to change its getName() which includes the membership port that changed? /** * update the loner port with an integer that may be more unique than the default port (zero). * This updates the ID in place and establishes new default settings for the manufacture of new * IDs. * * @param newPort the new port to use */ public void updateLonerPort(int newPort) { this.logger.config( String.format("Updating membership port. Port changed from %s to %s. ID is now %s", new Object[] {this.lonerPort, newPort, getId()})); this.lonerPort = newPort; *this.getId()
Re: Loner changes its membership port when starting an acceptor
Ah! I forgot about that (trying to do too many things at once). I'll file a ticket to fix it up. Thanks! On Wed, Jan 16, 2019 at 3:47 PM Bruce Schuchardt wrote: > Hmm, okay but I was looking at this code in MBeanJMXAdapter: > > public static String getMemberNameOrId(DistributedMember member) { >if (member.getName() !=null && !member.getName().equals("")) { > return makeCompliantName(member.getName()); >} >return makeCompliantName(member.getId()); > } > > So if there isn't a name set in the distribution configuration it will > use the toString of the member ID. I think that's what's happening to > you. The getName() method in InternalDistributedMember doesn't return a > string like you've described. It returns whatever was configured as the > "name" in the distribution configuration properties. > > On 1/16/19 1:27 PM, Kirk Lund wrote: > > It's not using toString(). It's just using DistributedMember.getName(). > > This is implemented by InternalDistributedMember.getName() which > delegates > > to NetMember.getName(). Are you saying we should add a new method to > > DistributedMember instead of using getName()? > > > > The mbeans are categorized a type of Member or Distributed. Member means > > the mbean represents something about a member, while the other type means > > that the mbean represents something about the DistributedSystem/Cluster > > (aggregating all Members together in some way). When the type is Member, > > the ObjectName contains: > > > > "type=Member,member={0}" > > > > MBeanJMXAdapter creates the ObjectNames by filling in that parameter with > > DistributedMember.getName(). We originally documented that the > ObjectNames > > would contain the DistributedMember.getName(), but we could change that > by > > adding a new getMBeanName() method or something like that. I think we > > originally thought it would be nice for the User if they could simply > refer > > to DistributedMember.getName() as being the same value as we use in the > JMX > > ObjectName. > > > > On Tue, Jan 15, 2019 at 11:28 AM Bruce Schuchardt < > bschucha...@pivotal.io> > > wrote: > > > >> Yeah, let's fix this, but let's not require the toString() of an object > >> to never change. Let's add another method that returns a Bean > >> identifier and is documented to never change. > >> > >> On 1/15/19 9:45 AM, Kirk Lund wrote: > >>> Sorry about the confusion. I meant that the change of membership port > >>> results in DistributedMember returning a different string from its > >>> getName() method. > >>> > >>> We discovered this because the JMX layer has some error handling that > >>> results in suppressing this failure, so the failure was being hidden. > We > >>> cleaned up the error handling and saw quite a few failures in > precheckin > >>> caused by this. I figured it was more correct to fix the underlying > >> problem > >>> rather than restore the suppression of this bug. > >>> > >>> On Tue, Jan 15, 2019 at 7:47 AM Bruce Schuchardt < > bschucha...@pivotal.io > >>> > >>> wrote: > >>> > Actually the formatting code would go in InternalDistributedMember. > The > JMX code already has a special method for handling that class. I was > thrown off by the reference to a non-existant getName() method in > LonerDistributionManager. > > On 1/15/19 7:34 AM, Bruce Schuchardt wrote: > > I think we could solve this by either moving the ID formatting code > to > > the DistributionManager implementations & having > > LonerDistributionManager omit the port number or modify the > > client/server handshake to not install a port number when connecting > > to a remote GatewayReceiver. I guess the latter wouldn't work if the > > bean is in a real client cache. > > > > The installation of a port number was implemented to prevent > duplicate > > membership IDs in client caches when clients are being spun up in > > parallel on the same machine. However there is also a "unique ID" in > > LonerDistributionManager that was supposed to address this problem > but > > apparently didn't. > > > > On 1/14/19 4:45 PM, Kirk Lund wrote: > >> So I was stepping through some WAN tests in IJ debugger (on develop > >> with no > >> changes) and discovered that any MXBeans that are created before > >> starting a > >> server port (either using CacheServer or GatewayReceiver) are broken > >> and > >> fail to be updated after that -- the ObjectNames include the > >> DistributedMember.getName(). Turns out some JMX code is eating an > NPE > >> that's caused because the LonerDistributionManager changes its > >> membership > >> port when an acceptor endpoint is started up. > >> > >> Below is the method in LonerDistributionManager (with some other > >> issues as > >> well) that does this updating. We either need to make a lot of > >> changes to > >> the JMX code to fix this or we need to make one small change