Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Joakim Saario
aurweb
Commits
51a35358
Commit
51a35358
authored
Sep 04, 2020
by
Jakub Klinkovský
Committed by
Lukas Fleischer
Feb 20, 2021
Browse files
gendummydata.py: set MAX_USERS and MAX_PKGS to more realistic values
Signed-off-by:
Lukas Fleischer
<
lfleischer@archlinux.org
>
parent
879c0622
Changes
1
Hide whitespace changes
Inline
Side-by-side
schema/gendummydata.py
View file @
51a35358
...
...
@@ -20,16 +20,16 @@ LOG_LEVEL = logging.DEBUG # logging level. set to logging.INFO to reduce output
SEED_FILE
=
"/usr/share/dict/words"
USER_ID
=
5
# Users.ID of first bogus user
PKG_ID
=
1
# Packages.ID of first package
MAX_USERS
=
300
# how many users to 'register'
MAX_USERS
=
76000
# how many users to 'register'
MAX_DEVS
=
.
1
# what percentage of MAX_USERS are Developers
MAX_TUS
=
.
2
# what percentage of MAX_USERS are Trusted Users
MAX_PKGS
=
900
# how many packages to load
MAX_PKGS
=
64000
# how many packages to load
PKG_DEPS
=
(
1
,
15
)
# min/max depends a package has
PKG_RELS
=
(
1
,
5
)
# min/max relations a package has
PKG_SRC
=
(
1
,
3
)
# min/max sources a package has
PKG_CMNTS
=
(
1
,
5
)
# min/max number of comments a package has
CATEGORIES_COUNT
=
17
# the number of categories from aur-schema
VOTING
=
(
0
,
.
30
)
# percentage range for package voting
VOTING
=
(
0
,
.
001
)
# percentage range for package voting
OPEN_PROPOSALS
=
5
# number of open trusted user proposals
CLOSE_PROPOSALS
=
15
# number of closed trusted user proposals
RANDOM_TLDS
=
(
"edu"
,
"com"
,
"org"
,
"net"
,
"tw"
,
"ru"
,
"pl"
,
"de"
,
"es"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment