This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Reduce memory usage for ipaddress object instances
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: 23133 Superseder:
Assigned To: serhiy.storchaka Nosy List: eric.snow, josh.r, lemburg, ncoghlan, pitrou, pmoody, python-dev, r.david.murray, rhettinger, sbromberger, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2014-12-23 09:57 by sbromberger, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ipaddress_lightweight.patch serhiy.storchaka, 2014-12-24 08:37 review
ipaddress_lightweight_2.patch serhiy.storchaka, 2014-12-30 08:45 review
ipaddress_lightweight_3.patch serhiy.storchaka, 2014-12-30 10:00 review
ipaddress_lightweight_4.patch serhiy.storchaka, 2015-02-08 18:34 review
Messages (31)
msg233038 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 09:57
ipaddress.ip_address instances should be flyweight. There's really no reason to make them mutable:

>>> a = ipaddress.ip_address("10.1.2.3")
>>> b = ipaddress.ip_address("10.1.2.3")
>>> id(a)
140066533772368
>>> id(b)
140066504622544

Especially with IPv6 and large numbers of addresses, it would be helpful not to have separate instances with the same underlying properties.
msg233039 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 10:04
Confirmed on 3.4.0; likely exists in previous versions as well.
msg233043 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2014-12-23 11:49
What is your proposal? WeakValueDictionary mapping raw bytes object to single instance of ipaddress that is queried from ipaddress's __new__? No built-in has quite that extensive a level of caching and aggressive deduplication to my knowledge.
msg233044 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 13:52
>What is your proposal? WeakValueDictionary mapping raw bytes object to single instance of ipaddress that is queried from ipaddress's __new__? No built-in has quite that extensive a level of caching and aggressive deduplication to my knowledge.

I was thinking along those lines, but since v4 addresses are just UInt32 and v6 are UInt128, somehow mapping just the "address" information if we can do that via weakref dicts. Right now these objects can't really be used to represent addresses parsed from logs with tens of millions of entries generated by a couple thousand machines. It would be nice to have a memory-efficient way of doing that without having to duplicate the concept in a third-party package.

There are a few other changes I'd like to see/make as well - this package is too focused on external functions for manipulating/creating addresses, when standard object/method structure would serve it better and be more intuitive. There is also no discernible need to modify an IP address' value. They should be thought of as immutables to the extent we can enforce that policy.
msg233049 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-12-23 14:50
IP address instances already are immutable and flyweight. There are no mutating methods. And a number of address attributes (packed, is_loopback, etc) are calculated on fly from integer representation.

But IP address objects can be lighter.

1) Use __slots__.
2) Every instance has the _version attribute. Why this is not class attribute?
3) Memory consumption can be even less if IP addresses would int subclasses. But this changes the API (in particular adds the __index__ method) and I doubt that we should do this.
msg233052 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 16:29
1) However:

>>> b = ipaddress.IPv4Address('1.2.3.4')
>>> a = ipaddress.IPv4Address('1.2.3.4')
>>> id(a)
4428380928
>>> id(b)
4428381768
>>> a == b
True
>>> b._ip += 6
>>> id(b)
4428381768
>>> b
IPv4Address('1.2.3.10')


2) Isn’t _version already a class attribute? It’s set in _Basev4/Basev6.

3) Memory consumption seems particularly wasteful in the current implementation: it takes 56 bytes (via sys.getsizeof) to store what amounts to 4 bytes of data.

I thought about subclassing Int as well, and I agree it’s the wrong approach. There are too many int methods that don’t make sense in the context of IP addresses.
msg233056 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2014-12-23 19:52
If ipaddress objects are already immutable, it seems to me that having a registry that makes it so there is only one instance per ip value isn't a crazy idea.  I've written such code in other contexts and it's not complicated.  We have caching of identifier strings and "common" integer constants for a reason...this seems a logical extension of that policy in the realm of a specific library data type.

The opposite argument is that it may be better left up to the application that has to handle lots of ips to do the caching according to what it knows to be an optimum pattern.  So consider me +0 on the idea.
msg233057 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 20:08
>The opposite argument is that it may be better left up to the application that has to handle lots of ips to do the caching according to what it knows to be an optimum pattern.

I'd agree with you wholeheartedly if ipaddress wasn't part of stdlib, but the issue is that people generally gravitate to using stdlib over other packages when given the choice, and having something that behaves reasonably* in stdlib makes sense wherever possible.

*in this case, reasonably means, I think, "I shouldn't have to worry that there's 1300% overhead for using IPv4Address() over a native 32-bit representation of an IP address." This matters little when you're just creating a few of these, but best practices regarding reuse might persuade folks to use these classes for all sorts of things. Doing things sanely at scale by default doesn't necessarily preclude further optimization if some developer thinks it's warranted.
msg233061 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2014-12-23 23:04
Adding __slots__ is reasonable.

Adding caching to fold together repeated addresses is dubious (it comes with its own space and time cost but won't benefit all users) and, as David said, the decision on how to handle this is up to the user.  Also, it is rather late in the game to be challenging the design of the module.  IIRC, this code or some variant of it already had heavy use prior to landing in the standard library (it also took into account what was learned with various other ipaddr modules).  The module docs say that the library was designed for speed and makes no mention of optimizing for space.

For the most part, once an API is deployed, users can be expected to exercise every feature whether intended or not.  Right now, you can add attributes to two otherwise indistinct ipaddresses.  The OP proposes to break that code.   Right now, if a user has concerns about memory use due to duplicate address instances, they can easily created their own interning scheme (a = intern_dict.setdefault(a, a)).  If the OP get his wish, then those users will be worse off (due to double interning).

In other words, this ship has already sailed.
msg233062 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2014-12-23 23:07
So, just to be clear, checking the implementation (as of 3.4):

1. All the ipaddress classes leave __slots__ unset. So the overhead is actually higher than 56 bytes per instance; the __dict__ for an IPv4Address (ignoring the actual keys and values in the dict, just looking at the size of the dict itself), on Python 3.4, 64 bit Windows, is 56 + 288 = 344 bytes. Based on the size of the dict, I'm guessing some instance attributes aren't being set eagerly in __init__, so it's not getting the reduced memory usage from shared key dictionaries either.
2. It looks like as of 3.4, _version and _max_prefixlen were both instance attributes; the current code base seems to have made _max_prefixlen a class attribute, but left _version as an instance attribute (anything set on self is an instance attribute; doesn't matter if it's set in __init__ of a base class)
3. Even if we switch to using __slots__, remove support for weak references and user added attributes, and store nothing but the raw address encoded as an int, you're never going to get true "flyweight" objects in CPython. The lowest instance cost you can get for a class defined in Python (on a system with 64 bit pointers) inheriting from object, is 40 bytes, plus 8 bytes per slot (plus the actual cost of the int object, which is another 16 bytes for an IPv4 address on a 64 bit OS). If you want it lighter-weight than that, either you need to inherit from another built-in that it even lighter-weight, or you need to implement it in C. If you built IPv4Address on top of int for instance, you could get the instance cost down to 16 bytes. Downside to inheriting from int is that you'll interact with many other objects as if you were an int, which can cause a lot of unexpected behaviors (as others have noted).

Basically, there is no concept of "flyweight" object in Python. Aside from implementing it in C or inheriting from int, you're going to be using an absolute minimum (on 64 bit build) of 48 bytes for the basic object structure, plus another 16 for the int itself, 64 bytes total, or about 16x the "real" data being stored. Using a WeakValueDictionary would actually require another 8 bytes per instance (a slot for __weakref__), and the overhead of the dictionary would likely be higher than the memory saved (unless you're regularly creating duplicate IP addresses and storing them for the long haul, but I suspect this is a less common use case than processing many different IP addresses once or twice).

I do think it would be a good idea to use __slots__ properly to get the memory down below 100 bytes per instance, but adding automatic "IP address interning" is probably not worth the effort. In the longer term, a C implementation of ipaddress might be worth it, not for improvements in computational performance, but to get the memory usage down for applications that need to make millions of instances.
msg233064 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2014-12-23 23:16
Josh, you might want to have a look at the lightning talk on this page and the associated slides...

http://www.egenix.com/library/presentations/PyCon-UK-2014-When-performance-matters/

After having done the tests, using __slots__ is what I consider the flyweight pattern in Python.
msg233066 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 23:18
As a test, I tried the following (taken mostly from http://codesnipers.com/?q=python-flyweights):


class Foo(object):
    _Foo = weakref.WeakValueDictionary()
    def __new__(cls, addr):
        obj = Foo._Foo.get(addr, None)
        if obj is None:
            obj = object.__new__(cls)
            Foo._Foo[addr] = obj
            obj.addr = addr
        return obj

I created 10 million instances of Foo(34) in an array. Total space taken: ~80 MB. Times: CPU times: user 6.93 s, sys: 48.7 ms, total: 6.98 s
Wall time: 6.98 s


I then created 10 million instances of a non-flyweight object, assigning an int to an instance variable:

class Bar(object):
    pass

Total space taken: ~1.4 GB. Times:
CPU times: user 7.64 s, sys: 794 ms, total: 8.44 s
Wall time: 8.44 s

This corresponds (roughly) to the space taken by 10 million IPAddr objects.

So it appears, informally, that caching / flyweight results in modest time and significant memory savings.

I understand that the ship has sailed for a stdlib implementation, but these results are compelling enough for me to create a separate package.
msg233067 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-23 23:27
Sorry for the additional followup, but I re-ran the test with approximately real-world parameters. In this second test, I created 10 million Foo() instances with random values from 1-2000 (using random.randint). This corresponds to "2000 hosts generating 10 million logs".

Memory use is ~80 MB. Times: CPU times: user 27.5 s, sys: 101 ms, total: 27.6 s Wall time: 27.6 s

For the nonoptimized run (10m instances of 2000 random values):
Memory use is ~1.8GB. Times: CPU times: user 28.2 s, sys: 1.29 s, total: 29.5 s Wall time: 29.5 s
msg233069 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2014-12-24 00:05
Marc-Andre: Oh, I know. I proselytize to coworkers on the virtues of using __slots__ for classes that will have many instances created (particularly since entirely too much of our stuff is still Py2.7, so we don't have the "free" savings from shared key dictionaries). Heck, I particularly enjoy inheriting from an inlined collections.namedtuple and an empty __slots__(which does add 8 bytes to the size over declaring the __slots__ directly, but gets you as close to truly immutable instances as you can get when you need them, not just "we're all adults here" immutable instances).

I'm just pointing out that if he thinks 56 bytes per object is too large, he's going to be disappointed with what Python has to offer. General purpose user-defined Python objects don't optimize for low memory usage, and even __slots__ only gets you so far.
msg233070 - (view) Author: Seth Bromberger (sbromberger) Date: 2014-12-24 01:59
>I'm just pointing out that if he thinks 56 bytes per object is too large, he's going to be disappointed with what Python has to offer. General purpose user-defined Python objects don't optimize for low memory usage, and even __slots__ only gets you so far.

"He" thinks that 1300% overhead is a bit too much for a simple object that can be represented by a 32-bit number, and "he" has been using python for several years and understands, generally, what the language has to offer (though not nearly so well as some of the respondents here). It may be in the roundoff at n < 1e5, but when you start using these objects for real-world analysis, the overhead becomes problematic. I note with some amusement that the overhead is several orders of magnitude greater than those of the protocols these objects represent :)

In any case - I have no issues with the decision not to make these objects memory-efficient in stdlib and consequently with closing this out. Rolling my own package appears to be the best solution in any case.

Thanks for the discussion.
msg233074 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-12-24 08:37
Here is a patch which makes IPv4Address and IPv6Address more lightweight (for other classes the size is not so important). It makes _version the class attribute and adds __slots__.
msg233083 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2014-12-24 17:22
@sbromberger, there's no need for your own package.  Just use something like this:


_addr_cache = {}

def ipaddr(addr):
    try:
        return _addr_cache[addr]
    except KeyError:
        _addr_cache[addr] = ipaddress.ipaddress(addr)
        return _addr_cache[addr]


You could even throw weakrefs in there if your use case demanded it.
msg233084 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2014-12-24 17:55
Serhiy: I believe you need to add a bunch of __slots__ = () to various base classes in the module, even though they lack member variables. Every link in the inheritance chain must declare __slots__, or the child class will have __dict__ and __weakref__.
msg233119 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-12-26 21:49
So, there are several aspects to this request:
- add a __slots__: this is Serhiy's patch
- add some weak interning of IP addresses: I believe it is ok to add it as an optimization, provided it doesn't otherwise change the API or the classes' behaviour

Seth: feel free to write a draft patch of interning, in order to get actual performance/memory consumption numbers. Also, perhaps open a specific issue for it, so we don't have many patches on the same issue?
msg233171 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2014-12-29 10:55
I've retitled this issue to be specifically about reducing the memory consumption of the existing types in the IP Address module, as that's a change that isn't easily implemented externally, and shouldn't have any negative side effects under intended usage (although we should probably consider keeping __weakref__ support when adding the __slots__ definitions - I'm OK with taking away arbitrary attribute support, but far more wary of removing the existing weakref support)

By contrast, interning for even more aggressive memory usage reduction is something that can be implemented relatively easily externally, and is also something that is really hard to tune in the general case. "Small integers" and "strings that look like identifiers" are a win because of the way the language itself works, but there's no similar general purpose heuristic that applies for caching of IP addresses.
msg233194 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-12-30 08:45
> I believe you need to add a bunch of __slots__ = () to various base classes in the module, even though they lack member variables.

Done. Here is updated patch.

I don't think that IP addresses need weak references more than base types as integers or strings. Caching can be implemented without weak references (some caching already is used for networks), and I afraid that supporting weak references list will spent more memory than saved with caching.
msg233197 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-12-30 09:35
> I don't think that IP addresses need weak references more than base types as integers or strings. 

People may already be taking weak references, so it's a matter of compatibility.
(and weakrefs can actually help implement an interning scheme as proposed here)
msg233200 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-12-30 10:00
Updated patch preserves weak references support.
msg233202 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-12-30 10:56
As far as adding __slots__ breaks pickling with protocols < 2, issue23133 can be considered as a dependency.
msg235563 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-02-08 18:34
Synchronized with tip.
msg237443 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-03-07 13:05
Nick, what is your thoughts about the patch?
msg237459 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2015-03-07 16:58
+1 from me, although since we're committing to preserving the weakref support for compatibility reasons now, I'm wondering if we should also add a test for it.
msg237464 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-03-07 18:00
OK. But I hesitate that weakref support is useful for IP addresses.
msg237466 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-03-07 18:09
New changeset 88a5c1698ca4 by Serhiy Storchaka in branch 'default':
Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.
https://hg.python.org/cpython/rev/88a5c1698ca4
msg237528 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2015-03-08 11:25
For the record, I don't think the weakref support is likely to be particularly useful either, and if we'd used __slots__ from the beginning, I expect we would have left it out.

It's specifically the idea of *taking weakref support away* when weakrefs currently work that seems dubious to me.

It may be worth asking the question on Python dev, as it's possible I'm being overly cautious, and it would be reasonable to drop the weakref support in 3.5.0, while mentioning in the 3.5 porting notes that we'd be open to the idea of adding weakref support back in a 3.5.x maintenance release if anyone reports its removal as a regression from 3.4.
msg237530 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2015-03-08 11:44
-1 on dropping weakref support. It's a feature, and it costs almost nothing.
History
Date User Action Args
2022-04-11 14:58:11adminsetgithub: 67292
2015-03-08 11:44:39pitrousetmessages: + msg237530
2015-03-08 11:25:26ncoghlansetmessages: + msg237528
2015-03-07 21:45:37serhiy.storchakasetstatus: open -> closed
2015-03-07 21:45:17serhiy.storchakasetresolution: fixed
stage: patch review -> resolved
2015-03-07 18:09:16python-devsetnosy: + python-dev
messages: + msg237466
2015-03-07 18:00:22serhiy.storchakasetassignee: serhiy.storchaka
messages: + msg237464
2015-03-07 16:58:37ncoghlansetmessages: + msg237459
2015-03-07 13:05:23serhiy.storchakasetmessages: + msg237443
2015-02-08 18:34:51serhiy.storchakasetfiles: + ipaddress_lightweight_4.patch

messages: + msg235563
2014-12-30 10:56:39serhiy.storchakasetdependencies: + Pickling of ipaddress classes
messages: + msg233202
2014-12-30 10:00:11serhiy.storchakasetfiles: + ipaddress_lightweight_3.patch

messages: + msg233200
2014-12-30 09:35:40pitrousetmessages: + msg233197
2014-12-30 08:45:17serhiy.storchakasetfiles: + ipaddress_lightweight_2.patch

messages: + msg233194
2014-12-29 10:55:08ncoghlansetmessages: + msg233171
title: ipaddress should be Flyweight -> Reduce memory usage for ipaddress object instances
2014-12-26 21:49:38pitrousetnosy: + pitrou
messages: + msg233119
2014-12-24 17:55:59josh.rsetmessages: + msg233084
2014-12-24 17:22:28eric.snowsetnosy: + eric.snow
messages: + msg233083
2014-12-24 08:37:22serhiy.storchakasetstatus: closed -> open
files: + ipaddress_lightweight.patch

versions: + Python 3.5, - Python 3.4
keywords: + patch
resolution: wont fix -> (no value)
messages: + msg233074
stage: patch review
2014-12-24 01:59:31sbrombergersetstatus: open -> closed
resolution: wont fix
messages: + msg233070
2014-12-24 00:05:02josh.rsetmessages: + msg233069
2014-12-23 23:27:11sbrombergersetmessages: + msg233067
2014-12-23 23:18:35sbrombergersetmessages: + msg233066
2014-12-23 23:16:07lemburgsetnosy: + lemburg
messages: + msg233064
2014-12-23 23:07:22josh.rsetmessages: + msg233062
2014-12-23 23:04:39rhettingersetnosy: + rhettinger
messages: + msg233061
2014-12-23 20:08:58sbrombergersetmessages: + msg233057
2014-12-23 19:52:08r.david.murraysetmessages: + msg233056
2014-12-23 16:29:57sbrombergersetmessages: + msg233052
2014-12-23 15:32:36r.david.murraysetnosy: + r.david.murray
2014-12-23 14:50:59serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg233049
2014-12-23 13:52:14sbrombergersetmessages: + msg233044
2014-12-23 11:49:43josh.rsetnosy: + josh.r
messages: + msg233043
2014-12-23 10:38:47berker.peksagsetnosy: + ncoghlan, pmoody
2014-12-23 10:04:21sbrombergersetmessages: + msg233039
versions: + Python 3.4, - Python 3.6
2014-12-23 09:57:26sbrombergercreate