Differences between revisions 70 and 71
Revision 70 as of 2015-02-26 03:06:55
Size: 5510
Editor: PaulWise
Comment: advertise the mirror more
Revision 71 as of 2015-02-26 03:09:12
Size: 5525
Editor: PaulWise
Comment: https everywhere
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
 * Some '''example queries''' are provided as CGI scripts, to make it easy for everyone to run them. You can [[http://udd.debian.org/cgi-bin/|browse them]] or [[http://anonscm.debian.org/gitweb/?p=collab-qa/udd.git;a=tree;f=web/cgi-bin|view the source code]].
 * '''Database schema''': http://udd.debian.org/schema/
 * '''Source code''': available in the git repository of the [[http://alioth.debian.org/projects/collab-qa/|collab-qa project]] at http://anonscm.debian.org/cgit/collab-qa/udd.git/
 * Some '''example queries''' are provided as CGI scripts, to make it easy for everyone to run them. You can [[https://udd.debian.org/cgi-bin/|browse them]] or [[https://anonscm.debian.org/gitweb/?p=collab-qa/udd.git;a=tree;f=web/cgi-bin|view the source code]].
 * '''Database schema''': https://udd.debian.org/schema/
 * '''Source code''': available in the git repository of the [[https://alioth.debian.org/projects/collab-qa/|collab-qa project]] at https://anonscm.debian.org/cgit/collab-qa/udd.git/
Line 14: Line 14:
  * [[http://udd.debian.org/bugs.cgi|Bugs Search]]: multi-criteria search engine for bugs
  * [[http://udd.debian.org/dmd.cgi|Debian Maintainer Dashboard]]
  * [[http://udd.debian.org/cgi-bin/bts-usertags.cgi|Bugs Usertags]]: search for usertag on bugs
  * [[http://udd.debian.org/sponsorstats.cgi|Sponsors Stats]] gives some statistics about who is sponsoring uploads to Debian
  * [[http://udd.debian.org/bapase.cgi|Bapase]] allows to search for "interesting" packages using various criterias
  * [[https://udd.debian.org/bugs.cgi|Bugs Search]]: multi-criteria search engine for bugs
  * [[https://udd.debian.org/dmd.cgi|Debian Maintainer Dashboard]]
  * [[https://udd.debian.org/cgi-bin/bts-usertags.cgi|Bugs Usertags]]: search for usertag on bugs
  * [[https://udd.debian.org/sponsorstats.cgi|Sponsors Stats]] gives some statistics about who is sponsoring uploads to Debian
  * [[https://udd.debian.org/bapase.cgi|Bapase]] allows to search for "interesting" packages using various criterias
Line 21: Line 21:
For more information, please contact us on [[irc://irc.debian.org/debian-qa|#debian-qa]] or debian-qa@lists.debian.org (mailing list [[http://lists.debian.org/debian-qa/|subscription and archives]]). For more information, please contact us on [[irc://irc.debian.org/debian-qa|#debian-qa]] or debian-qa@lists.debian.org (mailing list [[https://lists.debian.org/debian-qa/|subscription and archives]]).
Line 40: Line 40:
If you want to know precisely when a specific data source is updated, you can take a look at the [[http://udd.debian.org/crontabs.txt|crontab]] file. The ''timestamps'' table can tell you when a data source was last updated. If you want to know precisely when a specific data source is updated, you can take a look at the [[https://udd.debian.org/crontabs.txt|crontab]] file. The ''timestamps'' table can tell you when a data source was last updated.
Line 46: Line 46:
You can '''report bugs''' against the qa.debian.org pseudo-package, using the ''udd'' usertag and user ''qa.debian.org@packages.debian.org''. ([[http://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=udd;users=qa.debian.org@packages.debian.org|list of bugs]]) You can '''report bugs''' against the qa.debian.org pseudo-package, using the ''udd'' usertag and user ''qa.debian.org@packages.debian.org''. ([[https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=udd;users=qa.debian.org@packages.debian.org|list of bugs]])
Line 54: Line 54:
 * [[http://udd.debian.org/udd.sql.gz|full dump of the database]] generated every two days. (~780 MB and growing)  * [[https://udd.debian.org/udd.sql.gz|full dump of the database]] generated every two days. (~780 MB and growing)
Line 73: Line 73:
##CategoryPermalink --> http://udd.debian.org ##CategoryPermalink --> https://udd.debian.org

Translation(s): English - Italiano


Ultimate Debian Database (UDD) gathers a lot of data about various aspects of Debian in the same SQL database. It allows users to easily access and combine all these data.

Data currently being imported include: Packages and Sources files, from Debian and Ubuntu, Bugs from the Debian BTS, Popularity contest, History of uploads, History of migrations to testing, Lintian, Orphaned packages, Carnivore, Debtags, Ubuntu bugs (from Launchpad), Packages in NEW queue, DDTP translations.

For more information, please contact us on #debian-qa or debian-qa@lists.debian.org (mailing list subscription and archives).

Connecting to and using UDD

udd.debian.org is running on ullmann.debian.org. It accepts direct SSLed connections from quantz (qa) and moszumanska (alioth).

  • command-line:
    • psql service=udd

    • or: psql -U guest -h udd.debian.org -p 5452 udd

  • Python:

    import psycopg2
    conn = psycopg2.connect("service=udd")
    cursor = conn.cursor()
    cursor.execute("SELECT count(*) from sources where release='sid'")
    print cursor.fetchall()[0][0]
  • Ruby (DBI): require 'dbi' ; dbh = DBI::connect('DBI:Pg:dbname=udd;port=5452;host=udd.debian.org', 'guest') 

  • Ruby (PG): require 'pg'; conn = PG.connect({:host => 'udd.debian.org', :port => 5452, :user => 'guest', :dbname => 'udd'}) 

If you want to know precisely when a specific data source is updated, you can take a look at the crontab file. The timestamps table can tell you when a data source was last updated.

If you do not have access to the required machines, you can access the public UDD mirror directly from your own machines.

Improving UDD

If you want to help improve UDD, you can set up your own instance as described on UltimateDebianDatabase/Hacking. You can report bugs against the qa.debian.org pseudo-package, using the udd usertag and user qa.debian.org@packages.debian.org. (list of bugs)

Credits

UDD started as a Google Summer of Code project by Christian von Essen (Neronus), co-mentored by Lucas Nussbaum, Stefano Zacchiroli and Marc 'HE' Brockschmidt. It is now mainly maintained by Lucas Nussbaum, with help from others.

Other resources

See also :

References

Even if its main goal was not to serve as a scientific resarch tool, UDD was already featured in two publications:

SubPages