Needs review
Project:
UUID Features Integration
Version:
7.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Jan 2011 at 22:06 UTC
Updated:
19 Oct 2012 at 22:19 UTC
Jump to comment: Most recent file
Comments
Comment #1
chaps2 commentedI would allow more than an hour or so...
As far as I can see uuid_features is constrained by the features API which was never designed with content in mind. So you'd be looking at substantial changes to that to get an alternative selection UI.
What you could do is limit the node export options to the first 50 - see uuid_node_features_export_options() - and implement a new features component for exporting all nodes of a particular content type. I did a similar thing for terms - #965450: Add component that exports vocabulary with all its terms. However If your 50,000+ nodes are all of the same type then you'll need to start patching features or messing about with form_alter.
Good luck!
Comment #2
adub commentedAlso see http://drupal.org/node/1031290 on the Features issue queue.
Comment #3
robloachHitting the fake subscribe button.
Comment #4
robloachMaybe have a checkbox somewhere stating which content types will have UUID Features support?
Comment #5
robloachThe attached patch adds an option in the UUID configration settings to state which content types should have Features support.
Comment #6
ezra-g commented> I'm trying to create a feature on a site with 50,000+ nodes, in which I export a dozen or so nodes.
Rob's patch sounds good, and another option to consider is to only generate UUIDs for the 12 nodes you wish to export, rather than all 50,000 on the site,
Comment #7
markdorison@ezra-g That would work in some situations but if you are using UUID for other reasons on your site, that may not be an option.
I am working on a site with hundreds of thousands of nodes and needless to say, am experiencing the same issue. Attached is a D6 back-port of Rob's patch.
Comment #8
jgraham commentedThis issue looks like #1719414: UUID Features triggers WSOD when creating/recreating features is a duplicate I have a patch over there that is similar to this, but also adds configuration to filter by taxonomy vocabulary.